Quote:
Originally Posted by ♣ ⓐⓢⓢ
Quote:
Originally Posted by KeyWay
No, i added everything that it says, it still doesnt work, maybe because im using Moneyz and NegativeMoneyz FS?
|
Ah, ok, after I read your message I looked through the code (before I just belived in the rightness of the post)
BUT there is an mistake
Quote:
Originally Posted by Norn
OnGameModeInit
pawn Code:
SetTimer("MoneyTimer", 1000, 0);
|
That should be
Quote:
Originally Posted by Norn
OnGameModeInit
pawn Code:
SetTimer("MoneyTimer", 1000, 1);
|
Note: The 1 instead of 0 because 1 (true) is the reapeating parameter, if it would be 0 the timer stops after his first call and wont work!
|
Thanks! It works now.
But what if i have FS using GivePlayerMoney etc. ?
I need to make timer and all that IN to FS too?