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