enderalse/source/scripts/_00e_peaceweedcontrolscript.psc

16 lines
342 B
Plaintext
Raw Normal View History

Scriptname _00E_PeaceweedControlScript extends Quest
ReferenceAlias Property Alias_Player Auto
Event OnInit()
RegisterForSingleUpdate(3.0)
EndEvent
Event OnUpdate()
(Alias_Player as _00E_PeaceweedPlayerAliasScript).Setup()
EndEvent
Function StartSmoking()
(Alias_Player as _00E_PeaceweedPlayerAliasScript).StartSmoking()
EndFunction