17 lines
411 B
Plaintext
17 lines
411 B
Plaintext
////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Jump Party Member to Leader
|
|
// opw_conv_jlenab
|
|
// By Don Anderson
|
|
//
|
|
// Called from the Rest Menu
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
int StartingConditional()
|
|
{
|
|
int nJump = GetLocalInt(GetModule(),"LEADERJUMP");
|
|
if(nJump == 1) return TRUE;
|
|
else return FALSE;
|
|
}
|