06.12.2017, 08:46
Don't use "if(response)" outside of a dialog. By that I mean:
Returning zero couldn't be the problem.
PHP код:
public OnDialogResponse()
{
if(response)
{
if(dialogid == DIALOG_ID)
{
return;
}
}
return 0;
}
Quote:
|
Returning 0 in this callback will pass the dialog to another script in case no matching code were found in your gamemode's callback. |

