rentcar
#9

Try this.. This should work. You used an extra curly brace. Now it will work.

Код:
CMD:unrentcar(playerid, params[])
{
    new string[124];
    new vehicleid = GetPlayerVehicleID(playerid);
    for(new i=0; i<5; i++)
        {
        if(GetPlayerState(playerid) == 2 && IsPlayerInVehicle(playerid, rentCAR[i]))
            {
                GetVehicleParamsEx(vehicleid, engine, lights, alarm, doors, bonnet, boot, objective);
                    {
                        if(engine != 0)
                        {
                        SetVehicleParamsEx(vehicleid, 0, 0, alarm, doors, bonnet, boot, 0);
                        format(string, sizeof(string), "* %s turns the engine off.", GetName(playerid));
                        ProxDetector(20.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                        }
                    }
            }
            rentingVehicle[playerid] = false;
            TogglePlayerControllable(playerid,1);
        }
        
    return 1;
}
Reply


Messages In This Thread
rentcar - by fonetic - 29.07.2014, 06:15
Re: rentcar - by Cannary2048 - 29.07.2014, 06:39
Re: rentcar - by fonetic - 29.07.2014, 07:15
Re: rentcar - by mjay768 - 29.07.2014, 07:22
Re: rentcar - by fonetic - 29.07.2014, 07:32
Re: rentcar - by mjay768 - 29.07.2014, 07:47
Re: rentcar - by fonetic - 29.07.2014, 08:23
Re: rentcar - by fonetic - 29.07.2014, 09:03
Re: rentcar - by mjay768 - 29.07.2014, 11:14
Re: rentcar - by fonetic - 29.07.2014, 17:14

Forum Jump:


Users browsing this thread: 2 Guest(s)