Jump to content

target_practice

Member
  • Content Count

    570
  • Joined

  • Last visited

  • Medals

Everything posted by target_practice

  1. target_practice

    Warlords

    I'm relatively new to scripting my self so I can't guarantee any advice I give to particularly good, but for for delayed removal you could do something along the lines of: [_markerstr] spawn { sleep 180; deleteMarker _this select 0; }; I don't know know if event handler expressions are run scheduled, but I assume not. I'd also add that since MP Event handlers execute their code on every machine according to the BIKI, you'll probably want to create the markers locally or add an !isServer condition to prevent duplicate markers.
  2. target_practice

    Warlords

    They do, most of my time in Warlords is with just AI in fact.
  3. target_practice

    Can this AI behaviour be fixed?

    From my understanding, DayZ is essentially a hybrid of RV3 and Enfusion, with BIS using it as an environment to test components of the engine, such as the renderer. As for it being a new engine, I refer to this post. As the linked post mentions, Enfusion is meant to be a modern engine capable of being scripted to run essentially any game (a la Unreal and Unity) , rather than being limited by hard coded systems. That is true, but if all they wanted to change was the scripting language was the only thing they wanted to change they wouldn't be making a new engine; Enfusion will in all likelyhood have notably different architecture and design from RV, making it impossible to simply port code over. I think BIS have stated on a few occasions that DayZ currently only supports basic AI systems like that of the zombies for this reason. All in all, BIS is much bigger company than it used to be, if they have the resources to build an entirely new engine while maintaining and developing several other games, I really doubt it'll be hard for them to improve the AI in the future on their new platform.
  4. target_practice

    Can this AI behaviour be fixed?

    Given that Arma 4 will almost certainly be an Enfusion game, I don't think they'd be able to copy over old code even if they wanted to. I wouldn't be surprised if BIS does try to use it as an opportunity to redo the entire AI system. After all, they're making a new engine basically scratch, so I doubt they'd refrain from doing that if they believe it to be sufficient benefit. I definitely hope they don't try to go the easy route and dumb down the AI as you suggest in any case, as that would be removing half of what Arma is.
  5. target_practice

    Can this AI behaviour be fixed?

    I have to wonder what Arma's AI code looks like for BIS to have so much trouble tweaking it without breaking things. I imagine it must be nigh-illegible spaghetti at this point.
  6. target_practice

    Warlords

    Can we not try to nerf things like the Rhino? BLUFOR needs to be able to have something to counter CSAT Ankara spam; not to mention that CSAT fast air has a field day blowing up NATO hardware, especially on Altis, so they can't be around for long anyway.
  7. target_practice

    Can this AI behaviour be fixed?

    While I confess I haven't made many mission relying on consistent AI behavior, when I have they haven't really caused that much trouble for me. Sometimes I feel like the AI I have and others have is completely different, as many problems talked about on this forum rarely if ever materialise for me.
  8. target_practice

    Warlords

    So what's this for then? _trackerGrp addGroupIcon ["selector_selectable", [0,0]]; _trackerGrp setVariable ["BIS_WL_dangerState", ""]; _trackerGrp setGroupIconParams [[0,0.8,0,1], "", 2.5, FALSE];
  9. target_practice

    Warlords

    I hope you don't mind me asking but how did you implement the player map markers in warlords? Looking at your functions it seems you've done so by using group icons, and I've been trying to implement similar tracking system with the same method in my own scripts. I'm just confused by the locality of them, as in my testing the commands associated with them seem to be local, but in your scripts you seem to have created all of them on each client. Does it have anything to do with you creating the markers on attached gamelogics (that's what it looks like you're doing anyway) or is because of some of the variables being broadcast (eg. "BIS_WL_playerTracked")?
  10. target_practice

    Can this AI behaviour be fixed?

    Just ran a scenario involving lots of vehicles moving near several squads of infantry, I only saw one soldier get run over, with the vehicles stopping and driving around the rest. Maybe I'm just lucky, but I can't help but feel like some people exaggerate some of the AI's problems.
  11. target_practice

    A question about BI Studio and BI Sim

    The reason I posted this thread is because I already read those pages. As far as I know BIS/A was still a subsidiary during the development of VBS1, and neither articles say when they became an independent organisation.
  12. No, this isn't a question about tech sharing or anything similar, I'm aware that doesn't and never will happen. I'm just curious to know when and why (if it is knowable) BI Sim separated from BIS. From what I understand using RV to develop military training software was what saved BIS from going bankrupt, so I wonder why BI didn't try to hold onto them.
  13. target_practice

    Can this AI behaviour be fixed?

    Personally I've noticed that the AI will try to avoid running over friendlies, but when it tries to drive around them it seems to act on the assumption that they haven't moved, and so often ends up running them over when doing that.
  14. target_practice

    Warlords

    @Jezuro, are you using groupIcons to give players scene visible nametags? If so, how are you giving them a limited visibility distance?
  15. target_practice

    Warlords

    Without the brackets of course, yes.
  16. target_practice

    Warlords

    You have a missing parenthesis and line terminator ( }; ) at 310.
  17. target_practice

    Warlords

    Since your file terminates at line 315, that means the game is reporting a syntax error within the include file at virtual line 316. I've had a look at the file in question and I'm not sure what's causing the problem. Try commenting that line out and see if the error persists. I think it's a perfectly good feature, and makes for a greater abundance of strategic opportunities for each team as the game progresses. If the game was always limited to a certain area it would just turn into an endless grind.
  18. target_practice

    Warlords

    Assets in requisition list do not need to be a child of the same faction class as defined in the init module, no. They can even be from enemy sides, though that's not strictly a good idea as they will often be considered hostile.
  19. target_practice

    JSRS SOUNDMOD - CE.20.0419

    The sound for the A-164's minigun doesn't loop properly, instead it keeps looping back to the beginning of the sound, causing the audio to stutter.
  20. I've been attempting to try out addGroupIcon to see if it's worth using, but I can't get it to work at all. theGroup addGroupIcon ["b_inf",[0,0]]; Using it in this way doesn't return any errors or anything, it just does nothing. I'm also unsure of the locality of this and associated commands. The BIKI doesn't say anything, but I assume its global?
  21. target_practice

    addGroupIcon not working

    So the command is local then?
  22. target_practice

    addGroupIcon not working

    I didn't, and adding does indeed work, thanks. I'm still quite confused as to the locality of all these commands though, the documentation for them is rather lacking. As an additional question if anyone can answer, is there any particular performance gain to be had over using normal map markers scripted to update their position on each frame?
  23. target_practice

    User Interface editing guide?

    Is that list accurate?
  24. Is there any kind of guide that explains how to create and implement a custom GUI element? I have looked at the BIKI pages on dialogue control and the GUI editor, but they don't do much to explain the entire process involved.
  25. target_practice

    Warlords

    Please make sure that you define everything properly from within the editor; I explained how to do this on the last page.
×