1r2> I can't find any attempt to save or load anything in the scripts. Also I can't find any save or load button. Where it is supposed to be?
My other notes:
1. Character chat exit should return player on the place where he entered the chat = level file should jump to the frame where the character is.
Didn't I implemented something like start point in previous version?
Means that for example MainHall floor 2:
Rio button should have also statement:
_root.startpoint = "mh2_rio";
Tanya button should contain
_root.startpoint = "mh2_tanya";
The first frame of the level should have frame script:
if (_root.startpoint == "mh2_rio")
{
gotoAndStop("2c");
}
else
{
gotoAndStop("2a");
}
Tanya is right in the "2a" frame so no need for condition for her.
Map button for any level using start points should clear the variable by _root.startpoint = "none"; just for sure that old value doesn't interfere.
2. Main Hall levels could have "Back to elevator" button jumping player in front of elevator for easier navigation.
3. Previous HTH beta Jezzel sprite looked better than current version. I hoped she could be saved.