WoR_PRC8/_module/nss/quest_giant_a2.nss
Jaysyn904 b5e28e52f4 Initial commit
Initial commit [1.18]
2025-04-03 11:49:34 -04:00

24 lines
641 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName quest_giant_a2
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: 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) < 10) return FALSE;
return TRUE;
// Make sure the PC speaker doesn't have item in their inventory
if((!HasItem(GetPCSpeaker(), "HILL_GIANT_RECALL")) == FALSE)
return FALSE;
return TRUE;
}