-
Content Count
1057 -
Joined
-
Last visited
-
Medals
Everything posted by Joe98
-
Is this a bug that bohemia knows about while using the Virtual Arsenal ?
Joe98 replied to avibird 1's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I export men from the arsenal to the map without losing anything. Are you sure you are using the correct method? -
Place an enemy commander on the map. Place an enemy mortar on the map. Group the commander with the mortar. When the commander spots you the mortars will rain down.
-
I don't get it. If I buy through BIS, how in the world does BIS connect my BIS account with my Steam account? .
-
There is also a command for unlimited ammo (sorry currently on the mobile).
-
Where are these screenshots saved?
-
Multiple conditions for variables in hint
Joe98 replied to cybercoco's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Create a series of separate triggers for each possibility. When the variables are met the appropriate trigger will fire. . -
How to remove primaryWeapon Ammo/Magazine
Joe98 replied to csk222's topic in ARMA 3 - MISSION EDITING & SCRIPTING
removeallweapons this: Then add the specific weapon. You must add the magazines before the rifle. Other wise the mission starts and the weapon is not loaded. .- 13 replies
-
- primaryWeapon
- primaryWeaponItem
-
(and 2 more)
Tagged with:
-
I am typing this just so I can find the thread
-
Order of execution of PreInit functions
Joe98 replied to magnetar's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I was working on a totally unrelated problem and I found that if the commands were executed in the obvious order the whole did not work.. By changing the order it all worked just fine. -
Create random waypoints on roads?
Joe98 replied to commanderx's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Considering your convoy is on a road, what do you mean by a random waypoint? If the road is 5,000 meters long then the random waypoints would fall where? It seems to me the waypoints would all be somewhere on the 5,000 meters. . -
Condition: That Trigger1 has already fired
Joe98 replied to Joe98's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I found the answer. The command is: triggeractivated Trigger1; . -
Condition: That Trigger1 has already fired
Joe98 posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
I have 2 triggers on the map named Trigger1 and Trigger2. In the Condition field of Trigger2 wish to say: Trigger1 has already fired. Then, if Trigger1 has not fired, it is impossible for Trigger2 to fire. How do I add the condition: Trigger1 has fired. -
Exclude aircraft from activating triggers
Joe98 replied to anfo's topic in ARMA 3 - MISSION EDITING & SCRIPTING
The condition finds that the aircraft is above the ground. How do I write it so that: The condition is true therefore do not fire the trigger. Assume I want blueforce to fire the trigger and I have a bluforce aircraft named air1 and I don't want him to fire the trigger. . -
BIS has a wiki with instructions. Sorry I don't have the link. It might be in the Arma2 section.
-
Trigger condition - !alive and location
Joe98 replied to _angus_'s topic in ARMA 3 - MISSION EDITING & SCRIPTING
"It activates" I have to presume that "it" means the second trigger. The conditions of the second trigger must be: Player is present AND toolbox is not alive. You must have both conditions. . -
Trigger condition - !alive and location
Joe98 replied to _angus_'s topic in ARMA 3 - MISSION EDITING & SCRIPTING
Your first step is complete. When the man is dead the trigger fires. You need to add another command to that trigger. Place a small item like a sandbag wall or something, way over on the other side of the map. Name it .. sand1 Add a command to the first trigger : deletevehicle sand1: So, when trigger 1 fires, the sand bag is deleted. Now for trigger 2: Add a condition: sandbag1 must be alive or the trigger will not fire. What you get: Kill the man and trigger 1 fires. Walk to the other area and trigger 2 fires. OR: Don't kill the man, walk to area 2 and trigger 2 will not fire. . -
Making AI units actively chase the player?
Joe98 replied to Neviothr's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Place yourself on the map and name yourself blue1 Place an enemy on the map and name him red1 Way over on the other side of the map, on an out of the way road - place an independent and name him green1 Place a trigger on the map near to green1. Make the trigger repeatable. Give green1 a series of waypoints so that he constantly runs through the waypoint, it fires, he turns around and runs through it again and so on forever. In the trigger place this code:........red1 move getPos player; red1 setCombatMode "RED"; The trigger will fire over and over again and the enemy will come chasing you. If there are 3 or more enemy you have little chance of escape! -
Random object placement spawning as set
Joe98 replied to redarmy's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Place a table on the map and name it table1 Use various methods so that the table always starts at a random location. Place a chair on the map and name it chair1 You want the chair to ALWAYS be 5 meters to the north of the table chair1 setPos [(getPos table1 select 0) +0, (getPos table1 select 1) +5]; You want the chair to ALWAYS be 5 meters to the south of the table chair1 setPos [(getPos table1 select 0) +0, (getPos table1 select 1) -5]; You want the chair to ALWAYS be 5 meters to the east of the table chair1 setPos [(getPos table1 select 0) +5, (getPos table1 select 1) +0]; You want the chair to ALWAYS be 5 meters to the west of the table chair1 setPos [(getPos table1 select 0) -5, (getPos table1 select 1) +0]; . . -
How make a trigger react on mines?
Joe98 replied to majorexperimental's topic in ARMA 3 - MISSION EDITING & SCRIPTING
If each mine has a name, then when it is placed in a trigger area the trigger will fire. -
Indication of Weapon Firing.
Joe98 replied to mattsmith94's topic in ARMA 3 - MISSION EDITING & SCRIPTING
The thing is that a tank has more than one weapon. Why would this code apply to the tank main gun rather than another weapon? . . -
hide player marker on briefing
Joe98 replied to rejenorst's topic in ARMA 3 - MISSION EDITING & SCRIPTING
So, place a trigger on the map. As the mission starts the soldier fires the trigger - and the marker is set back to it's normal size. From the player's point of view - there is no marker visible in the briefing but it is visible when the mission starts. -
hide player marker on briefing
Joe98 replied to rejenorst's topic in ARMA 3 - MISSION EDITING & SCRIPTING
It does not matter what size it starts at. You can always set it to zero. . -
hide player marker on briefing
Joe98 replied to rejenorst's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Or: set the size of the marker to zero and that makes it invisible. Afterwards set it back to its normal size. -
Make AI squad mount specific vehicle
Joe98 replied to conz's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Give the soldier a name. Give the truck a name blue1 moveInGunner truck1 Every passenger seat is numbered. Instead of move in gunner you can assign him a specific seat or make him the driver or what ever. . . -
I have no interest in DayZ, zombies or science fiction. . .