Skip to main content

GetPlayerDialog

warning

This function is deprecated. Use GetPlayerDialogID.

Description

Get the ID of the dialog currently show to the player.

NameDescription
playeridThe ID of the player.

Return Values

Returns the dialog ID.

Or INVALID_DIALOG_ID if the player is not connected or has no dialog open.

Examples

new dialogID = GetPlayerDialog(playerid);
if (dialogID != INVALID_DIALOG_ID)
{
// The player has an open dialog
}