GetFactionAverageLevel(object)
ファクションメンバーの平均レベルを調べます。
int GetFactionAverageLevel( object oFactionMember );
Parameters
oFactionMember
あなたが調べたいファクションのオブジェクト。
Description
オブジェクトの全てのクリーチャーの平均レベルに一致する整数値を返します。
Version
1.22
Example
void main()
{
object oPC = GetPCSpeaker();
int nXP;
int nLvl = GetFactionAverageLevel(oPC);
nXP = nLvl * 250;
RewardPartyXP(nXP, oPC);
}
See Also
author: John Shuell, JP team: Redondo
Send comments on this topic.