Project1

标题: 怎么写判定是否可以通行 [打印本页]

作者: 冰鸷殛霰    时间: 2007-8-18 02:33
标题: 怎么写判定是否可以通行
怎么用条件分歧的形式写成自己是否可以通行...
意思就是:
一个事件
一直前冲
冲到一个障碍上(非NPC我用了NPC之间可以互相穿透)
自己消失(这个无重要)

条件分歧的形式怎么写?????????????
作者: 冰鸷殛霰    时间: 2007-8-18 02:33
标题: 怎么写判定是否可以通行
怎么用条件分歧的形式写成自己是否可以通行...
意思就是:
一个事件
一直前冲
冲到一个障碍上(非NPC我用了NPC之间可以互相穿透)
自己消失(这个无重要)

条件分歧的形式怎么写?????????????
作者: 冰鸷殛霰    时间: 2007-8-18 03:12
以下引用索尔迦·蓝于2007-8-17 18:41:00的发言:

$game_player.passable?(x,y,方向)

方向是2,4,6,8……0是全方向不能通行的状况

??你说的啥哦
说清楚哇!
难道  if $game_player.passable?(x,y,0)
        暂时消除事件
    end
这样可以?
x y 是什么的XY也要说清楚撒~
作者: 永劫的咎人    时间: 2007-8-18 04:11
提示: 作者被禁止或删除 内容自动屏蔽
作者: 冰鸷殛霰    时间: 2007-8-18 04:34
x = $game_player.x
y = $game_player.y
if $game_player.passable? (x,y,2)
else
$game_switches[1] = false
end
x = $game_player.x
y = $game_player.y
if $game_player.passable? (x,y,4)
else
$game_switches[1] = false
end
x = $game_player.x
y = $game_player.y
if $game_player.passable? (x,y,6)
else
$game_switches[1] = false
end
x = $game_player.x
y = $game_player.y
if $game_player.passable? (x,y,8)
else
$game_switches[1] = false
end
这样才可以.
你们说得....
转个这么大个弯才弯过来了
分给你们分了吧
作者: 索尔迦·蓝    时间: 2009-6-12 08:00
提示: 作者被禁止或删除 内容自动屏蔽




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