Jump to content

RabbitxRabbit

Member
  • Content Count

    5
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About RabbitxRabbit

  • Rank
    Rookie
  1. RabbitxRabbit

    Making AI Ignore Units

    Excellent! Thank you so much!
  2. I'm creating a scenario with zombies. The first one they encounter starts off as blufor so it doesn't attack the players, but a trigger makes it switch to "EAST" side when you get close enough. The problem is, when it switches sides my team of ai immediately attack and kill it before it can attack the players. Is there a way to have your ai ignore it for a few seconds so that it attacks the players before they start shooting at it? Thank you in advance!
  3. RabbitxRabbit

    BIS_fnc_findSafePos Help

    YES! Thank you! I knew it had to be something simple like that. I tried your first two methods and they both worked perfectly! Thank you again, cidfr!
  4. I'm having an issue with BIS_fnc_findSafePos. findSafePos only returns two values, for the x and y axes, and I'm trying to use createSimpleObject with it which requires all 3 axes. The error code reads "2 elements provided, 3 expected." Here's what I have down: _pos = [obj1, 1, 100, 1, 1,0.25, 0] call BIS_fnc_findSafePos; createSimpleObject ["Land_HelipadEmpty_F", _pos, false]; Everything in it works fine except that _pos is only x and y. I've subbed in "_pos = [0,0,0]" and it works just fine. I just need to learn how to add the z axis to _pos. Can someone please help me? Thank you in advance.
  5. There are a lot of resources on how to make a trigger activate a support module, but how do you make a support module activate a trigger? I've been scouring the net and even trying chatGPT for an answer but I'm coming up empty. I'm trying to trigger an event when my player calls in an airstrike. Specifically, I'm try to keep my CAS plane from taking off from TeTeT's Nimitz mod aircraft carrier before the air strike is called in. There are a lot of other applications that I would like to use this for as well. Is there anything I can put in the trigger's condition field to activate it when the support module gets activated? Something like "supportModuleActivated"? I'm at a complete loss. 😩
×