赞 | 5 |
VIP | 1 |
好人卡 | 2 |
积分 | 4 |
经验 | 20430 |
最后登录 | 2018-5-11 |
在线时间 | 238 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 381
- 在线时间
- 238 小时
- 注册时间
- 2013-8-20
- 帖子
- 496
|
- #==============================================================================
- # 本脚本来自www.66RPG.com,使用和转载请保留此信息
- #==============================================================================
- #==============================================================================
- # ■ Game_Player
- #==============================================================================
- class Game_Player
- #--------------------------------------------------------------------------
- # ● フレーム更新
- #--------------------------------------------------------------------------
- alias old_update update
- def update
- unless $game_system.map_interpreter.running? or
- @move_route_forcing or $game_temp.message_window_showing
- if Input.press?(Input::SHIFT)
- if moving?
- if @move_speed != 5
- @move_speed = 5
- @character_name_run = @character_name
- @character_name = @character_name + "run"
- end
- end
- else
- if @move_speed != 4
- @move_speed = 4
- @character_name = @character_name_run
- end
- end
- end
- old_update
- end
- end
- #==============================================================================
- # 本脚本来自www.66RPG.com,使用和转载请保留此信息
- #==============================================================================
复制代码 需要行走图和坐骑图{:7_298:} |
评分
-
查看全部评分
|