[Ajuda] Como arrumar esse comando ?
#1

Quote:

public OnPlayerCommandText(playerid, cmdtext[])
if (strcmp("/motoron", cmdtext, true, 10) == 0)
{
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!");
}
}
}
if (strcmp("/motoroff", cmdtext, true, 10) == 0)
{
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_OFF, lu, alar, por, cap, porma, ob);
motor[playerid] = 1;
SendClientMessage(playerid, 0xFFFFFFAA, "Veiculo {2F991A}Desligado!");
}
}
}

Ta dando erro ...

PF ajuda do +REP
Reply


Messages In This Thread
Como arrumar esse comando ? - by Leopawno - 12.07.2013, 18:16
Re: Como arrumar esse comando ? - by WLSF - 12.07.2013, 18:24
Re: Como arrumar esse comando ? - by Leopawno - 12.07.2013, 18:32
Re: Como arrumar esse comando ? - by WLSF - 12.07.2013, 18:37
Re: Como arrumar esse comando ? - by Leopawno - 12.07.2013, 20:11
Re: Como arrumar esse comando ? - by WLSF - 12.07.2013, 20:20
Re: Como arrumar esse comando ? - by Leopawno - 12.07.2013, 21:46

Forum Jump:


Users browsing this thread: 1 Guest(s)