[ACE] Changing message scroll speed

● ARCHIVED · READ-ONLY
Started by iMaple 5 posts View original ↗
  1. Hello guys, I noticed that in many parts in my game the scroll speed of text (outside of battle) was too fast. So I went into the script editor, changed 
     

      #--------------------------------------------------------------------------
      # * Get Scroll Speed
      #--------------------------------------------------------------------------
      def scroll_speed
        $game_message.scroll_speed * (show_fast? ? 1 : 0.5)
      end
     
    (line 74 under window_scrolltext)
     
    to
     

      #--------------------------------------------------------------------------
      # * Get Scroll Speed
      #--------------------------------------------------------------------------
      def scroll_speed
        $game_message.scroll_speed * (show_fast? ? 0.5 : 0.25)
      end
     
    for no avail. Text speed did not change, even with extreme values like 100 or 0.001. I even removed the snipped entirely, but nothing happened. Adding it again as custom script did nothing either.
     
    No external scripts installed.

    Also made a new project to see if it is project related, but I got the same results.
     
    I'd greatly appreciate it if anyone could help me fix this issue.
  2. Did you by any chance forgot to save?
  3. Saved it each time I made an edit, once even restarted Ace after a change. Or is there any other save option I missed besides in the script editor and the project itself?
  4. The place you need to change the scroll speed is in game_message. What you are doing is changing the speed of when the player presses a key to enable the fast scroll.

    The line to change is line 50 @scroll_speed = 2.
  5. Thanks a lot Sarlecc, that solved it.