26 lines
599 B
Plaintext
26 lines
599 B
Plaintext
////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Talus Menu on Rest
|
|
// tal_partyleader
|
|
// OPW Integration and Clean Up By Don Anderson
|
|
// dandersonru@msn.com
|
|
//
|
|
// Used in Rest Menu Conversation
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
int StartingConditional()
|
|
{
|
|
object oPC=GetPCSpeaker();
|
|
|
|
if(!GetLocalInt(oPC,"plmode"))
|
|
{
|
|
SetCustomToken(6665,IntToString(GetLocalInt(oPC,"plmin")));
|
|
SetCustomToken(6667,"");
|
|
SetCustomToken(6666,"off");
|
|
}
|
|
else SetCustomToken(6666,"on");
|
|
|
|
return TRUE;
|
|
}
|