Unskipped Message
by: IneptAttorney
Introduction:
This script allows you to make the message displayed cannot be accelerated. pressing the 'Enter' button when the message is displayed won't work. messages can be skipped when the message has been fully displayed.
Instruction:
Copy the script below and paste at your project in Script Editor (Press F11). paste above ▼ Main Process, and below ▼ Materials.
Script:
Spoiler Code:
#HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH # Unskipped Message #HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH =begin ▼ Writer: IneptAttorney ▼ Date : 20, June, 2019 ▼ Engine: RMVX Ace ▼ Name : Unskipped Message --------------------------------------[+]--------------------------------------- ▼ Introduction This script will make the message can't be skip. --------------------------------------[+]--------------------------------------- ▼ Instruction Place this script above ▼ Main Procces. and bellow ▼ Materials. Setting the configuration below and playtest your game! --------------------------------------[+]--------------------------------------- ▼ Terms Free for commercial and non-commercial game! Credits me! (If you want) You can repost this script freely! But DON'T claiming! --------------------------------------[+]--------------------------------------- =end module INPTATTRNY module SKIPTXT SWITCH = 124 #<--------[ set the switch to on/off the feature. when the # switch is on, message cannot be skipped ] end end #!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # End Of Configuration! # Don't edit the text below! or your PC will burn up! #!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! class Window_Message < Window_Base alias inptattrny_update_show_fast update_show_fast def update_show_fast return if $game_switches[INPTATTRNY::SKIPTXT::SWITCH] inptattrny_update_show_fast end end # yes iknow, this a very short script,.. cause the feature just one,.. 复制代码
Credits: -IneptAttorney
-Enterbrain
本贴来自国际rpgmaker官方论坛作者:IneptAttoney处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:
https://forums.rpgmakerweb.com/threads/unskipped-message.110269/