Cant get the /veh command to work!
#1

CMD:veh(playerid, params[])
{
if(!IsPlayerLoggedIn(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You need to login first before using any command.");
if(PlayerInfo[playerid][pAdmin] < 4) return SendClientMessage(playerid, COLOR_GREY, "You are not authorized to use this command.");
ShowModelSelectionMenu(playerid, f, "->Vehicles<-");
return 1;
}

i get error 017 on "ShowModelSelectionMenu" What can i replace this with?
Reply
#2

Quote:
Originally Posted by Smikkeltoetje
Посмотреть сообщение
if(PlayerInfo[playerid][pAdmin] < 4) return SendClientMessage(playerid, COLOR_GREY, "You are not authorized to use this command.");
ShowModelSelectionMenu(playerid, f, "->Vehicles<-");
return 1;
}
are you sure ?

what you want to do with this command ? spawn a vehicle ?
Reply
#3

Well, post the menu code please.
Reply
#4

Quote:
Originally Posted by Rayan_black
Посмотреть сообщение
Well, post the menu code please.
Changed the code to this
pawn Код:
CMD:aveh(playerid, params[])
{
    if(!IsPlayerAdmin(playerid)) return 0;
    new type,color,color2,Float:cPos[4];
    if(sscanf(params, "iii", type,color,color2)) return SendClientMessage(playerid,COLOR_RED, "/aveh [model] [color] [color]");
    if(type < 400 || type > 611) return SendClientMessage(playerid,COLOR_RED, "vehicle IDs between 400 - 611!");
    if(color> 255 || color< 0) return SendClientMessage(playerid, 0xFFFFFF, "Car color ID's: 0-255");
    if(color2> 255 || color2< 0) return SendClientMessage(playerid, 0xFFFFFF, "Car color ID's: 0-255");
    GetPlayerPos(playerid, cPos[0], cPos[1], cPos[2]);
    GetPlayerFacingAngle(playerid, cPos[3]);
    CreateVehicle(type, cPos[0], cPos[1]-3, cPos[2], cPos[3], color, color2, -1);
    return 1;
}
After i try this command it suddently loads 0 vehicles in-game.
And fails to find the examplename.AMX file...
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)