28.08.2009, 16:33
Quote:
|
Originally Posted by Dongotti
Hey,
I need some help with my server. Everytime an non-admin spawns he starts with $0. I want the non-admin to start with $5000. I know this is a VERY VERY noobish question but Iam sorry xD. Thanks for reading this !Greetz Dongotti |
Код:
GivePlayerMoney(playerid,5000);
You can also do this:
At the top of the script with your defines
Код:
#define SPAWN_MONEY 5000 // change the amount here and it will change it everywhere you have used SPAWN_MONEY
Код:
GivePlayerMoney(playerid,SPAWN_MONEY);


!