懒之圣帝 发表于 2012-10-1 16:57:19

如何使某区域无法通行?

因为要做战车啥的,有些地方必须下车冒险,但是放在世界地图的话事件就害死了CPU。
需要配合这个IFif $game_varaibles >= 1else的时候可以通行。
就是这样,能使某个区域能因为IF神马的而决定通行。

烁灵 发表于 2012-10-2 16:01:02

考虑用地形标志?

懒之圣帝 发表于 2012-10-2 19:12:44

烁灵 发表于 2012-10-2 16:01 static/image/common/back.gif
考虑用地形标志?

这个可以有,反而更加方便了呢~

懒之圣帝 发表于 2012-10-2 20:04:09

烁灵 发表于 2012-10-2 16:01 static/image/common/back.gif
考虑用地形标志?

class Game_Map
#--------------------------------------------------------------------------
# ● 通行チェック
#   bit : 調べる通行禁止ビット
#--------------------------------------------------------------------------
def check_passage(x, y, bit)
    all_tiles(x, y).each do |tile_id|
      id = terrain_tag(x, y)
      flag = tileset.flags
      next if flag & 0x10 != 0            # [☆] : 通行に影響しない
      return trueif flag & bit == 0   # [○] : 通行可
      return false if id = 1 and $game_variables >= 1
      p "f"
      return false if flag & bit == bit
    end
    return false                        # 通行不可
end
end
出大事了……地形TAG完全无效……

Sonic1997 发表于 2012-10-3 07:51:27

仍然是纯事件0w0
现在先偷懒一下=-=
如果有机会上图

首先用选择区域,然后判断就可以了= =

懒之圣帝 发表于 2012-10-3 19:38:24

#==============================================================================
# ■ Game_CharacterBase
#------------------------------------------------------------------------------
#  キャラクターを扱う基本のクラスです。全てのキャラクターに共通する、座標やグ
# ラフィックなどの基本的な情報を保持します。
#==============================================================================

class Game_CharacterBase
def passable?(x, y, d)
    x2 = $game_map.round_x_with_direction(x, d)
    y2 = $game_map.round_y_with_direction(y, d)
    return false unless $game_map.valid?(x2, y2)
    return true if @through || debug_through?
    return false unless map_passable?(x, y, d)
    return false unless map_passable?(x2, y2, reverse_dir(d))
    return false if collide_with_characters?(x2, y2)
    if $game_map.terrain_tag(x, y) == 1 and $game_variables >= 1
      return false
      $game_temp.reserve_common_event(21)
    end
    return true
end
def map_passable?(x, y, d)
    $game_map.passable?(x, y, d)
end
end
现在是能够无法通行,但是接触了就会卡住……{:nm02:}
页: [1]
查看完整版本: 如何使某区域无法通行?