- Found in:
- Vanilla
eventOnRead()
Description
Wiki Description
Event received when this the player activates a book object in the world, or "equips" it from their inventory. In other words, it is sent when the book UI opens a book.
Documentation Comment
Event received when this object, if a book, is read
Examples
Event OnRead()
Debug.Trace("The player's life is now enriched!")
endEventAuto-Generated Example
Scriptname MyCoolScript extends ObjectReference
event OnRead()
Debug.trace("Event received - OnRead")
endEvent