25 lines
653 B
Plaintext
25 lines
653 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: Mail - Conversation, Show Back Message button.
|
||
|
//:: mail_conv_showbm.nss
|
||
|
//:: Copyright (c) 2003 Jake E. Fitch
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Jake E. Fitch (Milambus Mandragon)
|
||
|
//:: Created On: Jan. 6, 2004
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
#include "mail_include"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
object oMailman = GetNearestObjectByTag("Mailman", oPC);
|
||
|
|
||
|
int iOption = GetLocalInt(oMailman, "mail_LastOption") + 1;
|
||
|
|
||
|
return (iOption > 10);
|
||
|
}
|