Advertisement
nio_kasgami

Scroll_Speed System

Feb 21st, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.61 KB | None | 0 0
  1. module Nio
  2.     module Message_System_Beta
  3.        
  4.         SYSTEM ={
  5.             :scroll_speed => 1
  6.             }
  7.         end
  8. end
  9. ######################################################
  10. class Game_Message
  11.     include Nio::Message_System_Beta
  12. #
  13. # overwrite : clear
  14. #  
  15. def clear
  16.     @texts = []
  17.     @choices = []
  18.     @face_name = ""
  19.     @face_index = 0
  20.     @background = 0
  21.     @position = 2
  22.     @choice_cancel_type = 0
  23.     @choice_proc = nil
  24.     @num_input_variable_id = 0
  25.     @num_input_digits_max = 0
  26.     @item_choice_variable_id = 0
  27.     @scroll_mode = false
  28.     @scroll_speed = SYSTEM[:scroll_speed]
  29.     @scroll_no_fast = false
  30.   end
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement