[FilterScript] Velocimetro Basico
#9

Quote:
Originally Posted by Slim.-
Посмотреть сообщение
tem como mudar a cor das letras tipo cores bem chamativas ?
Simples Man

Codigos :


~n~ Pula Linha
~w~ Branco
~b~ Azul Escuro
~g~ Amarelo
~r~ Vermelho
~p~ Roxo Claro

Pra Modificar a Cor e Simples Tmb ^^

public Velocimetro()

[~g~]Veiculo:[~w~]%s[ ~n~ ]
[COR] [COR] [Pula Linha]

Velocidade:[~w~]%i[~b~]KM/H
[COR] [COR]

[~g~]Lataria:[~w~]%.0f%",nocarro,velocidade,vcarro);
[COR] [COR]


Se Localiza Akii

public Velocimetro()
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
new aname[MAX_PLAYER_NAME];
GetPlayerName(i, aname, MAX_PLAYER_NAME);
if(IsPlayerInAnyVehicle(i)) {
new Float:X, Float:Y, Float:Z, Float:Speed;
GetVehicleVelocity(GetPlayerVehicleID(i), X, Y, Z);
Speed = floatmul(floatsqroot(floatadd(floatadd(floatpower( X, 2), floatpower(Y, 2)), floatpower(Z, 2))), 200.0);
new Float:vcarro;
GetVehicleHealth(GetPlayerVehicleID(i), vcarro);
new velocidade;
velocidade = floatround(Speed, floatround_floor);
new string[256];
new PlayerVehicleModelID = GetVehicleModel(GetPlayerVehicleID(i));
PlayerVehicleModelID -= 400;
new nocarro[30];
format(nocarro,30,NomeCarro[PlayerVehicleModelID]);
format(string, 256,"~g~Veiculo:~w~%s~n~~g~Velocidade:~w~%i ~b~KM/H~n~~g~Lataria:~w~%.0f%",nocarro,velocidade,vcarro ); // AKI BOY ^^
TextDrawSetString(velo[i],string);
TextDrawShowForPlayer(i,velo[i]);
} else TextDrawHideForPlayer(i, velo[i]);
}else{
TextDrawHideForPlayer(i, velo[i]);
}
}
}

Qualqer Duvida So postar
Reply


Messages In This Thread
Velocimetro Basico - by dPlaYer_ - 28.11.2011, 23:12
Re: Velocimetro Basico - by DrTHE - 28.11.2011, 23:17
Re: Velocimetro Basico - by dPlaYer_ - 28.11.2011, 23:20
Re: Velocimetro Basico - by DreeH - 28.11.2011, 23:28
Re: Velocimetro Basico - by dPlaYer_ - 28.11.2011, 23:36
Re: Velocimetro Basico - by nX_ - 28.11.2011, 23:44
Re: Velocimetro Basico - by dPlaYer_ - 28.11.2011, 23:45
Re: Velocimetro Basico - by Vai_Besta - 29.11.2011, 00:04
Re: Velocimetro Basico - by Blacknot - 29.11.2011, 00:13
Re: Velocimetro Basico - by nX_ - 29.11.2011, 00:16

Forum Jump:


Users browsing this thread: 1 Guest(s)