Collision Checker
This is a plugin that allows developers to check the collision of various
coordinates/directions on the map for event collision.
這個插件可以讓開發(fā)者檢查事件的位置和方向上的碰撞
This plugin uses different codes within the “Script” section of the
Conditional Branch event. Here is a list of them:
這個插件使用腳本命令來實現
Command List
In order to check these, place them into the “Script” section of the
Conditional Branch event. These will check collisions relative to the
event in which the Conditional Branch is located in.
你需要將下列命令放入分支條件事件里面
[is [x, y] clear]
Checks to see if the spot at point (x,y) is passable.
檢查指定點是否可以通過
[is front clear]
Checks to see if the spot in front of the event is passable.
This is different based off of where the event/player is looking.
檢查前方是否可通行煌妈,和玩家面對方向有關
[is back clear]
Checks to see if the spot behind the event is passable.
This is different based off of where the event/player is looking.
檢查后方是否可通行箱残,和玩家面對方向有關
[is left clear]
Checks to see if the spot to the left of the event is passable.
This is different based off of where the event/player is looking.
檢查左側是否可通行,和玩家面對方向有關
[is right clear]
Checks to see if the spot to the right of the event is passable.
This is different based off of where the event/player is looking.
檢查右側是否可通行,和玩家面對方向有關
[is north clear]
Checks to see if the spot above the event is passable.
This consistently refers to the same direction.
檢查上方是否可通行
[is south clear]
Checks to see if the spot below the event is passable.
This consistently refers to the same direction.
檢查下方是否可通行
[is east clear]
Checks to see if the spot to the east of the event is passable.
This consistently refers to the same direction.
檢查左方是否可通行
[is west clear]
Checks to see if the spot to the west of the event is passable.
This consistently refers to the same direction.
檢查右方是否可通行
Player Command List
If you wish to check collision relative to the Player, you can use:
如果想要檢查玩家的碰撞屯曹,可以用下面的命令
[is player front clear]
[is player back clear]
[is player left clear]
[is player right clear]
[is player north clear]
[is player south clear]
[is player right clear]
[is player left clear]
Use the descriptions above to understand what these commands check for.
External Event Command List
If you wish to check collision relative to an event besides the one the
Conditional Branch is within, you can use:
如果你想檢查指定事件的碰撞抄谐,可以使用下面命令
event(x)
Simple replace ‘x’ with the ID of the Event on the map.
你只需要替代事件ID即可
You can do:
[is event(x) front clear]
[is event(x) back clear]
[is event(x) left clear]
[is event(x) right clear]
[is event(x) north clear]
[is event(x) south clear]
[is event(x) right clear]
[is event(x) left clear]
At Distance
If you wish to check a certain distance in the direction you’re checking,
you can add “at distance x”.
如果你想檢查某段距離內的情況摹蘑,你可以使用下面命令
For example:
[is up clear at distance 2]
This would check if the second tile in the up direction of the event
is clear.
上面命令會檢查向上2格內的情況
This can be added to all directional checks:
[is event(5) left clear at distance 5]
[is player down clear at distance 3]
Multiple Conditions (AND)
If you wish for multiple conditions to have to be true, place an “and”
in between each of them.
如果你想檢查多個情況凿掂,你可以使用and命令
For example:
[is player front clear] and [is east clear at distance 4]
This would only be true if the player’s front was clear and the east
tile 4 tiles away relative to the event was clear.
這將會同時檢查玩家前方,和東側4格內情況
Multiple Conditions (OR)
If you wish for only one condition to be true in order for the entire
conditional branch to be true, then you would need to use “or”.
如果你只想檢查某些情況中的某個纹蝴,可以使用OR命令
For example:
[is back clear] or [is front clear] or [is event(3) front clear]
If either the back of the event 2 tiles down is clear or is Event ID 3’s
front is clear, then the entire conditional branch will be clear.
這將會檢查前后方或事件3前方
Keep in mind it is impossible to combine AND and OR conditions.
記住不可以同時使用OR和AND