Fixed creature hak name, added more quest persistence. Co-Authored-By: Awetizmo <107700980+Awetizmo@users.noreply.github.com>
20 lines
527 B
Plaintext
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;
|
|
}
|