Difference between revisions of "OnStoryCrimeGold - Quest"
Jump to navigation
Jump to search
imported>Henning m |
imported>Zartar m |
||
Line 33: | Line 33: | ||
endEvent | endEvent | ||
</source> | </source> | ||
== Notes == | |||
*The on crime gold event starts any attached quests about 20 seconds after the offense is committed. This will cause a ~20 second delay in this event firing (as the quest has not started yet). | |||
== See Also == | == See Also == | ||
*[[Quest Script]] | *[[Quest Script]] |
Revision as of 15:10, 8 October 2012
Member of: Quest Script
Event called when this quest is started via a crime gold story manager event.
Syntax
Event OnStoryCrimeGold(ObjectReference akVictim, ObjectReference akCriminal, Form akFaction, int aiGoldAmount, int aiCrime)
Parameters
- akVictim: The ObjectReference that was victimized.
- akCriminal: The ObjectReference that committed the crime.
- akFaction: The Faction that the crime was recorded with.
- aiGoldAmount: The amount of crime gold that was logged.
- aiCrime: The type of crime that the event is for. Will be one of the following:
- -1: None
- 0: Steal
- 1: Pick-pocket
- 2: Trespass
- 3: Attack
- 4: Murder
Examples
Event OnStoryCrimeGold(ObjectReference akVictim, ObjectReference akCriminal, Form akFaction, int aiGoldAmount, int aiCrime)
if aiCrime == 1 ; Pick-pocketing
Debug.Trace(akCriminal + " got " + aiGoldAmount + " crime gold for pickpocketing " + akVictim)
endIf
endEvent
Notes
- The on crime gold event starts any attached quests about 20 seconds after the offense is committed. This will cause a ~20 second delay in this event firing (as the quest has not started yet).