22 lines
625 B
Plaintext
22 lines
625 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: 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;
|
||
|
}
|