29.05.2014, 14:22
Ahhh, entendi. isso й simples .
https://sampwiki.blast.hk/wiki/Format
https://sampwiki.blast.hk/wiki/GetPlayerArmour
https://sampwiki.blast.hk/wiki/GetPlayerHealth
Estude !
PHP код:
CMD:pstats(playerid)
{
new Float:Vida, Float:Colete;
new string[128];
GetPlayerHealth(playerid,Vida);
GetPlayerArmour(playerid,Colete);
format(string,sizeof(string),"Vida:%.3f Colete: %.3f",Vida,Colete);
SendClientMessage(playerid, -1, string)
return 1;
}
https://sampwiki.blast.hk/wiki/GetPlayerArmour
https://sampwiki.blast.hk/wiki/GetPlayerHealth
Estude !