Jump to content

FelixK44

Member
  • Content Count

    125
  • Joined

  • Last visited

  • Medals

Everything posted by FelixK44

  1. Ok... I've been having a bit of fun recently with a edited Evo+SPON money mission have a bunch of objectives to destry radio towers for extra cash to buy guns etc.... Anyway heres what im having a problem with.... Some towns have giant transformers outside of the town is there anyway to create a trigger so when that building is Not Present(destroyed) that it destroys/disables lighting in a trigger area over the town.....?:butbut:
  2. Excellent! Thank you so much for helping me! Now my police mission is complete and time for MP testing. :cool:
  3. Hi, can someone help me? I'm not sure if this is correct it doesn't work so I must of messed up somewhere. I have a trigger placed near the "Jail" and it the init is [] exec "JailZone.sqf" the JailZone script displays the hint but the ArrestCheck script fails somewhere and doesn't show the hint. :confused: EDIT: If it's possible I would rather have the trigger created through script to instead check if the unit is "captive" and then run a script for all units in the trigger. "JailZone" sleep 15; JailZone1=createTrigger ["EmptyDetector",getPos _object]; JailZone1 setPos (getMarkerPos "JailZone") JailZone1 setTriggerArea [50,50,0,false]; JailZone1 setTriggerActivation ["CIV","PRESENT",true]; JailZone1 setTriggerStatements ["this", "{[_x] exec ""ArrestCheck.sqf""} forEach thisList", "'"]; sleep 1; Hint "Jail Zone Refreshed"; "ArrestCheck" sleep 15; _x = _this select 0; if (animationState _x == "CivilLying01") then { [_x] exec ""Reward.sqf"" }; Hint "Checking Animations";
  4. Well, I would rather delete the units that are in the animation state because the arrested units will start piling up. :)
  5. Dude thanks! I have another problem though! I need to create another trigger so that players can't keep collecting rewards for arrested civilians. I tried doing it on my own but it doesn't work. :( sleep 5; JailZone2=createTrigger ["EmptyDetector",getmarkerPos "JailZone"]; JailZone2 setPos (getMarkerPos "JailZone"); JailZone2 setTriggerArea [50,50,0,false]; JailZone2 setTriggerActivation ["CIV","PRESENT",true]; JailZone2 setTriggerStatements ["this", "{if((_x distance JailZoneArea < 10) && (animationstate _x == ""civillying01"")) [b]then {deleteVehicle [_x]} else {};} foreach thisList;", ""];[/b] <======
  6. Well, the trigger doesn't actually exist when the mission starts. I placed an object in the editor and place this addaction ["Turn in Criminals", "JailZone.sqf"]; in the objects init. When a player uses the action the script gets executed inside JailZone is the arrestcheck script. Both scripts are working the problem is with arrestcheck now. JailZone.sqf sleep 1; JailZone1=createTrigger ["EmptyDetector",getmarkerPos "JailZone"]; JailZone1 setPos (getMarkerPos "JailZone"); JailZone1 setTriggerArea [50,50,0,false]; JailZone1 setTriggerActivation ["CIV","PRESENT",true]; JailZone1 setTriggerStatements ["this", "{[_x] execVM ""ArrestCheck.sqf""} forEach thisList", ""]; sleep 1; Hint "Jail Zone Refreshed"; ArrestCheck.sqf sleep 1; _x = _this select 0; [b]{if((_x distance JailZoneArea < 10) && (animationstate _x == "civillying01")) then {[_x] execVM "ArrestReward.sqf"} else {};} foreach thislist;[/b] <---- Isn't detecting animation for some reason?
  7. I'm trying to create a trigger that's condition to activate is if the civilians in the area are in the animationstate "civilying01" and if they are for it to run a script. :confused:
  8. Oh cool thanks for the suggestion about -ShowScriptErrors! In the else { } part of arrestcheck script how do I display a hint? else {Hint "Test"} doesn't work. sleep 1; Hint "Checking Animations 1"; _x = _this select 0; Hint "Checking Animations 2"; {if((_x distance JailZoneArea < 10) && (animationstate _x == "civillying01")) then {[_x] execVM "ArrestReward.sqf"} [b]else {}[/b];} foreach thislist; Hint "Checking Animations 3";
  9. New script code, the script stops on "Checking Animations 2" Hint "Checking Animations 1"; _x = _this select 0; Hint "Checking Animations 2"; [b]if (animationState _x == "CivilLying01") then { [_x] execVM ""Reward.sqf"" };[/b] <--------- Script not processing this line of code Hint "Checking Animations 3";
  10. FelixK44

    Patrol Operations 2

    I figured out what was causing the glitch. It seems if the unit who initiates the dragging/carrying is holding a pistol their frozen from moving. FIXED! Simple if anyone is interested go here: http://www.armaholic.com/page.php?id=2135 place the script inside PO2 folder add the fix to the top of "mps_func_clienteventhandlers.sqf" now all you have to do is "Holster" your weapon if all you have is a pistol to prevent the frozen movement bug while dragging. cheetah_holster_act = [] execVM "holster\gunControl.sqf";
  11. FelixK44

    Patrol Operations 2

    I'm having problems with the ACE wounds version of PO2 in Chernarus. No one on my server can heal other players, and if they attempt to drag or carry an injured unit their "frozen" unable to move. I'm not really sure how to fix this but it's very annoying has anyone had a similar issue and know how to solve it? EDIT: Thought I would add that loading PO2 in the editor for SP testing also disables dragging/carrying and healing for AI units. ACE Wounds works on all other missions that I try in editor/mp.
  12. I'm trying to spawn "car1" on the nearestRoad 300m from "player", I've tried (getpos NearestRoads player) and it doesn't work. :confused: car1 = createVehicle ["Lada1", [(getpos player) select 0,(getpos player) select 1,0], [], 575, "FORM"]; ---------- Post added at 07:36 PM ---------- Previous post was at 07:14 PM ---------- Well, once again I asked for help too soon. If anyone else is interested........ CREATE MARKER IN EDITOR NAME IT roadMarker _templist = player nearRoads 50; if (count _templist == 0) exitwith {Hint "Spawn Failed"}; _trk = _templist select 0; "roadMarker" setMarkerPos (getpos _trk); //Car1 can be anything, "VehicleClassName" should be name of vehicle Lada1 etc. "375" is the spawn distance from marker. Car1= createVehicle ["VehicleClassName", [(getMarkerPos "roadMarker") select 0,(getMarkerPos "roadMarker") select 1,0], [], 375, "FORM"];
  13. Yeah I tried that the "Order to Stop" action goes away and no new arrest option appears.
  14. I installed AIM but for some reason there is no "ARREST" option only "Order to Stop" is this a known bug or did I mess something up?
  15. Anyone who's played the SWAT series will understand what I'm trying to accomplish. I'm currently creating something and the one problem I can't figure out is how to create a script that can be activated with "addaction" and plays a ArmA2:CO sound while also increasing the chances of ARMED enemies surrendering in a certain radius around the shouting player. Does anyone know if its possible to do this?
  16. Hi, I'm having trouble trying to get this to work. My init.sqf only has one line of code exec "init-shop.sqf" for some reason nothing happens when I execute guntest.sqf init-shop.sqf _unit123 setVariable ["cash", 1]; guntest.sqf //this addAction[("<t color=""#660066"">" + ("Buy AK47") +"</t>"),"shop\guntest.sqf"]; <--- placed in object init if (cash < 250) then { Hint "You do not have enough money"; } else { _curcash = _unit123 getVariable "cash"; _unit123 setVariable ["cash",_curcash - 250]; gunlocker addWeaponCargo ["AK_47_M", 1]; gunlocker addMagazineCargo ["30Rnd_762x39_AK47", 5]; Hint "Check your gunlocker"; };
  17. Is it possible to play as the criminals against AI cops?
  18. FelixK44

    The Undead Mod

    Does this work? :confused: if (!isServer && isNull player) then { waitUntil {!isNull player}; CHN_markerArray= [ "mil_objective", "mil_marker", "mil_flag", "mil_ambush", "mil_destroy", "mil_start", "mil_end", "mil_pickup", "mil_join", "mil_warning", "mil_unknown" ]; onPlayerConnected '{_x setMarkerPos (markerPos _x)} forEach CHN_markerArray'; };
  19. FelixK44

    The Undead Mod

    What exactly are you having a problem with? Are the zombie locations defined as markers and not being updated for JIP clients? Or is it like a task and the progress isn't updating?
  20. I used the #monitor 1 command to find out my server FPS and it's usually around 40fps~50fps but for some reason my entire server will freeze including all clients causing suttering. Does anyone have any clue why my server is dropping to 1 FPS? arma2rpt http://pastebin.com/hFBcMdi9 EDIT: Using latest A2:OA Beta patch.
  21. FelixK44

    J.S.R.S. 1.5

    Will we need to delete the J.S.R.S. 1.4.3 mod or is there going to be a patch?
  22. How can I disable the ace_fnc_radio requirement when using ace and just let players only need ItemRadio?
  23. FelixK44

    J.S.R.S. 1.5

    Can JSRS 1.5 be downloaded through playwithsix?
  24. So does this mean that the original CQB module thing in MSO doesn't work on a dedicated server? :confused:
  25. https://dev-heaven.net/projects/mso/documents sorry, my previous post was a bit unhelpful. [this, 60] execVM "support\scripts\resupply.sqf"; <---put in crate, etc. init [this, 43200, 9999999] execVM "support\scripts\vehicle.sqf"; <---put in vehicle init 43200(respawn time), 99999999 (time to respawn after people get out)
×