SA-MP Forums Archive
Help me with payday - 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: Help me with payday (/showthread.php?tid=395913)



Help me with payday - Hugoca - 28.11.2012

Hi.I wanna when the time is XX:00 all players to get 2000 money.I didn't know how to make this with time.Thanks


AW: Help me with payday - Skimmer - 28.11.2012

Do you have clock system in your script? If yes post the public callback here.


Re: Help me with payday - Hugoca - 28.11.2012

Here is my clock filterscript -,-


Re: Help me with payday - Hugoca - 28.11.2012

please help


Re: Help me with payday - Hugoca - 29.11.2012

bump ... please help


Re: Help me with payday - XtremeR - 29.11.2012

use any filterscript for Payday,
https://sampforum.blast.hk/showthread.php?tid=274680
or
https://sampforum.blast.hk/showthread.php?tid=331329

or make your own!
https://sampforum.blast.hk/showthread.php?tid=349605


Re: Help me with payday - [MM]RoXoR[FS] - 29.11.2012

After the gettime line in settime function add
pawn Код:
if(hour==12)//if you want to give them at 12
for(new i =0;i <MAX_PLAYERS;++i)
if(IsPlayerConnected(i)) GivePlayerMoney(i,2000);