overpoch wage system ?

dta-blitz

Member
wot about a overpoch wage system every 30mins your on server you get say 5k coins if using a banking system on your server?

like in takistan ^_^
 
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.
Code:
while {true} do {
_text = format ["\nThank you for playing! Here is a brief!",10];
titleText [_text,"PLAIN DOWN"];

player addMagazine "ItemBriefCase100oz";

uisleep 1800;
};

just put that in a .sqf and call it from your init like
Code:
execVM "CHANGE\FILE\PATH\namehere.sqf";
 
Back
Top