RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
Are there any RGSS 3 tutorials yet?

0 Members and 1 Guest are viewing this topic.

****
Rep:
Level 71
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?

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

***
Rep:
Level 84
---> LOL <---
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.

****
Rep:
Level 71
Thanks I'll try that.

*
Rep: +0/-0Level 62
RMRK Junior
A lot of the material in the RMVX help file is still valid.

***
Rep:
Level 84
---> LOL <---
its better to use the new help file

*
Rep: +0/-0Level 62
RMRK Junior
If you are fluent in Japanese, yeah. But most of the content from RGSS2 still apply.

****
Rep:
Level 71
I might try a RGSS 2 tutorial and just look at the differences.

*
Rep:
Level 82
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?)

****
Rep:
Level 71
Thanks I'll check those out.