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