じ☆ve冰风 发表于 2026-8-3 10:35:53

MenuDisabler ACE

MenuDisabler ACE

by Kyonides​

Introduction

Do you need to block the player's ability to consume items?
Or do you hate the team and wish to make it suffer by blocking all skills just because?
Or perhaps you should prevent the player from equiping new gear at any specific moment...

If any of those things is true, then this scriptlet is for you!


Just configure the game switch ID's accordingly.


Script Updated!

                Ruby:       
# * MenuDisabler ACE * #
#   Scripter : Kyonides Arkanthes
#   2024-03-17

# It uses 3 game switches to block items, skills or equipment.

module MenuDisabler
BLOCK_ITEM_SWITCH= 100
BLOCK_SKILL_SWITCH = 150
BLOCK_EQUIP_SWITCH = 200
end

class Window_Command
def change_command(name, symbol, enabled, ext=nil)
    hash = @list.find {|v| v[:name] == name }
    if hash
      hash[:enabled] = enabled
    else
      hash = { name: name, symbol: symbol, enabled: enabled, ext: ext }
      @list << hash
    end
    n = @list.index(hash)
    clear_item(n)
    draw_item(n)
end
end

class Scene_Menu
alias :kyon_disable_equip_scn_mn_crt_cmd_win :create_command_window
alias :kyon_disable_equip_scn_mn_cmd_personal :command_personal
def create_command_window
    kyon_disable_equip_scn_mn_crt_cmd_win
    anybody = $game_party.members.size > 0
    state = !$game_switches
    @command_window.change_command(Vocab.item, :item, anybody && state)
    state = !$game_switches
    @command_window.change_command(Vocab.skill, :skill, anybody && state)
    state = !$game_switches
    @command_window.change_command(Vocab.equip, :equip, anybody && state)
end
end


Terms & Conditions

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



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