15 lines
232 B
Plaintext
15 lines
232 B
Plaintext
|
/* Sorc check */
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
if ((GetLevelByClass(CLASS_TYPE_SORCERER, oPC)==0))
|
||
|
return FALSE;
|
||
|
|
||
|
if (GetClassByPosition(2, oPC) != CLASS_TYPE_INVALID) return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|
||
|
|