19 lines
454 B
Plaintext
19 lines
454 B
Plaintext
Scriptname _00E_QuestStartTrigger extends ObjectReference
|
|
Quest Property StartQuest Auto
|
|
int DoOnce
|
|
bool Property SetStage Auto
|
|
int Property DesiredStage Auto
|
|
|
|
Event OnTriggerEnter(ObjectReference akActionRef)
|
|
if(akActionRef == Game.GetPlayer())
|
|
if ( DoOnce == 0 )
|
|
StartQuest.Start()
|
|
;Debug.Notification("Quest gestartet.")
|
|
DoOnce = 1
|
|
if SetStage == true
|
|
StartQuest.SetCurrentStageID(DesiredStage)
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
EndEvent |