Weird dialogs not shows up - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Weird dialogs not shows up (
/showthread.php?tid=312698)
Weird dialogs not shows up -
MSI - 22.01.2012
Код:
if(dialogid == DIALOG_CLASS)
{
if(!response) return ShowPlayerDialog(playerid, DIALOG_CLASS, DIALOG_STYLE_LIST, "Choose your Class", "Assault 1\nSniper 2\nMedic 3\nFlame Thrower 4\nPilot 5\nEngineer 6\nSpy 7\nScout 8", "Next", "");
return 1; switch(listitem)
{
case 0:
{
ShowPlayerDialog(playerid, DIALOG_ASSAULT, DIALOG_STYLE_MSGBOX, "Class Information", "Information...", "Choose", "Back");
}
}
}
if(dialogid == DIALOG_ASSAULT)
{
if(response)
{
GivePlayerWeapon(playerid, 23, 200);
SetPlayerHealth(playerid, 75);
}
else return ShowPlayerDialog(playerid, DIALOG_CLASS, DIALOG_STYLE_LIST, "Choose your Class", "Assault 1\nSniper 2\nMedic 3\nFlame Thrower 4\nPilot 5\nEngineer 6\nSpy 7\nScout 8", "Next", "");
}
return 1;
}
It must be show when pressing Next..? Or wrong response?
Re: Weird dialogs not shows up -
Konstantinos - 22.01.2012
pawn Код:
public OnDialogResponse( playerid, dialogid, response, listitem, inputtext[ ] )
{
switch( dialogid )
{
case DIALOG_CLASS:
{
if( !response ) return ShowPlayerDialog(playerid, DIALOG_CLASS, DIALOG_STYLE_LIST, "Choose your Class", "Assault 1\nSniper 2\nMedic 3\nFlame Thrower 4\nPilot 5\nEngineer 6\nSpy 7\nScout 8", "Next", "");
if( response )
{
switch( listitem )
{
case 0:
{
ShowPlayerDialog(playerid, DIALOG_ASSAULT, DIALOG_STYLE_MSGBOX, "Class Information", "Information...", "Choose", "Back");
return 1;
}
}
}
}
case DIALOG_ASSAULT:
{
if( response )
{
GivePlayerWeapon(playerid, 23, 200);
SetPlayerHealth(playerid, 75);
return 1;
}
else return ShowPlayerDialog(playerid, DIALOG_CLASS, DIALOG_STYLE_LIST, "Choose your Class", "Assault 1\nSniper 2\nMedic 3\nFlame Thrower 4\nPilot 5\nEngineer 6\nSpy 7\nScout 8", "Next", "");
}
}
return 0; // If you are using it inFilterScript
/*
return 1;
*/// if you are using it in Gamemode
}
Re: Weird dialogs not shows up -
MSI - 22.01.2012
Thnx Dwane
Re: Weird dialogs not shows up -
Konstantinos - 22.01.2012
No Problem MSI!