do a complete wipe of all vehicles on your server then go into your server pbo / missions / map folder / dynamic_vehicle.sqf and remove / add vehicles there. I believe the format is ["classname",quantity] where quantity would be a whole number like 1 or 2
Depends on what you're looking for. There is one that requires editing your fn_selfActions and adds a scroll menu when looking at bodies, it works pretty well. There is also one that I did that adds the players skin to their inventory when they die, so you can just loot it off of them. Both work...
Here is the simplest of simple loops to give your players a briefcase as soon as it is executed, then another 30 minutes later, etc etc etc.
while {true} do {
_text = format ["\nThank you for playing! Here is a brief!",10];
titleText [_text,"PLAIN DOWN"];
player addMagazine...
For anyone wondering about multiple markers, you can do it all in one .sqf.
_marker = createMarker ["PobedaMine", [9646.48,13534.9,0.00164795]];
_marker setMarkerText "Pobeda Mine";
_marker setMarkerType "mil_objective";
_marker setMarkerColor "ColorRed";
marker = _PobedaMine;
_markerr =...
dunno much about hive queries but I do know you misspelled format here _key = fromat["CHILD:999:SELECT * FROM donators WHERE donor = ?:[%1]:",_playerUID]; also in the new steam based beta patches you either use their steamID (which I believe is returned by getPlayerUID now) or you use...
take player_spawnCheck.sqf out of the dayz_code.pbo and put it in your mission.pbo then call it from a custom compiles.sqf and change the distances on this line : if ((_dis < 120) && (_dis > 30) && !_inVehicle) then { you can change the _dis numbers to be less or greater. It wont make...
You could probably run an event in your database that adds an item to their inventory if they've logged in, and runs it once a day. I don't know enough sql to help with that, though
idk about logging in but you could have a script based on time played using diag_tickTime. It executes and starts a timer when they first log in and resets everytime they log out, but if they are online long enough it gives them the item etc etc
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.