[Ajuda] Combustivel
#1

Este combustivel estas assim, quando estou sozinho em meu servidor ele nгo altera (Exemplo: meu combustivel й 30), ai estas tudo ok, entrou um novo player no meu servidor (45 combustivel), pegou um carro ai cada um ta em seu carro, o combustivel fica trocando, estas 30 meu combustivel normal e depois vб pra 45 (combustivel do player que entrou no servidor), ai se tem mais de 10 pessoas no servidor fica alterando sem parar, acham que tem algo haver com playerd?

pawn Код:
public Velocimetro()
{
    for (new i = 0; i < MAX_PLAYERS; i++)
    {
        if (IsPlayerConnected(i))
        {
            AtualizarInfos(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 velocid;
                velocid = floatround(Speed, floatround_floor);
                new string[256];
                new PlayerVehicleModelID = GetVehicleModel(GetPlayerVehicleID(i));
                PlayerVehicleModelID -= 400;
                format(string, 256, "~n~      ~b~ ~h~ ~h~Velocidade~n~        ~w~ %i ~w~~h~~h~Km/H ~n~~n~      ~b~ ~h~ ~h~Combustivel~n~      ~w~ ~h~ ~h~ %d Litros", velocid, dini_Int(file, "Combustivel"));
                TextDrawSetString(velo[i], string);
                Radar(i);
                TextDrawShowForPlayer(i, velo[i]);
            }
            else TextDrawHideForPlayer(i, velo[i]);
        }
        else
        {
            TextDrawHideForPlayer(i, velo[i]);
        }
    }
}
Obs: Nгo sou o artheny --
Reply


Messages In This Thread
Combustivel - by Ivan_Mota - 01.08.2012, 03:02
Re: Combustivel - by Sampizito - 01.08.2012, 03:43
Re: Combustivel - by @Riichard - 01.08.2012, 03:46
Re: Combustivel - by Sampizito - 01.08.2012, 03:47
Re: Combustivel - by leonardo1434 - 01.08.2012, 03:50
Re: Combustivel - by Sampizito - 01.08.2012, 03:52
Re: Combustivel - by leonardo1434 - 01.08.2012, 03:57
Re: Combustivel - by Brazuca[]s - 01.08.2012, 04:10
Respuesta: Combustivel - by Ivan_Mota - 01.08.2012, 13:02
Re: Combustivel - by humildadeforever - 01.08.2012, 13:05

Forum Jump:


Users browsing this thread: 1 Guest(s)