gokuryudragon wrote:1) how do u make a animated intro screen and menu?
2) how do u make a rpg style conversation in text boxes?
3) how do u make credits at the end and cutscenes during the middle of the game?
Wow,
those are big questions,
1. I would recomend making a menu with a bunch of different actor buttons for displaying your controls, credits, and whatever else.
when you press the start button it should load your game after you export your game,
like LoadGame("the_name_of_your_game");
2. it is difficult to do this, but when you type in somthing it should compare the strings like,
- Code: Select all
if(strncmp(text, "hello", 4) == 0)
{
you actions ect.;
}
3. for credits you can just have a moving text actor that just moves up with names ect. (I make all the parts of my game though...
)
and for cutscenes just make the animation of your actor ect.
I am sorry to be so brief,
but there is so much to do with this.
if you need further help let me know and I can go into more depth on this topic.