<CATEGORY Name="Messages">
<Entry Name="Locked">The door is locked</Entry>
<Entry Name="WeakLocked">The door is locked, but the lock is weak</Entry>
<Entry Name="BlockLocked">The door is blocked</Entry>
</CATEGORY>
<!-- DEATHHINTS -->
<CATEGORY Name="DeathHints">
</CATEGORY>
<!-- CREDITS -->
<CATEGORY Name="Ending">
<Entry Name="Credits">
</Entry>
</CATEGORY>
</LANGUAGE>
Alchemy_cellar.hps
Spoiler below!
void OnStart()
{
wakeUp();
}
void wakeUp () {
FadeOut(0); // Instantly fades the screen out. (Good for starting the game)
FadeIn(20); // Amount of seconds the fade in takes
FadeImageTrailTo(2, 2);
FadeSepiaColorTo(100, 4);
SetPlayerActive(false);
FadePlayerRollTo(50, 220, 220); // "Tilts" the players head
FadeRadialBlurTo(0.15, 2);
SetPlayerCrouching(true); // Simulates being on the ground
AddTimer("trig1", 11.0f, "beginStory"); // Change '11.0f' to however long you want the 'unconciousness' to last
}
Oh. Yup. Haha I just kinda skimmed over that part and assumed it was correct.
But labeling a non-existing map or specifying a start point that doesn't exist within the addressed map will also incur the same problem - something I have spent maybe confused hours in the past trying to fix. >_< So if you think you have everything you need and it's all setup correctly, and it's still not showing up right, try checking those out - it's normally just a really dumb spelling error. ;_;