WoR_PRC8/_module/nss/quest_giant_a.nss

22 lines
625 B
Plaintext
Raw Permalink Normal View History

2025-04-03 11:49:34 -04:00
//::///////////////////////////////////////////////
//:: FileName quest_giant_a
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 2003-10-01 5:59:38 PM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
object oPC = GetPCSpeaker();
if (GetAbilityScore(oPC, ABILITY_INTELLIGENCE) > 9) return FALSE;
// Make sure the PC speaker doesn't have item in their inventory
if((!HasItem(GetPCSpeaker(), "HILL_GIANT_RECALL")) == FALSE)
return FALSE;
return TRUE;
}