Search results

  1. S

    [Release] SQF to Biedi converter/importer

    This is really useful. Thank you.
  2. S

    Headshot Suicide by right-mouse-click in player gear

    You have to bind it directly to certain item or gun. Maybe something like this: if (_button == 1) then { _group = _parent displayCtrl 6902; _pos = ctrlPosition _group; _pos set [0,((_this select 2) + 0.48)]; _pos set [1,((_this select 3) + 0.07)]; _item = gearSlotData...
  3. S

    Headshot Suicide by right-mouse-click in player gear

    Pretty sure that you can do this with ui_selectSlot.sqf.
  4. S

    Looking for a classname for TSW

    "MedBox0" not sure what you mean with that another one, check HERE.
  5. S

    Vampire's Russian Roulette [Support&Discussion]

    Little off topic but how would I loop the played sound? sound[]={Custom\gunclick.ogg,0.7,1}; <-- This value maybeh?
  6. S

    [Release] DayZChernarus Mission System

    Add to bottom of init.sqf [] execVM "debug\addmarkers.sqf"; [] execVM "debug\addmarkers75.sqf";
  7. S

    MV22 Osprey Folding wings?

    You can still turn the engine off while flying and fold the wings and then turn the engine on and fly wings folded :)
  8. S

    [1.7.7.1 HOTFIX] Fix for server side FPS and Loot not spawning

    Make custom loot tables and set 0% spawn chance to everything. That should do it I guess. http://opendayz.net/threads/tutorial-custom-loot-tables-and-adjusting-spawn-rates.11589/
  9. S

    Hero Camp Trade Humanity

    fn_selfActions.sqf if((_traderMenu select 2) == "friendly") then { _humanity_logic = (_humanity < -5000); }; if((_traderMenu select 2) == "hostile") then { _low_high = "high"; _humanity_logic = (_humanity > -5000); }; if((_traderMenu select 2) == "hero") then { _humanity_logic =...
  10. S

    Airdrop script (WIP) need a bit of help ...

    That's what I was doing, but I rather add an exception than change it to log only. I just can't figure out which filter is causing Condition RemoteExec Restriction #0 kick.
  11. S

    Requesting Help.

    :) ok, just send the files.
  12. S

    Requesting Help.

    if(vehicle _x != _x && !(vehicle _x in _safety) && (isPlayer _x) && (vehicle _x getVariable [""Sarge"",0] != 1) && !((typeOf vehicle _x) in DZE_safeVehicle)) then {" \n
  13. S

    Airdrop script (WIP) need a bit of help ...

    How did you whitelist this to battleye filters Condition RemoteExec Restriction #0 ["true", ""] [6:12 group, 1] I deleted waypointcondition and it's not in remoteexec...
  14. S

    Requesting Help.

    That should not effect traders. Are you sure that they are not working when you zoom in and scroll? Did you notice that this line in server_cleanup.fsm --> if(vehicle _x != _x && !(vehicle _x in _safety) && (typeOf vehicle _x) != ""ParachuteWest"") then {" \n is different in epoch, so don't...
  15. S

    Requesting Help.

    Here: if ((typeName _objectID != "string") || (typeName _uid != "string")) then { diag_log(format["Non-string Object: ID %1 UID %2", _objectID, _uid]); //force fail _objectID = "0"; _uid = "0"; }; if (_object getVariable "Mission" == 1) exitWith {}; if (!_parachuteWest and...
  16. S

    Requesting Help.

    Place it after this fnc_plyrHit = compile preprocessFileLineNumbers "\z\addons\dayz_server\compile\fnc_plyrHit.sqf"; What you mean with side mission files? All mission files are in the main post.
  17. S

    Dayz Epoch - Vendor dont work with all the add on

    Try one by one and figure out which script brakes it. Probably something in your fn_selfactions. Does your autorefuel actually work?
  18. S

    Decay problem (Walls disappearing)

    Are you using this event? CREATE EVENT PreventCleanup ON SCHEDULE EVERY 1 DAY COMMENT 'Prevents all cleanup by setting datestamp to current' DO UPDATE `Object_DATA` SET `Datestamp`=CURRENT_TIMESTAMP WHERE `ObjectUID` <> 0 AND `CharacterID` <> 0 AND ( (`Inventory` IS NULL) OR (`Inventory` = '[]') )
  19. S

    Airdrop script (WIP) need a bit of help ...

    Are these cords for Chernarus? _plane_start = [[7839.6055,8414.7324,300],[6993.7007,173.05298,300],[1623.715,218.18848,300],[7492.6675, 15263.042]] call BIS_fnc_selectRandom;
  20. S

    [Help] Epoch / Vilayer : Tow & Lift Script

    Move the exec to bottom of init.sqf.
Back
Top