30.05.2010, 01:14
Text Draw's or GameTextForPlayer
Example:
OnGameModeInit
Final In GM:
Sorry My Bad English I Am Brazilian
Example:
OnGameModeInit
pawn Код:
SetTimer("CarHealth",true,1000);
pawn Код:
forward CarHealth(playerid);
public CarHealth(playerid)
{
new string[55];
new Float:health;
GetVehicleHealth(GetPlayerVehicleID(playerid), health);
format(string, sizeof(string), "Vehicle Health Is: %f", health);
GameTextForPlayer(playerid, string, 3000, 4);