Advertisement
Guest User

SETTINGS: Shortcuts

a guest
Nov 19th, 2012
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 1.40 KB | None | 0 0
  1. #==============================================================================
  2. # ** Game_System
  3. #------------------------------------------------------------------------------
  4. #  This class handles system data. It saves the disable state of saving and
  5. # menus. Instances of this class are referenced by $game_system.
  6. #==============================================================================
  7.  
  8. class Game_System
  9.   #--------------------------------------------------------------------------
  10.   # * Public Instance Variables
  11.   #--------------------------------------------------------------------------
  12.   #--------------------------------------------------------------------------
  13.   # * Object Initialization
  14.   #--------------------------------------------------------------------------
  15.   def init_shortcuts
  16.     $game_message.add_shortcut(":blanc", '\nm[Blanc]\nc[bbffbb]\ignr')
  17.     $game_message.add_shortcut(":junket", '\nm[Junket]\nc[bbbbff]\ignr')
  18.     $game_message.add_shortcut(":ashure", '\nm[Ashure]\nc[ffbbbb]\ignr')
  19.     $game_message.add_shortcut(":figgy", '\nm[Figgy]\nc[ffffff]\ignr')
  20.     $game_message.add_shortcut(":npc1", '\nc[ccddee]\ignr')
  21.     $game_message.add_shortcut(":npc2", '\nc[eeeeee]\ignr')
  22.     $game_message.add_shortcut(":chancellor", '\nm[Chancellor]\nc[7777cc]\ignr')
  23.     $game_message.add_shortcut(":king", '\nm[Lord High Chief King of the Realm]\nc[ee8888]\ignr')
  24.   end
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement