08.02.2009, 17:27
Код:
if (!strcmp("/carhp", cmdtext, true))
{
new Float:health;
new carhp;
carhp = GetPlayerVehicleID(playerid);
GetVehicleHealth(carhp, health);
new hp[128];
format(hp, sizeof(hp), "%d HP",health);
SendClientMessage(playerid, COLOR_WHITE, hp);
print(hp);
return 1;
}
how to fix?

