RATDOG/_module/nss/sc_060.nss
Jaysyn904 2105778d4c Fixed creature hak name, added more quest persistence
Fixed creature hak name, added more quest persistence.

Co-Authored-By: Awetizmo <107700980+Awetizmo@users.noreply.github.com>
2022-06-19 23:39:17 -04:00

20 lines
527 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName sc_060
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 8/31/2005 6:24:38 PM
//:://////////////////////////////////////////////
int StartingConditional()
{
// 10th lvl+ Paladin's only
int iPassed = 0;
if(GetLevelByClass(CLASS_TYPE_PALADIN, GetPCSpeaker()) >= 10)
iPassed = 1;
if(iPassed == 0)
return FALSE;
return TRUE;
}