21.01.2016, 17:15
Alguйm pode me informar como criar um comando com 2 ou mais opзхes
Ex: /irmap [1,2,3]
Ex: /irmap [1,2,3]
CMD:irmap(playerid, params[]){
new NumeroDoMapa;
if(sscanf(params, "d", NumeroDoMapa))
return SendClientMessage(playerid, -1, "USE: /irmap [NЪMERO DO MAPA].");
if(NumeroDoMapa == 1){
//SetPlayerPos(playerid, x, y, z);
}
else if(NumeroDoMapa == 2){
}
else if(NumeroDoMapa == 3){
}
else{
return SendClientMessage(playerid, -1, "USE: /irmap [NЪMERO DO MAPA] (1 AO 3).");
}
return 1;
}
CMD:irmap(playerid, params[])
{
new nmapa;
if(sscanf(params, "i", nmapa)) return SendClientMessage(playerid, -1, "Use: /irmap [num]");
switch(nmapa)
{
case 1:
{
// SetPlayerPos(playerid, x, y, z)
}
case 2:
{
// SetPlayerPos(playerid, x, y, z)
}
case 3:
{
// SetPlayerPos(playerid, x, y, z)
}
default: SendClientMessage(playerid, -1, "Numero invбlido");
}
return 1;
}