20.11.2011, 15:04
Commands Dailog Problem"s
20.11.2011, 15:07
Better to use textdraws really.
20.11.2011, 15:18
No textdraws plz help me with i need next page Tab
20.11.2011, 15:40
Sorry For Double Post
H E L P M E PLZ
H E L P M E PLZ
20.11.2011, 15:41
Use the \n.
20.11.2011, 15:43
Stop double posting
Use OnDialogResponse to detect if a player have pressed the "Next Page" button on the specific dialog ID
Use OnDialogResponse to detect if a player have pressed the "Next Page" button on the specific dialog ID
20.11.2011, 15:50
20.11.2011, 15:52
pawn Код:
// Command
ShowPlayerDialog(playerid, 10, DIALOG_STYLE_MSGBOX, "You Dialog", "commands...", "Next", "Cancel");
//in OnDialogResponse
if(dialogid == 10)
{
if(response)//button Next
{
//Page 2
ShowPlayerDialog(playerid, 10+1, DIALOG_STYLE_MSGBOX, "You Dialog", "commands 2...", "Next", "Cancel");
}
else return 1;// button close
}
20.11.2011, 15:58
thank you iKen Rep+ Added
« Next Oldest | Next Newest »
Users browsing this thread: 3 Guest(s)