12.01.2010, 13:34
Substitua po este e adapte a seu jeito:
pawn Code:
//Topo
#define DialogoID 32//substitua o 32 por um id que vocк ainda nгo usou ou deixe 32 mesmo
//OnPlayerCommandText
if(strcmp(cmd, "/skin", true) == 0)
{
if(IsPlayerInRangeOfPoint(playerid, 10.0, X, Y, Z) == 0)//Substitua X, Y, Z pelas suas coordenadas
{
ShowPlayerDialog(playerid, DialogoID,DIALOG_STYLE_LIST, "Skins", "CJ\nGangster", "OK", "CANCELAR");
}
return 1;
}
//OnPlayerDialogResponse
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == DialogoID)
{
switch(listitem)
{
case 0: SetPlayerSkin(playerid, 1);
case 1: SetPlayerSkin(playerid, 102);
}
return 1;
}
return 0;
}