GetLocation(object)

オブジェクトの位置を調べます。

location GetLocation(
    object oObject
);

Parameters

oObject

位置を調べたいオブジェクト。


Description

オブジェクトがいる位置を返します。オブジェクトはいかなるobjectでも指定できます。



Version

1.22

Example

// NPCのいる位置に対して、プレイヤーに(実際には視覚エフェクトだけの)ファイアボールの呪文を唱えさせます。
void main()
{
    location l = GetLocation(GetObjectByTag("NPC"));
    AssignCommand(GetFirstPC(),
        ActionCastFakeSpellAtLocation(SPELL_FIREBALL, l));
}

See Also

functions: GetAreaFromLocation | GetStartingLocation | Location
categories: Get Data Functions | Targeting Functions


author: GoLeM, editor: Charles Feduke, JP team: NamaYake
Send comments on this topic.