Search the Community
Showing results for tags 'problem solved'.
Found 2 results
-
problem solved Select after each hit a random pop-up target
blackharaz posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
I'm gonna be crazy with sqf. 🤯 What's my goal? How did I tried to get that? I've tried it in different ways and my best try was like that: Initialization: Up to here it works fine. Now I want to include the exercise to the addAction of the laptop and put it in another .sqf. The Exercise (and the problem): Any idea? If I now post all my tries I think it take to long. I think I got it as compact as possible to understand what I've done. That's just to one range. There are much more in the initializing but I deleted it here because not necessary at this point. I've no errors until I try to implement a number of maximum targets. 😞 -
problem solved Spawn flying enemy planes by script
blackharaz posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hey guys, I've searched for while but I can't find any solution for my problem. I'm creating a training map for our clan and I want to include a dogfight training. I want to spawn a pool of enemy jets at one of a predefined position and it have to give the jet one of a predefined movepoint to circle until he detects the player. I'm not the fittest in sqf and that's what I created yet: Pool of enemy jets (included in "init.sqf"): I set 5 "empty markers" to spawn on and 5 to move on at the map and included them in "init.sqf": After that I wrote a script to pick all three randomly and set the variables in my "cas.sqf"-file: Until here it worked fine. The script picks randomly the units and positions. Now the problem is to spawn it in and there I depair. =( I tried it like that... _jet = [_randomAirSpawn, "0", _randomAirTarget, east] call BIS_fnc_spawnVehicle; ...and nothing happens. =( And after that I've no idea how to give a waypoint to "_jet". What am I doing wrong?