bug in my park command?
#8

pawn Код:
if(!strcmp(cmd, "/parkcar", true))
{
            new vehicle;
            vehicle = GetPlayerVehicleID(playerid);
        if(!dini_Int(GetFile(playerid), "HaveCar")) return SendClientMessage(playerid,red,"You dont have car");
        if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid,red,"You are not in a car");
        if(vehicleid != CarID(playerid)) return SendClientMessage(playerid,red,".This is not your car");
       
        new Float:X,Float:Y,Float:Z;
                new Float:angle;
        GetVehiclePos(vehicleid, X, Y, Z);
                GetVehicleZAngle(currentveh, angle);
                SetVehicleZAngle(currentveh, angle);
        dini_FloatSet(VFile(vehicleid), "ParkX", X);
        dini_FloatSet(VFile(vehicleid), "ParkY", Y);
        dini_FloatSet(VFile(vehicleid), "ParkZ", Z);
        SetVehicleToRespawn(vehicleid);
       
        SendClientMessage(playerid,lgreen,".You parked your car");
        return 1;
    }
Reply


Messages In This Thread
bug in my park command? - by ben4uka - 31.07.2014, 11:09
Re: bug in my park command? - by Jack_Leslie - 31.07.2014, 12:21
Re: bug in my park command? - by ben4uka - 31.07.2014, 12:23
Re: bug in my park command? - by Jack_Leslie - 31.07.2014, 12:26
Re: bug in my park command? - by ben4uka - 31.07.2014, 12:28
Re: bug in my park command? - by Jack_Leslie - 31.07.2014, 12:30
Re : bug in my park command? - by ManuelNeuer - 31.07.2014, 12:32
Re: bug in my park command? - by Clad - 31.07.2014, 12:42
Re: bug in my park command? - by ben4uka - 31.07.2014, 12:46
Re: bug in my park command? - by Clad - 31.07.2014, 12:54

Forum Jump:


Users browsing this thread: 9 Guest(s)