23 lines
558 B
Plaintext
23 lines
558 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName sc_haslance
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 8/27/2002 10:31:00 PM
|
|
|
|
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Make sure the PC speaker has these supplies in his inventory
|
|
|
|
|
|
object oItemToTake;
|
|
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "it_LanceofBran");
|
|
if(GetIsObjectValid(oItemToTake) != 0)
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
}
|