Osiris/API/CharacterEnteredTrigger: Difference between revisions

From Divinity Engine Wiki
Jump to navigation Jump to search
m (Also removed link to TriggerRegisterForCharacter from description)
mNo edit summary
Line 7: Line 7:
* '''_Trigger''': the trigger in which the character entered.
* '''_Trigger''': the trigger in which the character entered.
===== Notes =====
===== Notes =====
* If you [[Osiris/API/TriggerRegisterForCharacter|register]] a trigger for a character while the character is currently inside the trigger, this event will also be thrown.
* If you register a trigger for a character while the character is currently inside the trigger, a [[Osiris/API/CharacterEnteredTrigger|CharacterEnteredTrigger]] event will be thrown.
* If a trigger has been registered for several characters and you wish to check which of those characters are currently in it, use the [[Osiris/Shared/DB_InRegion|DB_InRegion()]] database.
* If a trigger has been registered for several characters and you wish to check which of those characters are currently in it, use the [[Osiris/Shared/DB_InRegion|DB_InRegion()]] database.
===== See Also =====
===== See Also =====

Revision as of 14:15, 14 October 2017

Full Definition(s)
  • event CharacterEnteredTrigger((CHARACTERGUID)_Character, (TRIGGERGUID)__Trigger)
Description

Thrown when a character enters a trigger that was registered for it previously.

Parameters
  • _Character: the character that entered the trigger.
  • _Trigger: the trigger in which the character entered.
Notes
  • If you register a trigger for a character while the character is currently inside the trigger, a CharacterEnteredTrigger event will be thrown.
  • If a trigger has been registered for several characters and you wish to check which of those characters are currently in it, use the DB_InRegion() database.
See Also