- Joined
- Jul 5, 2018
- Messages
- 125
- Reaction score
- 5
- First Language
- English
- Primarily Uses
- RMVXA
I'm using a tiny script to slow the text speed down a bit so the player can better keep up with it.
class Window_Message
def wait_for_one_character
update_show_fast
wait(2)
Fiber.yield unless @show_fast || @line_show_fast
end
end
But if, at any point, I decide I want to remove this because I want the text to show up quickly or instantly, how would I issue a script command that would change "wait(2)" to "wait(0)" or longer if someone is supposed to be speaking slowly? Thanks!
class Window_Message
def wait_for_one_character
update_show_fast
wait(2)
Fiber.yield unless @show_fast || @line_show_fast
end
end
But if, at any point, I decide I want to remove this because I want the text to show up quickly or instantly, how would I issue a script command that would change "wait(2)" to "wait(0)" or longer if someone is supposed to be speaking slowly? Thanks!

