Page 1 of 1

Changing Stats and Extra Features

Posted: April 4th, 2010, 1:45 pm
by Leo_V117
Hey Guys. Heres a few questions for you:

1) How do you change the stats of a character for RPG Mode?
2) How do you set a new inventory Menu? For example: Change the "Spells" tab to "Weapons", and change the "Character" Menu to "Stats". Change the ingame menu from what it is. to something like the one in TGC.
3) How do you create a "New Game" Option that allows you to play from an unlocked level?
4) How do you create a "Save Game" and "Load Game" Option with these Features:

Save Game:
  • a) Set path for save files
    b) Save at the exact point you were stood rather than at the beginning <See load game options>
    c) Save all your inventory items at that point to prevent you from having to return to the start and pick up all your items.
Load Game:
  • a) Load game from save path
    b) Select saved game file
    c) Load All stats, inventory items, and point you were stood when you last saved
    d) Continue from last save
Thanks for your help in advance

Re: Changing Stats and Extra Features

Posted: April 4th, 2010, 5:22 pm
by Venima
For the inventory menu and stuff you'll probably have to go into the RPG mode src files. Possibly a headache.

Check this code out for the main menu gui. Getting them to work I don't know how to do though.

Code: Select all

newgui main [
	guilist [
		guilist [
			guibutton "New Game" "showgui New"
			guibutton "Save Game" "showgui Save"
			guibutton "Load Game" "showgui Load"
		]
		guibar
		guilist [
			guibutton "Unload Game UI" "newgui main [@main]"
		]
	]
	guibar
	@main
]

Re: Changing Stats and Extra Features

Posted: April 5th, 2010, 1:17 pm
by Leo_V117
Thanks Venima, i can set up my own menus though, just rebuilding existing menus is the hard part.

Re: Changing Stats and Extra Features

Posted: April 5th, 2010, 3:17 pm
by Venima
you know that code adds buttons to the main menu right?

Re: Changing Stats and Extra Features

Posted: April 5th, 2010, 4:33 pm
by Leo_V117
Yeah... What about it?

Re: Changing Stats and Extra Features

Posted: April 6th, 2010, 11:36 am
by Venima
just making sure you knew