01.04.2015, 19:53
Galera To com problema com esse sistema de motor, tipo o motor quebra e quando eu aperto a tecla Y para ligar e desligar ele desliga quando liga,ele volta a funcionar normalmente com motor quebrado! eu quero ajuda de vocкs
para quando o motor quebrar ele desligar e sу ligar quando for arrumado!! darei rep+
para quando o motor quebrar ele desligar e sу ligar quando for arrumado!! darei rep+
pawn Код:
if (strcmp("/Ligarveiculo", cmdtext, true, 10) == 0)
{
if(!IsPlayerInAnyVehicle(playerid))
{
SendClientMessage(playerid, Azul,"Vocк nгo estб em um veнculo");
return 1;
}
new Float: Lataria;
new mot, lu, alar, por, cap, porma, ob;
new carro = GetPlayerVehicleID(playerid);
if(carro != INVALID_VEHICLE_ID)
{
if(motor[playerid] == 0)
{
GetVehicleParamsEx(carro, mot, lu, alar, por, cap, porma, ob);
SetVehicleParamsEx(carro, VEHICLE_PARAMS_ON, lu, alar, por, cap, porma, ob);
motor[playerid] = 1;
SendClientMessage(playerid, 0xFFFFFFAA, "Veiculo {2F991A}Ligado!");
}
else
{
GetVehicleHealth(GetPlayerVehicleID(playerid), Lataria);
if(Lataria == 350)
{
SendClientMessage(playerid,Vermelho,"Esse carro estб quebrado! Chame um mecвnico!");
}
}
}
return 1;
}
if (strcmp("/DesligarVeiculo", cmdtext, true, 10) == 0)
{
new mot, lu, alar, por, cap, porma, ob;
new carro = GetPlayerVehicleID(playerid);
if(carro != INVALID_VEHICLE_ID)
{
if(motor[playerid] == 1)
{
GetVehicleParamsEx(carro, mot, lu, alar, por, cap, porma, ob);
SetVehicleParamsEx(carro, VEHICLE_PARAMS_OFF, lu, alar, por, cap, porma, ob);
motor[playerid] = 0;
SendClientMessage(playerid, 0xFFFFFFAA, "Veiculo {E31919}Desligado!");
}
}
return 1;
}
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
if((newkeys == KEY_YES) && (IsPlayerInAnyVehicle(playerid)))
{
if(!GetPVarInt(playerid, "Motor ON"))
{
SetPVarInt(playerid, "Motor ON", true);
OnPlayerCommandText(playerid,"/LigarVeiculo");
}
else
{
SetPVarInt(playerid, "Motor ON", false);
OnPlayerCommandText(playerid,"/DesligarVeiculo");
}
return true;
}
}