Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 Control Panel
#1
Control Panel
RGSS2 .02
(My First VX Script
:-D)


Introduction

Inserts a control panel allowing RPG Maker VX users to easily change game settings.

Features
  • Framerate Control (100 FPS, as long as you can handle it (;p))
  • Resolution Change (You might need to adjust the other scripts as well)
  • Font Control (Allow it? Name? Size? Color?)

  • Windowskin Control
  • Transition Control (Use more than one transition!)
  • Test Control (I just added this for fun)
Screenshots
No screenshots. Experiment on it and see what it does.

Script
Code:
=begin
================================================================================
----------[RGSS2 Control Panel]-------------------------------------------------
  Place carefully, under Scenes(Shop system, CMS, etc.), Misplacement can cause
  overrides to clash with custom scripts.
  Might not work with a lot of scripts because it rewrites many base commands.
--------------------------------------------------------------------------------
  RPG Maker VX - RGSS2 Control Panel
  12 Jun 08 - Decibel
================================================================================
=end
module Control
  
  #==========================================================================#
  #  Basic Game Settings                                                     #
  #--------------------------------------------------------------------------#
  # *Screen sizes require adjustments. I recommend using a resolution script #
  #  instead.                                                                #
  #==========================================================================#
  FrameRate = 60                      # Game Frames-Per-Second(FPS)
  #--------------------------------------------------------------------------#
  XScreenSize = 544                   # *Screen Width
  YScreenSize = 416                   # *Screen Height
  #--------------------------------------------------------------------------#
  FontChange = false                  # Set to true to control font
                                      # If font doesn't exist, the script will
                                      # redirect the game to the default RGSS2
                                      # Font (UmePlus Gothic).
  FontName = "Arial"                  # Font Name
  FontSize = 24                       # Font Size
  #--------------------------------------------------------------------------#
  Windowskin = "Window"               # Windowskin name
  #--------------------------------------------------------------------------#
  TransitionAble = true               # If true, all scenes have transition
                                      # If false, use default
  Transition = "BattleStart"          # Transitions
  TFrames = 15                        # Transition time (in frames)
                                      # Will still be used even if
                                      # TransitionAble is set to false
  
  #==========================================================================#
  #  Windowskin block colors.                                                #
  #--------------------------------------------------------------------------#
  #  Same color code as in Message Box (\c[##]).                             #
  #==========================================================================#
  NormalColor = 0
  SystemColor = 16
  CrisisColor = 17
  KOColor = 18
  GaugeBackColor = 19
  HPGaugeColor1 = 20
  HPGaugeColor2 = 21
  MPGaugeColor1 = 22
  MPGaugeColor2 = 23
  PowerUpColor = 24
  PowerDownColor = 25
  
  #==========================================================================#
  #  Test Control Area                                                       #
  #--------------------------------------------------------------------------#
  #  Set to true to keep Test mode on, set to false to keep Test mode off.   #
  #==========================================================================#
  
  TestControl = false      #Turns on the Test Control
  TestMode = false         #Only affects the game if TestControl is set to true
  
end
=begin
================================================================================
  End Control Panel Area
--------------------------------------------------------------------------------
  Please do not edit further than this unless you know what you're doing.
  You probably do, because this is like the most easiest script to understand.
================================================================================
=end
begin
  Graphics.resize_screen(Control::XScreenSize,Control::YScreenSize)
  Graphics.frame_rate = Control::FrameRate
  if Control::TestControl = true
    $TEST = Control::TestMode
  end
end
class Scene_Base
  def perform_transition
    if Control::TransitionAble == true
      Graphics.transition(Control::TFrames, "Graphics/System/" + Control::Transition.to_s, 80)
    else
      Graphics.transition(Control::TFrames)
    end
  end
end
class Font
  alias font_fix_initialize initialize
  def initialize
    font_fix_initialize
    if Control::FontChange == true
      if Font.exist?(Control::FontName)
        self.name = Control::FontName
        self.size = Control::FontSize
      else
      end
    end
  end
end
class Window_Base
  def initialize(x, y, width, height)
    super()
    self.windowskin = Cache.system(Control::Windowskin)
    self.x = x
    self.y = y
    self.width = width
    self.height = height
    self.z = 100
    self.back_opacity = 200
    self.openness = 255
    create_contents
    @opening = false
    @closing = false
  end
  def normal_color
    return text_color(Control::NormalColor)
  end
  def system_color
    return text_color(Control::SystemColor)
  end
  def crisis_color
    return text_color(Control::CrisisColor)
  end
  def knockout_color
    return text_color(Control::KOColor)
  end
  def gauge_back_color
    return text_color(Control::GaugeBackColor)
  end
  def hp_gauge_color1
    return text_color(Control::HPGaugeColor1)
  end
  def hp_gauge_color2
    return text_color(Control::HPGaugeColor2)
  end
  def mp_gauge_color1
    return text_color(Control::MPGaugeColor1)
  end
  def mp_gauge_color2
    return text_color(Control::MPGaugeColor2)
  end
  def power_up_color
    return text_color(Control::PowerUpColor)
  end
  def power_down_color
    return text_color(Control::PowerDownColor)
  end
end
Instructions
Place the script above all other scripts. Scripts placed above this script may not be affected by or could override this script

FAQ
None yet.

Compatibility
None yet.

Terms and Conditions
Free for use in non-commercial & commercial projects.
Just don't forget to add me in your credits list (;p)
Reply }


Possibly Related Threads…
Thread Author Replies Views Last Post
   Calypso Battle-Tint Control DerVVulfman 0 4,109 06-07-2012, 03:48 AM
Last Post: DerVVulfman
   Victor Engine - Followers Control Victor Sant 0 3,899 03-21-2012, 04:03 AM
Last Post: Victor Sant
   Victor Engine - Trait Control Victor Sant 0 4,110 01-13-2012, 09:36 PM
Last Post: Victor Sant
   Victor Engine - Control Codes Victor Sant 0 3,716 01-12-2012, 03:38 AM
Last Post: Victor Sant
   Victor Engine - Character Control Victor Sant 0 4,573 01-04-2012, 09:54 AM
Last Post: Victor Sant
   Victor Engine - Control Text Victor Sant 0 3,915 01-04-2012, 08:12 AM
Last Post: Victor Sant
   Battle Animation 'Flip' Control DerVVulfman 0 4,619 03-05-2008, 06:45 AM
Last Post: DerVVulfman
   Command Control Claihm 0 4,398 03-04-2008, 05:35 AM
Last Post: Claihm



Users browsing this thread: