SA-MP Forums Archive
I need a help with date system - 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: I need a help with date system (/showthread.php?tid=633620)



I need a help with date system - akib - 04.05.2017

HI
I wanna make a salary system that based in date system
example
player join date is 5/4/2017
player will get salary at 10/4/2017
how can i?


Re: I need a help with date system - raydx - 04.05.2017

1. Save player join date with gettime();
2. Check:

Код:
if(player join date + 432000 >= gettime())
432000 = five days in seconds.

3. Give salary under if.


Re: I need a help with date system - AndreiWow - 04.05.2017

Read more here: https://sampforum.blast.hk/showthread.php?tid=254915]


Re: I need a help with date system - akib - 05.05.2017

Quote:
Originally Posted by raydx
Посмотреть сообщение
1. Save player join date with gettime();
2. Check:

Код:
if(player join date + 432000 >= gettime())
432000 = five days in seconds.

3. Give salary under if.
Quote:
Originally Posted by AndreiWow
Посмотреть сообщение
Thanks guys!