=begin
Sideview Battle System
by Fomar0153
Version 1.0.0
Instructions
First copy this script below Materials then you need to go down to setup and
find lines like:
when 1
@battler_name = 'Ralph'
And edit these to display the name of the battler.
Battlers should be imported through the battlers section of the resource manager
You can change battlers during the game by:
$game_actors[1].battler_name = 'Slime'
I intend to build on this script so check back for updates
=end
class Game_Actor < Game_Battler
attr_accessor :battler_name
attr_accessor :battler_hue
alias side_view_setup setup
def setup(actor_id)
side_view_setup(actor_id)
@battler_name = ''
@battler_hue = 0
case actor_id
when 1
@battler_name = 'Ralph'
when 2
@battler_name = 'Ulrika'
when 3
@battler_name = 'Bennett'
when 4
@battler_name = 'Ylva'
end
end
def use_sprite?
return @battler_name != ''
end
def screen_x
return index * 20 + 400
end
def screen_y
return index * 50 + 80
end
def screen_z
return 100
end
end