10 lines
199 B
Plaintext
10 lines
199 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
object oSigil = GetItemPossessedBy( GetPCSpeaker(), "ShadowknightSigil" );
|
||
|
if( GetIsObjectValid( oSigil ) )
|
||
|
return TRUE;
|
||
|
else
|
||
|
return FALSE;
|
||
|
}
|
||
|
|