14 lines
228 B
Plaintext
14 lines
228 B
Plaintext
|
/* Wiz check */
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
if ((GetLevelByClass(CLASS_TYPE_WIZARD, oPC)==0))
|
||
|
return FALSE;
|
||
|
|
||
|
if (GetClassByPosition(2, oPC) != CLASS_TYPE_INVALID) return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|