note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
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.
Name | Description |
---|---|
playerid | The 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
}
Related Functions
- GetPlayerDialogData: Get the data of the dialog currently show to the player.
- ShowPlayerDialog: Shows the player a synchronous (only one at a time) dialog box.
Related Callbacks
- OnDialogResponse: Called when a player responds to a dialog.