Main Menu
  • Welcome to The RPG Maker Resource Kit.

Are there any RGSS 3 tutorials yet?

Started by DoctorTodd, December 30, 2011, 12:40:46 AM

0 Members and 1 Guest are viewing this topic.

DoctorTodd

Lately I've thought of some good scripting ideas and I probably wont be scripting until I upgraded from VX to VXA. I know there are RGSS and RGSS 2 tutorials but are there any RGSS 3 tutorials yet?

DoctorTodd

So i take it there aren't any? It would be nice to know rgss 3 for vxa.

Adrien

no rpg maker vx  ace just came out....the best way to learn, which is how I am trying to learn is just do...find something, change it and go from there.

DoctorTodd


seitensei

A lot of the material in the RMVX help file is still valid.

Adrien


seitensei

If you are fluent in Japanese, yeah. But most of the content from RGSS2 still apply.

DoctorTodd

I might try a RGSS 2 tutorial and just look at the differences.

LoganF

You could also take a look at generic Ruby tutorials too, especially if you want to familiarise yourself with how to program in Ruby. The difference between VX and VXA in regards to Ruby, is that VX uses Ruby version 1.8.1 and VXA uses version 1.9.2 which has a number of different features - most of which aren't taught or even shown through the RM help files (mostly additional methods belonging to the base classes like Object, Class and Module).

For the most part, if you know how to use RGSS2 you won't have any real trouble with RGSS3. The real task comes in having to look through the default scripts to see where the things in RGSS2 are in 3. Some things were kept the same, but there's a lot of things that were split up into new classes or moved to a different class found in RGSS2.

So yeah, first I'd check out Ruby tutorials and guides to get a good idea about programming, both specifically in Ruby and in general. Then, I would have a go with RGSS2 and try to implement your ideas with that especially the more simpler sounding ones.

Here's somewhere you can go to get some good information:

http://www.ruby-lang.org/en/

This is the Ruby website that you get referred to by the RM Help file.

http://ruby-doc.org/docs/ProgrammingRuby/html/index.html

And this one is a good read that tells you about Objects (which is a key topic you should understand) as well other general things like Variables and Classes and more Ruby specific things like syntax and code layout. If you go through this from start to finish, even if there's parts you don't quite understand (don't worry too much about using WINAPI with Ruby as that's a more advanced thing, for example) you'll probably have a good advantage for when you start scripting for VXA.
(Why do I always feel like it's the end of the world and I'm the last man standing?)

DoctorTodd