#--------------------------------------------------------------------------
# * Get Scroll Speed
#--------------------------------------------------------------------------
def scroll_speed
$game_message.scroll_speed * (show_fast? ? 1 : 0.5)
end
# * 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
# * 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.