2022-10-07 14:20:31 -04:00
|
|
|
//::///////////////////////////////////////////////
|
|
|
|
//:: FileName gc_is_druid
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
//:: Created By: Script Wizard
|
|
|
|
//:: Created On: 9/11/2008 11:46:37 AM
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
int StartingConditional()
|
|
|
|
{
|
2022-10-09 23:07:18 -04:00
|
|
|
|
|
|
|
// Restrict based on the player's class
|
|
|
|
int iPassed = 0;
|
|
|
|
if(GetLevelByClass(CLASS_TYPE_DRUID, GetPCSpeaker()) >= 1)
|
|
|
|
return TRUE;
|
2022-10-07 14:20:31 -04:00
|
|
|
|
|
|
|
|
2022-10-09 23:07:18 -04:00
|
|
|
return FALSE;
|
2022-10-07 14:20:31 -04:00
|
|
|
|
|
|
|
|
|
|
|
}
|