ShowOff:OnReadBook

From GECK
Jump to: navigation, search

An event handler added by the ShowOff NVSE Plugin version 1.60.

Description

This event runs after a Book is read, but before the UI message for it is queued.

The calling reference will always be the player.

The 1st (and only) UDF arg is the book BaseForm.

Syntax

Use SetEventHandler / SetEventHandlerAlt with the event name "ShowOff:OnReadBook".

Handler Script

A skeleton handler script for this event:

scn OnReadBookUDF

ref rBaseItem

begin Function { rBaseBook }

    ; GetSelf = player

    printvar rBaseBook 

    print "OnReadBook UDF>> RAN!"

end

See Also