11.10.2011, 04:52
tentei colocar aki mais n consegui criei um comandos para abrir a dialog list e depois nos itens coloquei pra setar skin setplayerskin quando copilo da 26 erros o q me diz?
usei assim:
usei assim:
PHP код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(cmd, "/skins", true) == 0
{
ShowPlayerDialog(playerid, 1241, DIALOG_STYLE_LIST, "Teleportes", "TPD1\nTPD2\nTPD3\nTPD4\nTPD5\nTPD6", "Seleciona", "Cancela");
return 1;
}
PHP код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == 1241)
{
if(response == 0)
{
if(listitem == 0)
{
SetPlayerSkin(playerid, 270);
return 1;
}
if(listitem == 1)
{
SetPlayerSkin(playerid, 277);
return 1;
}
if(listitem == 2)
{
SetPlayerPos(playerid, coordX, coordY, coordZ);
return 1;
}
if(listitem == 3)
{
SetPlayerSkin(playerid, 124);
return 1;
}
if(listitem == 4)
{
SetPlayerSkin(playerid, 101);
return 1;
}
if(listitem == 5)
{
SetPlayerSkin(playerid, 200);
return 1;
}
}
}
}