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.

How to do/ Feature request

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
daltonds1
Member
Member
Posts: 368
Joined: September 13th, 2010, 12:26 am
Name: Dalton
IRC Username: Daltonds1
Location: Tomball, Texas

How to do/ Feature request

Post by daltonds1 »

Wondering if there are any scripts for the following

*When game starts up theres a Login/Registar
*Leveling up system and XP
*Horse Riding
*Advanced inv(Like in real game where its boxes and pics inside etc)
owenisred
Member
Member
Posts: 452
Joined: August 9th, 2010, 9:33 am
Name: Owen

Re: How to do/ Feature request

Post by owenisred »

What game mode are you using? RPG_Mode I believe has a form of experience and leveling up I think (Just go into a map and hit tab, and you should see your character's stats)
When game starts up theres a Login/Registar
Eh? Like saved games, or actually logging in/registering like you have done for these forums?
Horse Riding
The best I could come up with was here: viewtopic.php?f=15&t=1717
Advanced inv(Like in real game where its boxes and pics inside etc)
Again what mode do you use?

Hope I helped,
Owen.
I'm taking modelling requests again - any models you want created,skinned or animated (or all 3) leave a post here:

viewtopic.php?f=9&t=2704&start=0

My tutorial site - still under construction, but lots of good stuff there:

http://pasandbox.webs.com/
chocolatepie33
Support Team
Support Team
Posts: 2458
Joined: April 27th, 2010, 5:31 pm
IRC Username: CP

Re: How to do/ Feature request

Post by chocolatepie33 »

DamienJ, the creator of The Golden Coin, may know about these.
Julius wrote:Contribute to http://www.opengameart.org NOW!
Save the wiki!
arcones
Support Team
Support Team
Posts: 2734
Joined: January 13th, 2010, 12:42 pm
Name: Timothy
IRC Username: I use Steam
Location: Looking over your shoulder...
Contact:

Re: How to do/ Feature request

Post by arcones »

daltonds1 wrote:Wondering if there are any scripts for the following

*When game starts up theres a Login/Registar
*Leveling up system and XP
*Horse Riding
*Advanced inv(Like in real game where its boxes and pics inside etc)
1. A Login/Register is feasible but complex. If you want more than one profile (which is all Sandbox has) to be able to login, then you'd need to add an extra name/account to Sandbox. I've had a theory about it, but I haven't had the time to check it out. I'd recommend looking at the script for the initial login to Sandbox.
Go to your Sandbox folder. Enter Data>lang>en>menus. If you don't want to look at it yourself here it is:

Code: Select all

newgui intro [
    guitext "This is your first time running PAS"
    guitext "This menu is designed to help you familiarise yourself with the game"
    guitext "Click the box below and enter a name, once done, press Enter"
    guibar
    newname = (getname)
    guifield newname 18 [name $newname]
    guibar
    guitext "This is a check box, click it to toggle an option"
    guitext "In this example, it'll swicth between 2D and 3D menus, so choose the one you like"
    guitext "Don't worry, you can always change it later"
    guicheckbox "2D, or 3D GUI" gui2d
    guibar
    guibutton "Next" "showgui intro2"
]
Notice the newname = (getname) and the guifield etc etc. That will be crucial if you want to make a login.

2. Leveling up and XP are currently being worked on in the development version of Sandbox. Meaning it will be addressed.

3. Owen's answer for this is correct: Horse-riding

4. To make an advanced inventory, you'll need a good grip on the commands of CubeScript. Menu's in general are easy to script, but with pictures and boxes, it will require a better handling of CS.)
GUI Menu Commands
Scripting Commands

I believe those will answer your questions.
Have a good one,
Arcones
Image
Want a user bar like this one? PM Leo!
chocolatepie33
Support Team
Support Team
Posts: 2458
Joined: April 27th, 2010, 5:31 pm
IRC Username: CP

Re: How to do/ Feature request

Post by chocolatepie33 »

If you want to kill 2 birds with one stone, learn the basics of C++. Cubescript is very much like C++.
Julius wrote:Contribute to http://www.opengameart.org NOW!
Save the wiki!
Locked