SetTrapDisabled(object)

オブジェクト上の罠を解除します。

void SetTrapDisabled(
    object oTrap
);

Parameters

oTrap

配置可能オブジェクト、ドアやトリガー。


Description

oTrapを解除します。



Remarks

この関数を利用して、レバーを引くことで罠を解除するといったメカニズムを作成することができます。


Version

1.22

Example

// タグが"Chest1"であるオブジェクト上の罠を解除します。
void main()
{
    object oTrap = GetObjectByTag("Chest1");
    SetTrapDisabled(oTrap);
}

See Also

functions: GetLastTrapDetected | GetTrapBaseType | GetTrapCreator | GetTrapDetectable | GetTrapDetectDC | GetTrapDisarmable | GetTrapFlagged | GetTrapKeyTag | GetTrapOneShot
categories: Traps Functions


author: Chaz Mead, editor: Jochem van 't Hull, JP team: katsu794
Send comments on this topic.