Have A Question About Reset Something - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Have A Question About Reset Something (
/showthread.php?tid=622369)
Have A Question About Reset Something -
TYDS - 21.11.2016
Hello Guys !
- How Can I Make This, every day in 0 AM this will reset something about player like the time to /gift or something,...
- The /gift command only used one day and 0 AM it will be reset
Re: Have A Question About Reset Something -
StrikerZ - 21.11.2016
PHP код:
new gifttimer[MAX_PLAYERS]; //on top of script
in /gift command.
PHP код:
CMD:gift(playerid,params)
{
//code
if(gifttimer[playerid] > gettime()) return SendClientMessage(playerid,COLOR_YELLOW,"You need to wait for 1 day to use this command again");
gifttimer[playerid] = gettime()+86400;
return 1;
}
This will reset the /gift after 1 full day.
Re: Have A Question About Reset Something -
TYDS - 21.11.2016
Quote:
Originally Posted by Sunehildeep
PHP код:
new gifttimer[MAX_PLAYERS]; //on top of script
in /gift command.
PHP код:
CMD:gift(playerid,params)
{
//code
if(gifttimer[playerid] > gettime()) return SendClientMessage(playerid,COLOR_YELLOW,"You need to wait for 1 day to use this command again");
gifttimer[playerid] = gettime()+86400;
return 1;
}
This will reset the /gift after 1 full day.
|
if player not online it's can work
Re: Have A Question About Reset Something -
StrikerZ - 21.11.2016
Yes if you save this in the INI file of player data or whichever saving system you use. Suppose a player used command /gift at 3am >>timer started>>>he logged out at 5am suppose>>>and logged in at 10am>>> the timer will start from the place where it left at 5am. But only if you save that in player's data
Re: Have A Question About Reset Something -
TYDS - 21.11.2016
Quote:
Originally Posted by Sunehildeep
Yes if you save this in the INI file of player data or whichever saving system you use.
|
oke thank you !
Re: Have A Question About Reset Something -
StrikerZ - 21.11.2016
I edited my post read it again