05.10.2010, 09:38
You need to create an array to use as a string, and format it:
pawn Код:
new money = random(10000-5000)+5000;
GivePlayerMoney(playerid, money);
new string[128];
format(string, sizeof(string), "You've Earnt $%d", money);
SendClientMessage(playerid, COLOR_GREEN, string);