Search results

  1. F

    DayZ Mission System

    I assume you mean mission frequency: SMGoMajor.sqf SMGoMinor.sqf //Created by Falcyn [QF] _wait = [2000,650] call fnc_hTime; sleep _wait; MissionGo = 1; If I remember correctly, the numbers above represent: 2000 = max time before spawn 650 = min time before spawn
  2. F

    DayZ Mission System

    In each SM.sqf mission file, change the _coords to what he or ebay recommended: _coords = [getMarkerPos "center",0,7000,10,0,10,0] call BIS_fnc_findSafePos;
  3. F

    2017 - Official Announcement!

    By the way, how soon is "soon" for the beta? I'd pick up a copy of Arma 3 just for this :)
  4. F

    general problems with all scripts using fn_selfactions.sqf

    fn_selfActions.sqf and compiles.sqf are both found in the dayz_code.pbo sitting on your computer, not the mission or server pbo files. For easy reference, find them here (and all other latest Epoch files)...
  5. F

    Epoch Custom Loadouts

    Tried this last night, didn't need to comment out anything in server_playerLogin.sqf. Worked fine.
  6. F

    DayZ Mission System

    re: dead AI at Novy - I've been adjusting settings trying to prevent Novy mission spawns but have not been successful to-date. AI still spawn dead. Have tried different variations of min/max range, terrain gradient, etc but none seem to work all the time...
  7. F

    [Release] pick spawn and loadout

    Got it working, thanks a ton ebay. I had the CMD menu block still active. Was staring at the thing the entire time and missed it :)
  8. F

    [Release] pick spawn and loadout

    Is there any other potential whitelisting required on top of the menu? I can get this working fine if my antihack is off or if I'm set as an admin, but regular players will see the spawn location menu for a second before it disappears on its own.
  9. F

    dayZ (arma) AI Controlled Bus Route.

    Can you please share your faction.sqf? I'm having the same issue. Thanks.
  10. F

    2017 - Official Announcement!

    Looking forward to this :)
  11. F

    Where to put fn_selfActions.sqf

    It says in the instructions: "Fixes\fn_selfActions.sqf"; You need to follow all the steps in that link if you haven't already though.
  12. F

    Dayz Epoch Base Shield "Trigger" System

    name="AdminBase"; expActiv="adminbase = [] execVM ""Scripts\adminbase.sqf"";"; expDesactiv="terminate adminbase; titleText [""You have left the Admin Base!"", ""PLAIN DOWN"", 3];"; "Adminbase" and "adminbase" - I think it's case-sensitive.
  13. F

    DayZ Mission System

    Thanks - that's exactly what I was looking for. Am tinkering with the settings to see what works.
  14. F

    Init.sqf Help

    The init.sqf is different for you two because you're both running different maps - one is base Chernarus and the other is Epoch Chernarus. Just add whatever parameters you want to the init.sqf, most are not included by default.
  15. F

    DayZ Mission System

    Some weirdness with one of the Novy Sobor missions -> SM1.sqf (Major). AI guards appear to be spawning inside the wall, I'm guessing a coordinates adjustment is required. _aispawn = [_coords,80,6,6,1] execVM "\z\addons\dayz_server\missions\add_unit_server.sqf";//AI Guards sleep 5...
  16. F

    DayZ Epoch Easy Way To Restock Items?

    No, what I posted is a one time thing. Though, you can create a schedule event to run that query every day. Only thing is you need to keep Navicat running.
  17. F

    Dayz Epoch Mission System Help Please

    Oh you're talking about the supply crate drop? Not sure there's any notification for that.
  18. F

    Dayz Epoch Mission System Help Please

    Vanilla Epoch doesn't have missions...are you talking about the Chernarus Mission System?
  19. F

    how to show "player *name* connecting" ingame?

    Usually also displays: "Player Bob uses modified data file" in between the 'connecting' and 'connected' lines as well. So yeah, that in addition to whitelist messages and you could be looking at a lot of spam :)
  20. F

    DayZ Epoch Easy Way To Restock Items?

    I'm currently using Navicat, but this should work for any SQL client: UPDATE traders_data SET qty=50 WHERE qty=0; This will update any trader item currently out-of-stock to the defined number. Where I currently have it set to 50, change to whatever number you want.
Back
Top