

Junker
Member-
Content Count
651 -
Joined
-
Last visited
-
Medals
Everything posted by Junker
-
check to see if the game is in your exceptions and if you have a router try opening the ports for the game..
-
Scripting a LaserTarget
Junker replied to JDog's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
maybe try looping the laser...? -
createVehicle problem in multiplayer.
Junker replied to ZuppR's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
try this ? (Not(Isserver)) : Exit _heli = createVehicle ["UH1Y", _heli, [], 0, "None"]; _heli setPosASL [getposASL _heli select 0, getposASL _heli select 1, 15.9]; _heli setdir 180; _heli engineon false; _pilot = createGroup (west); "USMC_Soldier_Pilot" createUnit [_heli, _pilot]; (units _pilot select 0) assignAsDriver _heli; (units _pilot select 0) moveInDriver _heli; hint "Your Helicopter starts in one minute." _heli engineon true; ~60 -
Starting missions inside a vehicle but with vehicle ungrouped with squad
Junker replied to jdbecks's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
u can add this line to the leader of the group to make things alot easier :) {_x moveincargo boat1} foreach units group this -
Is there a way to playSound predefined CfgSfx?
Junker replied to sbsmac's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
hmm looking into it :) -
Is there a way to playSound predefined CfgSfx?
Junker replied to sbsmac's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
you are trying to define ingame sounds in a Description which isnt needed, The sounds are already defined, All you need to know is what name they use. -
Custom unit loadouts POOF?
Junker replied to joshpc's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
you need to run the script from a trigger - using the init.sqs/sqf or the units init seems to cause a misfire and you dont get the weapons :( -
Leader will not MoveInDriver ??!!
Junker replied to R34P3R's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
for addvehicle to work the group needs a waypoint to move to.. -
Can I not give civilians weapons?
Junker replied to bsmith239's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
this will only work if the unit has a weapon in hand.. Sadly not women :( Machinegun pistol :D removeAllWeapons this; this addweapon "M9"; this addweapon "GAU8"; this addmagazine "1350Rnd_30mmAP_A10"; this selectweapon "GAU8" BTW u can add weapons to the tractor too :P -
Leader will not MoveInDriver ??!!
Junker replied to R34P3R's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
try this _gruppe = Creategroup EAST; _truck = "KamazOpen" createVehicle _pos; _truck setDir _direction; _Leader = "RU_Soldier_TL" createUnit [_pos, _gruppe, "", 1, "Captain"]; _gruppe addvehicle _truck; The leader will always getin as driver. -
Infrared view - opinions & suggestions ?
Junker replied to Tajin's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
From what i know Infrared vision is short range.. -
Player Respawns
Junker replied to xMobiusTyrx's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
The marker you got right, but... you need to put these lines in the Description.ext respawn = 3; respawnDelay = 15; Description wiki -
you looking for something along the lines of condition: (score >= param1) Activation : Hint "Mission Over" or condition: score >= param1 Activation : Hint "Mission Over" not sure tho - i only do co-op missions :)
-
Problem with tasks completed
Junker replied to excruciator's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
works for me :) Edit: nvm im a noob ;) thnx for the heads up :) -
you can define the score limits in the Description.ext ...Score This feature allows you to set scores for your mission. Score is related to the star display in the debriefing screen. The score can be influenced during a missions progress by using the addRating command. MinScore = 0; AvgScore = 1800; MaxScore = 7500; take a look here http://community.bistudio.com/wiki/Description.ext#...Score or use the param1 to make it selectable at mission selection titleParam1 = "Score to win:"; valuesParam1[] = {10000, 5, 7, 10, 15, 20, 25, 30}; defValueParam1 = 5; textsParam1[] = {"Unlimited", 5, 7, 10, 15, 20, 25, 30};
-
Problem with tasks completed
Junker replied to excruciator's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
make it : tskobj1 setTaskState "ACTIVE"; plus you need to fix the typo : obj1 settaskstate "succeeded" it should be : tskobj1 settaskstate "succeeded" -
Looking back when OFP was just FLASH POINT
Junker replied to maruk's topic in BOHEMIA INTERACTIVE - GENERAL
The first time i saw OFP was at 4am im the morning watching some computer TV program - They showed that mission BATTLEFIELD and i was like W O W ! ! ! that looks Fing great.. next day i was playing it :) -
i said bullets, not bombs :) doesn't _bomb setdamage 1 make them explode ?
-
you can easily spawn bullets at the point of the explosion to simulate flak, depending on type could cause damage to the aircraft if hit :)
-
can someone explain how this works..? Does it wait for a sound before playmove or does it wait for the move to finish before playing the sound ?
-
Carrier landing
Junker replied to masterkrovel's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
this is not possible ATM unless someone comes out with a FSM or script that will make the AI do so.. -
try setting the 0 too 0.3 or something might help..
-
this is what you looking for >> http://community.bistudio.com/wiki/setFriend
-
Removing dead vehicles
Junker replied to Tinker's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
All you need to do is run a script for each vehicle :- put [this] exec "scriptname.sqs" in the init of each vehicle and use this code :- _vehi = _this select 0 #loop ?(Not(Alive _vehi)) : Deletevehicle _vehi ; Exit ~30 goto "loop" -
End mission on flag raise
Junker replied to KEVBAZ's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
maybe you can look for the animationstate of the flag ? http://community.bistudio.com/wiki/animationState then get the finish to trigger when the state is complete with this.? http://community.bistudio.com/wiki/animationPhase