Hi! Welcome to the forum for Platinum Arts Sandbox Free 3D Game Maker. I currently have the forums locked as I am attempting to properly update them.

In the meantime please join the new Discord Server!

If you have any questions please e-mail me through the Platinum Arts website.

Changing Stats and Extra Features

Having issues not related to a specific Sandbox game mode? Get help here!
Please also read the rules for support when posting support requests.
Failure to comply with the forum rules may result in your topic being locked without resolution.
Locked
User avatar
Leo_V117
Support Team
Support Team
Posts: 1640
Joined: February 16th, 2010, 8:00 pm
Name: Leo
IRC Username: Leo_V117
Location: That one place...
Contact:

Changing Stats and Extra Features

Post 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
User avatar
Venima
Support Team
Support Team
Posts: 259
Joined: February 17th, 2010, 4:56 am
Name: Tombstone
IRC Username: Venima
Location: Somewhere in the eternal planes between the living and the dead

Re: Changing Stats and Extra Features

Post 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
]
Tombstone's Tournament round 2 has begun! Tombstone's Posting Tournament

Try out my: CFG Easy Text Editor (Note: still in beta)

-----Venima
Image
Image
User avatar
Leo_V117
Support Team
Support Team
Posts: 1640
Joined: February 16th, 2010, 8:00 pm
Name: Leo
IRC Username: Leo_V117
Location: That one place...
Contact:

Re: Changing Stats and Extra Features

Post by Leo_V117 »

Thanks Venima, i can set up my own menus though, just rebuilding existing menus is the hard part.
User avatar
Venima
Support Team
Support Team
Posts: 259
Joined: February 17th, 2010, 4:56 am
Name: Tombstone
IRC Username: Venima
Location: Somewhere in the eternal planes between the living and the dead

Re: Changing Stats and Extra Features

Post by Venima »

you know that code adds buttons to the main menu right?
Tombstone's Tournament round 2 has begun! Tombstone's Posting Tournament

Try out my: CFG Easy Text Editor (Note: still in beta)

-----Venima
Image
Image
User avatar
Leo_V117
Support Team
Support Team
Posts: 1640
Joined: February 16th, 2010, 8:00 pm
Name: Leo
IRC Username: Leo_V117
Location: That one place...
Contact:

Re: Changing Stats and Extra Features

Post by Leo_V117 »

Yeah... What about it?
User avatar
Venima
Support Team
Support Team
Posts: 259
Joined: February 17th, 2010, 4:56 am
Name: Tombstone
IRC Username: Venima
Location: Somewhere in the eternal planes between the living and the dead

Re: Changing Stats and Extra Features

Post by Venima »

just making sure you knew
Tombstone's Tournament round 2 has begun! Tombstone's Posting Tournament

Try out my: CFG Easy Text Editor (Note: still in beta)

-----Venima
Image
Image
Locked