Project1

标题: 關於設置禁止搭乘交通工具 [打印本页]

作者: liu5417    时间: 2015-8-31 09:24
标题: 關於設置禁止搭乘交通工具
我想要在特地條件下,設定無法搭乘交通工具

那如何設定禁止搭乘交通工具呢?  小船大船飛行船都必須禁止搭乘
作者: dongdongdjh    时间: 2015-8-31 09:55
事件 条件分歧
满足条件 搭乘
不满足条件 空指令
条件可以用开关也可以使用变量来判断。
作者: taroxd    时间: 2015-8-31 10:00
Game_Player#get_on_vehicle 方法中,把 if vehicle 这一行改成
RUBY 代码复制
  1. if vehicle && !禁止搭乘的条件

作者: liu5417    时间: 2015-9-5 03:09
def get_on_vehicle
    front_x = $game_map.round_x_with_direction(@x, @direction)
    front_y = $game_map.round_y_with_direction(@y, @direction)
    @vehicle_type = :boat    if $game_map.boat.pos?(front_x, front_y)
    @vehicle_type = :ship    if $game_map.ship.pos?(front_x, front_y)
    @vehicle_type = :airship if $game_map.airship.pos?(@x, @y)
    if vehicle && !$game_switches[3]
      @vehicle_getting_on = true
      force_move_forward unless in_airship?
      @followers.gather
    end
    @vehicle_getting_on
  end




這樣沒錯吧?  不行呢 , 一搭乘就卡在那裏
作者: tseyik    时间: 2015-9-8 11:05
本帖最后由 tseyik 于 2015-9-8 18:56 编辑

楼主己在巴哈找到方法了
http://forum.gamer.com.tw/C.php? ... num=2&subbsn=12






欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1