GetIsDMPossessed(object)

DMによってコントロール(憑依)されているかどうかを返します。

int GetIsDMPossessed(
    object oCreature
);

Parameters

oCreature

憑依されているか調べるクリーチャー


Description

oCreatureがDMに憑依されている場合はTRUEを返します。
Returns TRUE if the creature oCreature is currently possessed by a DM character.

それ以外の場合は、FALSEを返します。

注: oCreatureにDMキャラを指定した場合は、GetIsDMPossessed()ではFALSEを返すでしょう。
Note: GetIsDMPossessed() will return FALSE if oCreature is the DM character.

oCreatureがDMキャラであるかどうかを調べる場合には、GetIsDM()を使います。



Remarks

この関数は以下と同じように働きます:

GetIsDM(GetMaster(oCreature));

もしもこの2つの違いに気がついたならば、Lexiconに知らせていただけるとありがたく思います:)


Version

1.31

See Also

functions: GetIsDM | GetMaster
categories: Get Data Functions | Get Data from Creature Functions


author: Lilac Soul, JP team: geshi
Send comments on this topic.