Перейти к основному содержимому

GetPlayerDialogID

warning

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

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 = GetPlayerDialogID(playerid);
if (dialogID != INVALID_DIALOG_ID)
{
// The player has an open dialog
}