Event id for aborting dialogue with a NPC by moving out of range. Calls the OnDialogAbortCallback.
-- Create a functionlocal dialogAbort = function() osrs.print("Leaving Dialog")end-- Subscribe to the functionosrs.Events.subscribe(dialogAbort, osrs.Events.ON_DIALOG_ABORT) Copy
-- Create a functionlocal dialogAbort = function() osrs.print("Leaving Dialog")end-- Subscribe to the functionosrs.Events.subscribe(dialogAbort, osrs.Events.ON_DIALOG_ABORT)
Event id for aborting dialogue with a NPC by moving out of range. Calls the OnDialogAbortCallback.
Example