New account registration is temporarily disabled.

YANFLY ACE BATTLE SYSTEM

Posts

Pages: 1
I cab't unerstand how to find a copy able version of the script, right now it's a .rb file and I don't udnerstand how to open it. Can someone please tell me how to? I really would like to be able to use these scripts I got, but can't figure out how.
.rb files are plain text Ruby script files. You can open them with any text editor, I recommend Notepad++ as it has syntax highlighting for Ruby files.

To use it in RPG Maker you can either copy the script into the script editor or copy the .rb file into your game folder and add this line to the script editor:
load("scripts/script.rb")


The folder name is whatever folder you put it in under your main game folder. For example if you made a folder in your game's Data folder and called it 'Scripts' then you'd do:
load("Data/Scripts/script.rb")

Replace script.rb with the name of the script file.

Both ways (copying it into the script editor or a load command) work essentially the same. Pick whatever you want to load the script.
Pages: 1