SA-MP Forums Archive
Pay 3000% to hour - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Pay 3000% to hour (/showthread.php?tid=43999)



Pay 3000% to hour - GaMeouT - 19.07.2008


Hello, I want every hour all factions to give $ 4000

A emeplo a faction:
Code:
if(PlayerInfo[playerid][pJob] != 7)



Re: Pay 3000% to hour - [FTW]Spitfire757 - 19.07.2008

Oh you WANT a script that does that, How about saying this:

"Can someone help me create a script that pays *blah* an hour?
Here is what i got so far:
*YOUR CODE*"

Instead of demanding it? Well anyway I have no clue


Re: Pay 3000% to hour - Doppeyy - 20.08.2009

Code:
forward Pay();

public OnGameModeInit();
{
  SetTimer("Pay",Time here in milli seconds,false);
}

public Pay();
{
  SetPlayerMoney(playerid,-4000);
}
/Artix