Where would be the best place to start in terms of developing scripts? What should some one consider in developing scripts for RGSS3?
I have a sample piece of code if some one wants to review it, but I have no idea where to start with creating scripts in RGSS3
CODE
class Game_System
alias init initialize
def initialize
init
saved_bgs = nil
end
def save_bgs
@save_bgs = RPG::BGS.last
end
def replay_bgs
@saved_bgs = RPG::BGS.replay if @saved_bgs
end
end