16.09.2013, 12:49
The problems is that all of a sudden the engine system anit checking.
I've place a send client message so i know when its checking the engine which it is then it just stops.
Any help?
I've place a send client message so i know when its checking the engine which it is then it just stops.
Any help?
pawn Код:
CMD:engine(playerid,params[])
{
if(GetPlayerState(playerid)==PLAYER_STATE_DRIVER)
{
new vehicleid = GetPlayerVehicleID(playerid);
new engine,lights,alarm,doors,bonnet,boot,objective;
GetVehicleParamsEx(vehicleid, engine,lights,alarm,doors,bonnet,boot,objective);
SendClientMessage(playerid, -1, "checking if(engine");
if(engine == 0)
{
SetVehicleParamsEx(vehicleid, 1,lights,alarm,doors,bonnet,boot,objective);
SendClientMessage(playerid, -1, "You turned the key and the engine started.");
}
else if(engine == 1)
{
SetVehicleParamsEx(vehicleid, 0, lights,alarm,doors,bonnet,boot,objective);
SendClientMessage(playerid, -1, "You turned the key and turned the engine off.");
}
}
else
{
SendClientMessage(playerid, -1, "You have to be the driver to start the engine.");
}
return 1;
}