
|
Originally Posted by BlackBlood1337
ShowPlayerDialog? Well, if it will help me, yes I do. :P
|
|
Originally Posted by BlackBlood1337
What I need to know is where to put SetPlayerPos within creating the menu.
|
if(dialogid == 1 && response);
{
SetPlayerPos(....)
}
public OnPlayerSelectedMenuRow(playerid, row)
{
new Menu:current;
current = GetPlayerMenu(playerid);
if(current == menu)
{
switch(row)
{
case 0: SetPlayerPos(...);
case 1: SetPlayerPos(...);
}
}
return 1;
}