17 lines
510 B
Plaintext
17 lines
510 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName a_bless_pool_no
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 5/17/2003 5:53:47 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetLastUsedBy();
|
||
|
|
||
|
if (GetHasSpell(SPELL_BLESS, oPC) &&
|
||
|
GetItemPossessedBy(oPC, "cnrGlassVial") != OBJECT_INVALID) return FALSE;
|
||
|
|
||
|
else return TRUE;
|
||
|
}
|