Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

27 lines
630 B
Plaintext

//::///////////////////////////////////////////////
//:: Have Not Master
//:: NW_CH_MASTER
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
If I do not have a master then enter
*/
//:://////////////////////////////////////////////
//:: Created By: Preston Watamanuik
//:: Created On: Nov 19, 2001
//:://////////////////////////////////////////////
// Modified by Proleric 25-Feb-2008
// Don't enter if I am a PC
int StartingConditional()
{
if (GetIsPC(OBJECT_SELF)) return FALSE;
if(!GetIsObjectValid(GetMaster()))
{
return TRUE;
}
return FALSE;
}