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.

Help with RPG maker

Chat and ask questions about the RPG Maker Mode here.
Post Reply
germainpancabacon
Member
Member
Posts: 2
Joined: April 12th, 2015, 4:56 am
Name: Garet
IRC Username: English Muffin

Help with RPG maker

Post by germainpancabacon »

There aren't many tutorials when it comes to RPG maker. It's the game mode I want to figure out the most, but I can't find any information on it, and what I can find seems to assume that I already know the basic functions of RPG maker. It'd really help me out if you pointed me in the right direction to start, I already know how to map and all that, but I want to be able to make things like NPC's and Weapons for my character to wield, playable cutscenes and such. I would really appreciate the help, I love this program but I can't invest myself in it if I feel I can't finish what I start. I really know very little about the functions of this game besides map creation. Again, anything will be much appreciated.
Hirato
Developer
Developer
Posts: 689
Joined: May 30th, 2009, 1:23 pm
IRC Username: hirato

Re: Help with RPG maker

Post by Hirato »

You might want to grab my fork at https://github.com/Hirato/lamiae
There is an unfinished tutorial available here as well https://github.com/Hirato/lamiae/wiki/Tutorial

There is also a much older tutorial on the sandbox wiki here http://www.sandboxgamemaker.com/wiki/in ... G_tutorial
Not everything there is correct, notably the use of global variables in part 7.
This is not a url, clicking it is pointless
germainpancabacon
Member
Member
Posts: 2
Joined: April 12th, 2015, 4:56 am
Name: Garet
IRC Username: English Muffin

Re: Help with RPG maker

Post by germainpancabacon »

Hirato wrote:You might want to grab my fork at https://github.com/Hirato/lamiae
There is an unfinished tutorial available here as well https://github.com/Hirato/lamiae/wiki/Tutorial

There is also a much older tutorial on the sandbox wiki here http://www.sandboxgamemaker.com/wiki/in ... G_tutorial
Not everything there is correct, notably the use of global variables in part 7.
I really appreciate your response, and it has been a great help to me. I read through the tutorials, but I can't figure out how to set a creature's health, or the player's starting stats, nor how to add and remove stats to the game or npc's. I didn't expect I'd get a reply from the developer himself, I really appreciate that you've taken this time to help.
Hirato
Developer
Developer
Posts: 689
Joined: May 30th, 2009, 1:23 pm
IRC Username: hirato

Re: Help with RPG maker

Post by Hirato »

I forgot the form, I think it was r_char_stats_* to get to the attributes and skills of critters.
there's also r_get_skill and r_get_attr to get the adjusted value from buffs and other things.

You can access the main attributes via commands like r_char_stats_melee for the melee skill, or r_char_stats_strength for your strength attribute.
You can't set any secondary attributes explicitly, ie, maxhp, you can only set a bonus to be added onto it or subtracted from it.
If you want to look them up, for lamiae you'd do $r_char_stats_strength, but in current sandbox you have to use (r_char_stats_strength_get) - or whatever it was - I don't remember where the get goes, and I don't think the $ variant made it into 2.8.2.
As for adding skills and stats, you just set them, if you want to increase them by 5 it's as simple as r_char_stats_melee (+ $r_char_stats_melee 5)
This is not a url, clicking it is pointless
Post Reply