赞 | 90 |
VIP | 350 |
好人卡 | 311 |
积分 | 101 |
经验 | 150139 |
最后登录 | 2024-7-17 |
在线时间 | 5020 小时 |
Lv4.逐梦者 (版主) 无限の剣制
- 梦石
- 0
- 星屑
- 10074
- 在线时间
- 5020 小时
- 注册时间
- 2013-2-28
- 帖子
- 5030
|
这段脚本插入在 区域扩充脚本的下面,(新建一个脚本页- class Game_Player < Game_Character
- #--------------------------------------------------------------------------
- # ● 跳跃
- #--------------------------------------------------------------------------
- def jump(x_plus, y_plus)
- super(x_plus, y_plus); followers.each{|f|f.jump(x - f.x, y - f.y)}
- end
- #--------------------------------------------------------------------------
- # ● 由方向键跳跃
- #--------------------------------------------------------------------------
- def jump_by_input(d)
- return if d == 0
- x1 = $game_map.x_with_direction(@x,d)
- y1 = $game_map.y_with_direction(@y,d)
- x2 = $game_map.x_with_direction(x1,d)
- y2 = $game_map.y_with_direction(y1,d)
- followers.gather if can_jump?(x1,x2,y1,y2,d) && !followers.gather?
- if can_jump?(x1,x2,y1,y2,d)
- jump(x2 - @x,y2 - @y)
- @input_jump = true
- @move_succeed = true
- end
- end
- end
复制代码 |
评分
-
查看全部评分
|