/car spawner?
#4

pawn Код:
CMD:car(playerid, params[])
{
    if(PlayerInfo[playerid][Level] >= 6)
    {
        new tmp[128], tmp2[128], tmp3[128], Index; tmp = strtok(params, Index); tmp2 = strtok(params, Index); tmp3 = strtok(params, Index);
        if(!strlen(tmp)) return SendClientMessage(playerid, red, "USAGE: /car [Modelid/Name] [colour1] [colour2]");
        new carmodel, colour1, colour2;
        if(!IsNumberic(tmp)) { carmodel = GetVehicleModelIDFromName(tmp); } else { carmodel = strval(tmp); }
        if(!strlen(tmp2)) { colour1 = random(126); } else { colour1 = strval(tmp2); }
        if(!strlen(tmp3)) { colour2 = random(126); } else { coloru2 = strval(tmp3); }

        if(PlayerInfo[playerid][pCar] != -1 && !IsPlayerAdmin(playerid)) { CarDeleter(PlayerInfo[playerid][pCar]); }
        new Float:X, Float:Y, Float:Z, Float:A, int1; GetPlayerPos(playerid, X, Y, Z); GetPlayerFacingAngle(playerid, A); int1 = GetPlayerInterior(playerid);
        LVehicleID = CreateVehicle(carmodel, X+3,Y,Z, Angle, colour1, colour2, -1); LinkVehicleToInterior(LVehicleID,int1); PutPlayerInVehicle(playerid, LVehicleID, 0);
        PlayerInfo[playerid][pCar] = LVehicleID;
        CMDMessageToAdmins(playerid,"CAR");
        format(string, sizeof(string), "%s spawned a \"%s\" (Model:%d) colour (%d, %d), at %0.2f, %0.2f, %0.2f", pName(playerid), VehicleNames[carmodel-400], carmodel, colour1, colour2, X, Y, Z);
        SaveToFile("CarSpawns",string);
        format(string, sizeof(string), "You have spawned a \"%s\" (Model:%d) colour (%d, %d)", VehicleNames[carmodel-400], carmodel, colour1, colour2);
        return SendClientMessage(playerid,lightblue, string);
    } else return SendClientMessage(playerid, red, "ERROR: You need to be level 6 to use this command");
}
I think it's a small name problem, try this please and tell me if it's the same.
Edit: Oh yeah, like past said. Include zcmd or y_commands..
Reply


Messages In This Thread
/car spawner? - by Tomix - 10.08.2013, 19:07
Re: /car spawner? - by PrinceKumar - 10.08.2013, 19:19
Re: /car spawner? - by PT - 10.08.2013, 19:23
Re: /car spawner? - by BullseyeHawk - 10.08.2013, 19:28
Re: /car spawner? - by Smokeyy - 10.08.2013, 20:11
Re: /car spawner? - by Tomix - 10.08.2013, 20:28
Re: /car spawner? - by Tomix - 10.08.2013, 20:36
Re: /car spawner? - by BullseyeHawk - 10.08.2013, 20:55

Forum Jump:


Users browsing this thread: 2 Guest(s)