Quote
**
...map...
...If there is a work around I would love to see it.
**
At minimum:
StartGame.cet:->EngineCall:NewGame, fade effect(required).
NewGame: Empty, see Explaination.
Main.cet:->TeleportTo:UntitledMap.cma
THs will take you to a map where you can have animations, one catch you must devise aa system to route you to the proper location, this will take you the longest to figure out....
There are about 4 different ideas i came up with...here is the most ugly/obvious yet effective.
Use NPCs make them static and passive, 1hp, with a death event that teleports the player to the start of the game/open save dialogs etc. for options that can be quit and then re-entered(save/load actions) add in a wait action, this will buy the engine time to spawn a new similar NPC at the same location. The con the user will definitely notice the little one that floats up and away from the NPC...failure to add a wait action will result in x,y spawning error because kinda like physics "the same matter cannot occupy the same space at the same time" or some variety of that notion.
------------
Explaination: You'll probably end up leaving the NewGame event empty unless you want the Player to pick their CLass/Race first before even seeing the title credits, its perfectly alright...don't conform to the masses, turn the industry on its ears.
the very limited solutions:
configure a MainLocation: If you were going to use the standard dialogs anyway...do this. Which are static to begin with.
Create your class selection graphics etc, set it up like so:
they click on the name of the class and an event link fires it changes all the necessary stats,initial equipment,money etc.
and a modify stamp action occurs and changes the picture of the class.
This way the player gets a chance to back out of a selection, and add an okay button. If you had a lot of classes you simply
substitued the class files for event files that do the same thing however the player will have the default skill table.
Of course if you want to maintain animation for this stage you'll end up using another map and more NPCs.
------------------