RATDOG/_module/nss/sc_054.nss

20 lines
510 B
Plaintext
Raw Normal View History

//::///////////////////////////////////////////////
//:: FileName sc_054
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 8/30/2005 10:14:06 PM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Restrict based on the player's class
int iPassed = 0;
if(GetLevelByClass(CLASS_TYPE_ROGUE, GetPCSpeaker()) >= 1)
iPassed = 1;
if(iPassed == 0)
return FALSE;
return TRUE;
}