//:://///////////////////////////////////////////// //:: 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; }