I'm usually not for the rapey and bug impregnation shit, some parts of this was pretty good
100% love the look of the women, makes the game really.
Anyone know how to remove the text boxes so you only see the animations?
Found this script
=begin
===============================================================================
Message Visibility by efeberk
Version: RGSS3
===============================================================================
This script will allow to player sets message window visible or unvisible with
a key.
Example : Press CTRL to hide message window and repress CTRL to show message
window.
--------------------------------------------------------------------------------
=end
module EFE
KEY = :CTRL
end
class Window_Message < Window_Base
alias efeberk_window_message_update update
def update
efeberk_window_message_update
if Input.trigger?(EFE::KEY)
self.visible = !self.visible
end
end
end
I made it and put it in the js folder, but nothing happened