设为首页收藏本站同能贴吧 切换语言 繁体中文
开启辅助访问 切换到窄版
扫描二维码关注官方公众号
返回列表
+ 发新帖
查看: 99|回复: 0

[转载发布] Switch Tags VX

[复制链接]
累计送礼:
0 个
累计收礼:
1 个
  • TA的每日心情
    开心
    2026-7-12 04:10
  • 签到天数: 209 天

    连续签到: 2 天

    [LV.7]常住居民III

    7564

    主题

    864

    回帖

    3万

    积分

    管理员

    Rank: 9Rank: 9Rank: 9

    VIP
    7
    卡币
    29135
    OK点
    16
    推广点
    0
    同能卷
    50
    积分
    37593

    灌水之王

    发表于 2026-7-17 19:51:19 | 显示全部楼层 |阅读模式
    Switch Tags VX

    by Kyonides


    Introduction

    With this scriptlet you will be able to turn on or off any given switch by leaving 3 different tags in the show text box!

    You will see the effects of that action while it is still printing the text on screen!


                    Ruby:       
    1. # * Switch Tags VX * #
    2. #    Scripter : Kyonides Arkanthes
    3. #    2024-01-07
    4. # The script implements the use of 2 game switch tags that look something like
    5. # this: First \s[10] and later \+ or \-
    6. class Window_Message
    7.   alias :kyon_switch_tag_win_mess_conv_sp_char :convert_special_characters
    8.   def convert_special_characters
    9.     @switch_block = Proc.new {}
    10.     @text.gsub!(/\\\+/, "\x18")
    11.     @text.gsub!(/\\\-/, "\x19")
    12.     kyon_switch_tag_win_mess_conv_sp_char
    13.     @text.gsub!(/\\s\[(\d+)\]/i) { @switch_block = switch_proc($1.to_i); "" }
    14.   end
    15.   def switch_proc(switch_id)
    16.     Proc.new do |state|
    17.       $game_switches[switch_id] = state
    18.       $game_map.need_refresh = true
    19.     end
    20.   end
    21.   def process_character(c)
    22.     case c
    23.     when "\x01"
    24.       @text.sub!(/\[([0-9]+)\]/, "")
    25.       contents.font.color = text_color($1.to_i)
    26.     when "\x02"
    27.       @gold_window.refresh
    28.       @gold_window.open
    29.     when "\x03"
    30.       @wait_count = 15
    31.       @break = true
    32.     when "\x04"
    33.       @wait_count = 60
    34.       @break = true
    35.     when "\x05"
    36.       self.pause = true
    37.       @break = true
    38.     when "\x06"
    39.       @line_show_fast = true
    40.     when "\x07"
    41.       @line_show_fast = false
    42.     when "\x08"
    43.       @pause_skip = true
    44.     when "\x18"
    45.       @switch_block.call(true)
    46.     when "\x19"
    47.       @switch_block.call(false)
    48.     else
    49.       contents.draw_text(@contents_x, @contents_y, 40, WLH, c)
    50.       c_width = contents.text_size(c).width
    51.       @contents_x += c_width
    52.     end
    53.   end
    54.   def update_message
    55.     loop do
    56.       c = @text.slice!(/./m)
    57.       case c
    58.       when nil
    59.         finish_message
    60.         break
    61.       when "\x00"
    62.         new_line
    63.         if @line_count >= MAX_LINE
    64.           unless @text.empty?
    65.             self.pause = true
    66.             break
    67.           end
    68.         end
    69.       end
    70.       process_character(c)
    71.       if @break
    72.         @break = nil
    73.         break
    74.       end
    75.       break unless @show_fast or @line_show_fast
    76.     end
    77.   end
    78. end
    复制代码


    Terms & Conditions

    Free for use in ANY game.
    Due credit is optional.
    That's it!



    本贴来自国际rpgmaker官方论坛作者:kyonides处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:https://forums.rpgmakerweb.com/threads/switch-tags-vx.164595/

    本帖子中包含更多资源

    您需要 登录 才可以下载或查看,没有账号?立即注册

    x
    天天去同能,天天有童年!
    回复 送礼论坛版权

    使用道具 举报

    文明发言,和谐互动
    文明发言,和谐互动
    高级模式
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    简体中文
    繁體中文
    English(英语)
    日本語(日语)
    Deutsch(德语)
    Русский язык(俄语)
    بالعربية(阿拉伯语)
    Türkçe(土耳其语)
    Português(葡萄牙语)
    ภาษาไทย(泰国语)
    한어(朝鲜语/韩语)
    Français(法语)
    关闭

    幸运抽奖

    社区每日抽奖来袭,快来试试你是欧皇还是非酋~

    立即查看

    聊天机器人
    Loading...

    QQ|Archiver|手机版|小黑屋|同能RPG制作大师 ( 沪ICP备12027754号-3 )

    GMT+8, 2026-7-30 21:21 , Processed in 0.063024 second(s), 55 queries .

    Powered by Discuz! X3.4

    Copyright © 2001-2020, Tencent Cloud.

    快速回复 返回顶部 返回列表