11.10.2011, 13:30
ja resolvi aki,, mais agora estou com problema quando estou no jogo q seleciono uma opзгo nгo altera a skin .... olha ae o como coloquei....
comando:
Jб Testei setplayerskin e ficou do mesmo jeito
comando:
pawn Код:
if(strcmp(cmdtext, "/skins", true) == 0)
{
ShowPlayerDialog(playerid, 1241, DIALOG_STYLE_LIST, "Teleportes", "TPD1\nTPD2\nTPD3\nTPD4\nTPD5\nTPD6", "Seleciona", "Cancela");
return 1;
}
pawn Код:
if(dialogid == 1241)
{
if(response == 0)
{
if(listitem == 0)
{
PlayerInfo[playerid][pSkin] = 101;
return 1;
}
if(listitem == 1)
{
PlayerInfo[playerid][pSkin] = 101;
return 1;
}
if(listitem == 2)
{
PlayerInfo[playerid][pSkin] = 101;
return 1;
}
if(listitem == 3)
{
PlayerInfo[playerid][pSkin] = 101;
return 1;
}
if(listitem == 4)
{
PlayerInfo[playerid][pSkin] = 101;
return 1;
}
if(listitem == 5)
{
SetPlayerSkin(playerid, 200);
return 1;
}
}
}