wtf is wrong with that code :2
#3

Quote:
pawn Код:
format(string, sizeof(string),"%s Statistic's~n~NBTDM~n~Health:%d~n~Skin:%d~n~Money:%d~n~Class:%d",name,GetPlayerHealth,GetPlayerSkin,GetPlayerMoney,GetPlayerTeam);
You can't just use GetPlayerHealth, GetPlayerSkin, GetPlayerMoney and GetPlayerTeam with no parameters. Try this instead:

pawn Код:
new Float:Health;
GetPlayerHealth(playerid, Health);
format(string, sizeof(string),"%s Statistic's~n~NBTDM~n~Health:%d~n~Skin:%d~n~Money:%d~n~Class:%d",name,Health,GetPlayerSkin(playerid),GetPlayerMoney(playerid),GetPlayerTeam(playerid));
EDIT:
Quote:
Originally Posted by park4bmx
Посмотреть сообщение
which one is line 076 ?
That's error 076, tho, not the line
Reply


Messages In This Thread
wtf is wrong with that code :2 - by vassilis - 30.10.2011, 17:06
Re: wtf is wrong with that code :2 - by park4bmx - 30.10.2011, 17:10
Re: wtf is wrong with that code :2 - by Gustavob - 30.10.2011, 17:11
Re: wtf is wrong with that code :2 - by vassilis - 30.10.2011, 17:12
Re: wtf is wrong with that code :2 - by Gamer_Z - 30.10.2011, 17:12
Re: wtf is wrong with that code :2 - by vassilis - 30.10.2011, 17:14
Re: wtf is wrong with that code :2 - by Gustavob - 30.10.2011, 17:18

Forum Jump:


Users browsing this thread: 1 Guest(s)