Junker
Member-
Content Count
651 -
Joined
-
Last visited
-
Medals
Everything posted by Junker
-
Ammo box issue
Junker replied to OberSchutze's topic in IRON FRONT: LIBERATION 1944 - MISSIONS - Editing & Scripting
the stuff in the box is just the vanilla stock right ? I dont think the script knows where to put the stuff cus _this isnt directed to anything. U need a line - _box = _this select 0 and change all the _this to _box in the box init - [this] exec "ammobox".sqf not good at sqf, still learning it but i think thats ur problem.. -
Ammo box issue
Junker replied to OberSchutze's topic in IRON FRONT: LIBERATION 1944 - MISSIONS - Editing & Scripting
you might be over filling them (look up capacity in ammo boxes in the wiki) or you might need a slight pause before the loop. -
Ammo box issue
Junker replied to OberSchutze's topic in IRON FRONT: LIBERATION 1944 - MISSIONS - Editing & Scripting
need to know what the problem u r getting ? -
Vehicle Crew capacity list
Junker posted a topic in IRON FRONT: LIBERATION 1944 - MISSIONS - Editing & Scripting
looking for a list for crew capacity of each vehicle and the movein commands if different from arma 2 commands. -
u can't rename cities that already exist on the map unless you make a new map addon, but im not sure about the town spawn module.
-
Preprocessor "Defines" for Addons
Junker replied to Muzzleflash's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Ace is an addon so its already defined and running before the mission starts.. -
How to set a Win on Arrival of unit.
Junker replied to Fultron's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
You can sync triggers to waypoints only, Group them to vehicles, units and objects.. -
LoadingScreen (how-to)
Junker replied to rübe's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
not if your using the default settings -
LoadingScreen (how-to)
Junker replied to rübe's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
try it 1024 x 1024 -
Once more 24 Hour Cycle script [HELP]
Junker replied to DeclaredEvol's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
you need a pause in the loop to slow it down... -
Salute Script Needed For Mission
Junker replied to -10th- Rezza's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
any unit will salute with weapon in hand.. -
Once more 24 Hour Cycle script [HELP]
Junker replied to DeclaredEvol's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
your looking for skiptime but looping at what intervals ? -
Enemy count in trigger condition
Junker replied to Doodle's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
that condition is looking for AI that is running away, Not how many AI are in the trigger and AI do stop fleeing after awhile ;) -
try this: ?(player == p1) : p1 = unit; goto "teleport" ?(player == p2) : p2 = unit; goto "teleport" ?(player == p3) : p3 = unit; goto "teleport" ?(player == p4) : p4 = unit; goto "teleport" ?(player == p5) : p5 = unit; goto "teleport" goto "end" #teleport unit setPos (getPos TP); goto "end" #end EXIT
-
How do you light a new powerline pole?
Junker replied to callihn's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
try this >> lightIsOn -
Static C130 and HALO?
Junker replied to icfhoop's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
off topic: In the OFP days when Halo first came out all the people/AI that didnt open in time we called the noob filter :P on topic: this will get you to free fall... [this, 5000] exec "ca\air2\halo\data\Scripts\HALO_init.sqs" -
Weird MP behaviour (abrupt ending)
Junker replied to rekrul's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
tbh u don't need to detect if all players are dead because the mission will end automatically as soon as the last guy dies.. -
How to activate trigger with specific unit(s)
Junker replied to arthur666's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
That code would go into your condition box :) -
Weird MP behaviour (abrupt ending)
Junker replied to rekrul's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
no not really - Its just another way of doing it :) My guess then is to delete the trigger that detects all players dead and try a fresh one but leave the condition box alone for now :), then test it.. see if that works... ---------- Post added at 11:49 AM ---------- Previous post was at 11:45 AM ---------- Just a quick edit :) Are you using anything like (Not(alive player)) at all ??? -
LoadingScreen (how-to)
Junker replied to rübe's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I think you will find its properly behind a tint layer or faded slightly giving that dull effect. ---------- Post added at 02:46 PM ---------- Previous post was at 02:45 PM ---------- the game will auto size the image no matter what size you use.. -
Weird MP behaviour (abrupt ending)
Junker replied to rekrul's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
how big is the radius on the trigger that detects no more players alive ? Is it covering everything ? is it grouped to the leader ? -
LoadingScreen (how-to)
Junker replied to rübe's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
the loading screen is best at 1024x1024 which is about 1 meg in .paa format -
Is it possible to make a HMMWV or truck heal like an ambulance.
Junker replied to DOA's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
U could probably give the vehicle an addaction that will heal the guy calling the script.. simple way e.g. vehicle init : this addaction ["Heal","heal.sqs"] heal.sqs _unit = _this select 1 _unit setdamage 0 exit u could make it more complex to only show when the units damage is > 0 ;) -
How to detect specific cargo positions
Junker replied to charlis's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I use 3 civi's in the front of a truck - players board that truck and the AI drive past all the enemy straight to the drop off point. no scripts the truck is seen as civilian not matter whats in its cargo but u have to make sure the civilians are moved into the truck before you add the player units and make sure the civi's don't jump out of the truck when they spot the enemy or the truck becomes enemy and you end up getting shot.. ;) Demo Mission -
How to detect specific cargo positions
Junker replied to charlis's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
just get a civi to driver the SUV - he will drive past the enemy with out a worry :) Just make sure the civi wont jump out of the car when he spots the enemy :)