13 lines
234 B
Plaintext
13 lines
234 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
if(GetLevelByClass(CLASS_TYPE_WIZARD,oPC) >= 15)
|
|
return TRUE;
|
|
|
|
if(GetLevelByClass(CLASS_TYPE_SORCERER,oPC) >= 15)
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
}
|