13 lines
271 B
Plaintext
13 lines
271 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
object oPC = GetPCSpeaker();
|
||
|
object oTarget = GetLocalObject( oPC, "mn_target" );
|
||
|
|
||
|
object ring = GetItemPossessedBy( oTarget, "MN_AIDBR_OFFKEY" );
|
||
|
|
||
|
iResult = (!GetIsObjectValid( ring ));
|
||
|
|
||
|
return iResult;
|
||
|
}
|