PostalOut:OnSteal

From GECK
Jump to: navigation, search

An event handler added by the PostalOut Plugin version 0.002.

Description

This event handler runs when the player steals something, at the same frequency as the karma loss(es) caused by the theft.

Syntax

Use SetEventHandler / SetEventHandlerAlt with the event name "PostalOut:OnSteal". No arguments are required other than the UDF script.

Handler Script

A skeleton handler script for this event:

scn OnPlayerStealUDF


begin Function { }

    print "The player stole something!"

end