24 lines
610 B
Plaintext
24 lines
610 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName gongshopismonk
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 12/21/2003 1:13:58 AM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
int nUnStrike = GetHasFeat(FEAT_IMPROVED_UNARMED_STRIKE);
|
|
|
|
// Restrict based on the player's class
|
|
int iPassed = 0;
|
|
if(GetLevelByClass(CLASS_TYPE_MONK, GetPCSpeaker()) >= 1)
|
|
iPassed = 1;
|
|
|
|
if(nUnStrike)
|
|
iPassed = 1;
|
|
|
|
if(iPassed == 0)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
} |