Spoiler
Scriptname SCoLTheLuggageInnsActivatorScript extends ObjectReferenceSCoLTheLuggageQuestScript Property QuestRef AutoQuest Property SCoLTheLuggageQuest AutoObjectReference bedObjectReference theLuggageEvent OnCellAttach()RegisterForUpdate(1)EndEventEvent OnUpdate()bed = QuestRef.SCoLBedAlias.GetReference()theLuggage = QuestRef.SCoLTheLuggageAlias.GetReference()if(bed.GetActorOwner() == Game.GetPlayer().GetActorBase())theLuggage.enable()UnregisterForUpdate()endifEndEvent
Which references the quest SCoLTheLuggageQuest, which has the following script, as well as appropriate alias'
Spoiler
Scriptname SCoLTheLuggageQuestScript extends QuestAlias Property SCoLTheLuggageAlias AutoAlias Property SCoLBedAlias Auto
Which gives me the following error:
Spoiler
Starting 1 compile threads for 1 files...Compiling "SCoLTheLuggageInnsActivatorScript"...c:\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\SCoLTheLuggageInnsActivatorScript.psc(18,29): GetReference is not a function or does not existc:\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\SCoLTheLuggageInnsActivatorScript.psc(19,43): GetReference is not a function or does not existNo output generated for SCoLTheLuggageInnsActivatorScript, compilation failed.Batch compile of 1 files finished. 0 succeeded, 1 failed.Failed on SCoLTheLuggageInnsActivatorScript
Even though http://www.creationkit.com/GetReference_-_ReferenceAlias is clearly a function of a http://www.creationkit.com/ReferenceAlias_Script script.
Any idea what's up? I'm stumped.


