07.09.2013, 20:03
pawn Код:
forward DashBoard();
public DashBoard()
{
for(new i=0; i<MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
new aname[MAX_PLAYER_NAME];
GetPlayerName(i, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, aname);
if(dini_Int(file, "Velocimetro") == 1){
new String[128];
new Float:X, Float:Y, Float:Z, Float:Speed;
GetVehicleVelocity(GetPlayerVehicleID(i), X, Y, Z);
Speed = floatmul(floatmul(floatsqroot(floatadd(floatadd(floatpower(X, 2), floatpower(Y, 2)), floatpower(Z, 2))), 100.0), 1.5);
VHS[i] = TextDrawCreate(11.000000,291.000000,"");
TextDrawFont(VHS[i],3);
TextDrawBackgroundColor(VHS[i], 0x000000FF);
TextDrawLetterSize(VHS[i],0.400000,1.300000);
TextDrawColor(VHS[i], -1);
TextDrawSetOutline(VHS[i], 1);
if(IsPlayerInAnyVehicle(i))
{
format(String,sizeof(String),"Velocimetro: %i ~y~~h~KM/h", floatround(Speed, floatround_floor));
TextDrawSetString(VHS[i], String);
TextDrawShowForPlayer(i,VHS[i]);
}
else
{
TextDrawHideForPlayer(i,VHS[i]);
}
}
}
}
return 1;
}