18 lines
537 B
Plaintext
18 lines
537 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName s_isnotbardorcle
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 3/5/2005 6:29:47 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Restrict based on the player's class
|
||
|
int class = GetClassByPosition(1, GetPCSpeaker());
|
||
|
if(class != CLASS_TYPE_BARD && class != CLASS_TYPE_CLERIC)
|
||
|
return TRUE;
|
||
|
|
||
|
return FALSE;
|
||
|
}
|