GetSubRace(object)
クリーチャーのサブ種族を得ます。
string GetSubRace( object oCreature );
Parameters
oCreature
目標のクリーチャー
Description
oCreatureのサブ種族名を返します。oCreatureが無効であったり、サブ種族を持っていない場合は空白の文字列を返します。
Version
1.22
Example
void main()
{
// このクリーチャー自身のサブ種族を告げる
string sSubRace = GetSubRace(OBJECT_SELF);
SpeakString(sSubRace);
}
See Also
| functions: | SetSubRace |
| categories: | Get Data from Creature Functions |
author: Daniel Beckman, editor: Charles Feduke, JP team: Rainie
Send comments on this topic.