How to modify this cmd
#1

ok i have this cmd

pawn Код:
CMD:createpvehicle(playerid, params[])
{
    if (PlayerInfo[playerid][pAdmin] < 4)
    {
        SendClientMessageEx(playerid, COLOR_GREY, " You are not allowed to use this command.");
        return 1;
    }

    new string[128], giveplayerid, modelid, color1, color2;
    if(sscanf(params, "uddd", giveplayerid, modelid, color1, color2)) return SendClientMessageEx(playerid, COLOR_REALRED, "USAGE: /createpvehicle [playerid] [modelid] [color 1] [color 2]");

    if(color1 < 0 || color1 > 126) { SendClientMessageEx(playerid, COLOR_GREY, "   Color Number can't be below 0 or above 126 !"); return 1; }
    if(color2 < 0 || color2 > 126) { SendClientMessageEx(playerid, COLOR_GREY, "   Color Number can't be below 0 or above 126 !"); return 1; }
    if(modelid < 400 || modelid > 611) { SendClientMessageEx(playerid, COLOR_GREY, "   Vehicle Number can't be below 400 or above 611 !"); return 1; }
    new playervehicleid = GetPlayerFreeVehicleId(giveplayerid);
    if(playervehicleid == -1) return SendClientMessageEx(playerid, COLOR_GREY, "ERROR: That player can't have more cars.");
    new Float:X,Float:Y,Float:Z;
    GetPlayerPos(giveplayerid,X,Y,Z);
    new Float:Angle;
    GetPlayerFacingAngle(giveplayerid,Angle);
    new car = CreatePlayerVehicle(giveplayerid, playervehicleid, modelid, X, Y, Z, Angle, color1, color2, 0);
    if(car == INVALID_PLAYER_VEHICLE_ID)
    {
        SendClientMessageEx(playerid, COLOR_GREY, "ERROR: Something went wrong and the car didn't get created.");
    }
    else
    {
        format(string, sizeof(string), " Vehicle successfully created with ID %d.", car);
        SendClientMessageEx(playerid, COLOR_GRAD1, string);
    }

    format(string, sizeof(string), "%s has created a %s for %s (Color 1: %d | Color 2: %d).", GetPlayerNameEx(playerid), GetVehicleName(car), GetPlayerNameEx(giveplayerid), color1, color2);
    Log("logs/playervehicle.log", string);
    return 1;
}
i want it changed to this, /giftcar ID then i type a ID then a dialog pops up for that player allowing them to enter a vehicle id in that they want then it gets created please help asap
Reply


Messages In This Thread
How to modify this cmd - by NinjaChicken - 14.09.2012, 03:49
Re: How to modify this cmd - by Boooth - 14.09.2012, 04:01
Re: How to modify this cmd - by NinjaChicken - 14.09.2012, 04:11
Re: How to modify this cmd - by Deal-or-die - 14.09.2012, 04:19
Re: How to modify this cmd - by Boooth - 14.09.2012, 04:23
Re: How to modify this cmd - by NinjaChicken - 14.09.2012, 04:51
Re: How to modify this cmd - by Deal-or-die - 14.09.2012, 05:06

Forum Jump:


Users browsing this thread: 1 Guest(s)