Dialog response doesn't work
#5

On the top of your gamemode put this:
pawn Код:
#define WARPS 40041
Command:
pawn Код:
CMD:warps(playerid, params[])
{
    {
        ShowPlayerDialog(playerid, WARPS, DIALOG_STYLE_LIST, "{008000}- {FFFFFF}Warps{008000} - {FFFFFF}", "Garage\nStation", "Warp", "Annuleer");
        return 1;
    }
}
Under
pawn Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
Put this:
pawn Код:
if(dialogid == WARPS) // Dialog
    {
      if(response)
         {
         if(listitem == 0)// (ID: 0)
         {
         SetPlayerPos(playerid, 1980.3363, 1765.5774, 11.6543);
         }
         if(listitem == 1) // (ID: 1)
         {
         SetPlayerPos(playerid, 2766.8821, 1774.3678, 10.8203); //Station
        }
      }
    }
If there no other dialogs then put this full OnDialogResponse:
pawn Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
    if(dialogid == WARPS) // Dialog
    {
      if(response)
         {
         if(listitem == 0)// (ID: 0)
         {
         SetPlayerPos(playerid, 1980.3363, 1765.5774, 11.6543);
         }
         if(listitem == 1) // (ID: 1)
         {
         SetPlayerPos(playerid, 2766.8821, 1774.3678, 10.8203); //Station
            }
        }
    }
    return 1;
}
Reply


Messages In This Thread
Dialog response doesn't work - by MarkenFrank1 - 14.02.2014, 12:44
Re: Dialog response doesn't work - by Avi Raj - 14.02.2014, 12:47
Re: Dialog response doesn't work - by MarkenFrank1 - 14.02.2014, 13:00
Re: Dialog response doesn't work - by MarkenFrank1 - 14.02.2014, 14:02
Re: Dialog response doesn't work - by GBLTeam - 14.02.2014, 14:12
Re: Dialog response doesn't work - by Teemo - 14.02.2014, 14:15
Re: Dialog response doesn't work - by MarkenFrank1 - 14.02.2014, 15:56
Re: Dialog response doesn't work - by GBLTeam - 14.02.2014, 16:16
Re: Dialog response doesn't work - by MarkenFrank1 - 14.02.2014, 16:52
Re: Dialog response doesn't work - by Teemo - 14.02.2014, 17:42

Forum Jump:


Users browsing this thread: 3 Guest(s)