Quote:
Originally Posted by iLearner
PHP код:
if(dialogid == D_SET)
{
if (response)
{
switch (listitem)
{
case 0:
{
PlayerInfo[ playerid ][ SET ] = 0;
GiveSet(playerid, 0);
SendClientMessage(playerid, -1, "You got this set");
}
ShowPlayerDialog( playerid, D_SET, DIALOG_STYLE_LIST, "Set", "Standard Set", "Select", "Cancel" );
}
}
}
if(dialogid == D_TELE)
{
if(response)
{
switch (listitem)
{
case 0:
{
SetPlayerPos(playerid, 2048.1663,-2261.8228,18.5524);
SetPlayerFacingAngle(playerid, 147.1641);
SetPlayerInterior(playerid,0);
SetCameraBehindPlayer(playerid);
SendClientMessage(playerid, -1, "Teleported");
}
}
}
}
Since both dialogs have 1 list item only, so whenever you'll open the dialog & select first item it will do the action according to the dialog (in case 2 it will teleport you).
|
Problem is same, whenever i choose 1st weapon set i got teleported to case 0;