13 lines
246 B
Plaintext
13 lines
246 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 && rank >= MN_RANK_ALLY);
|
||
|
}
|
||
|
|