- Found in:
- Vanilla
eventOnPickpocketFailed()
Description
Wiki Description
Event sent when the player fails to pickpocket this actor.
Documentation Comment
Received when the player fails to pickpocket this actor
Examples
; Event is sent to the player
Event OnPickpocketFailed()
Debug.Trace("Player failed to pickpocket us - we should probably thwap him")
endEventAuto-Generated Example
Scriptname MyCoolScript extends Actor
event OnPickpocketFailed()
Debug.trace("Event received - OnPickpocketFailed")
endEvent