13 lines
278 B
Plaintext
13 lines
278 B
Plaintext
#include "mn_i_checkrank"
|
|
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
object oPC = GetPCSpeaker();
|
|
object oTarget = GetLocalObject ( oPC, "mn_target" );
|
|
SetCustomToken( 234, GetName( oTarget ) );
|
|
|
|
iResult = ( CheckRank( oTarget ) == 0 );
|
|
return iResult;
|
|
}
|