Ratziel-MHCP001/RPG Maker VX Ace

来自萌娘文库
跳转至: 导航搜索

事件指令第三页系统设置System Settings那儿可以开关存档菜单遇敌编队

目前这里就只有RPG Maker VX Ace游戏菜单的一些帮助,主要是为了系统地说明http://tieba.baidu.com/p/5115933813的问题。 在RPG Maker VX Ace中 px=100 召唤制作大师,在键盘上释放F11号技能,左边最下面有个Main,上面括号那里右键插入,把代码粘上去就对了。



#==============================================================================
# ** Game Menu Config
# ** 游戏菜单调整
#------------------------------------------------------------------------------
# "THE INFINITE S2 CONTRACT" :
# <Ryouba@outlook.jp> wrote this file. as long as U retain this contract U can
# do whatever U want with this stuff. if U think this stuff is worth it, U can
# sign Ur name behind the license. And, i would be very thankful if U do like
# JiShuZhai[1], Geek x Otaku, in Chinese. --Zexi Stanley Yuan
#------------------------------------------------------------------------------
# <<永恒高二契约>>
# 此文为龍羽所纂。旦有此书,全卷任君所用。如若大人赏识,署名于后可也。另,夫西洋有极客,东瀛有
# 御宅,吾辈生逢其时,我大中国技术宅[1]众也。有人喜之,甚好甚好。 ——袁泽禧,字史刀犁,自号龍羽
#------------------------------------------------------------------------------
# [0] 原文位于https://en.wikipedia.org/wiki/Beerware
# [1] 二次元生产力:宅文化下的互联网创新|极客公园 geekpark.net/topics/200808
#------------------------------------------------------------------------------
#
#==============================================================================

class Window_MenuCommand
  #--------------------------------------------------------------------------
  # * Redifine Command List. Press Ctrl+Q to turn on/off, and greens are off.
  # * 重定义指令菜单。按Ctrl+Q来开关菜单,绿了它就关了。
  #--------------------------------------------------------------------------
  def make_command_list
#~ add_main_commands #主要指令:道具技能装备状态
#~ add_formation_command #编队指令:编队
#~ add_original_commands #一般指令:(无)
#~ add_save_command #保存指令:保存
    add_game_end_command #退出指令:退出
  end
end