how to add how much pWood you have at /stats - 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: how to add how much pWood you have at /stats (
/showthread.php?tid=143148)
how to add how much pWood you have at /stats -
hardstop - 21.04.2010
like if you type /stats then you see how much pWood you have how can i add?
Re: how to add how much pWood you have at /stats -
Correlli - 21.04.2010
pawn Код:
new
string[24];
format(string, sizeof(string), "You have %i pWood.", PlayerInfo[playerid][pWood]);
SendClientMessage(playerid, 0xFFFFFFFF, string);
Re: how to add how much pWood you have at /stats -
hardstop - 21.04.2010
Thanks again