display pic
#1

- 4char
Reply
#2

Quote:
Originally Posted by Kar
how do i make a display picture for my fuel script?

like it shows.. fuel% car health% and mph
with TextDraws or GameTextForPlayer
Reply
#3

Text Draw's or GameTextForPlayer

Example:
OnGameModeInit
pawn Код:
SetTimer("CarHealth",true,1000);
Final In GM:
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);
Sorry My Bad English I Am Brazilian
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)