13 lines
262 B
Plaintext
13 lines
262 B
Plaintext
|
#include "mn_h_constants"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
int type = GetLocalInt( oPC, "mn_tempteleport" );
|
||
|
int rank = GetLocalInt( oPC, "mn_temptelerank" );
|
||
|
|
||
|
return ( (type == 3 || type == 2) && rank >= MN_RANK_ALLY );
|
||
|
}
|
||
|
|