赞 | 0 |
VIP | 0 |
好人卡 | 3 |
积分 | 1 |
经验 | 2346 |
最后登录 | 2020-4-27 |
在线时间 | 10 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 56
- 在线时间
- 10 小时
- 注册时间
- 2015-10-8
- 帖子
- 22
|
本帖最后由 众位坛友 于 2016-4-8 21:56 编辑
- #=====================================
- #本脚本来自66rpg,转载和使用请注明此信息
- #=====================================
- class Window_MenuCommand
- alias old201647 make_command_list
- def make_command_list
- old201647
- add_command("更改奔跑选项", :run, true)
- end
- end
- class Scene_Menu
- alias old2016472 create_command_window
- def create_command_window
- old2016472
- @command_window.set_handler(:run,method(:run_do))
- end
- def run_do
- $game_switches[20]=!$game_switches[20] #<--请在[]里输入你需要的开关
- return_scene
- end
- end
- class Game_Player
- def dash?
- return false if @move_route_forcing
- return false if $game_map.disable_dash?
- return false if vehicle
- return Input.press?(:A) unless $game_switches[20]
- return !Input.press?(:A) if $game_switches[20]
- end
- end
复制代码 @voidwaver 版本已更新,且公共事件的使用变为了非必要的。 |
评分
-
查看全部评分
|