Aantioch_Infernum/_module/nss/mail_conv_showp.nss
Jaysyn904 22947ad4b6 Initial Upload
Initial Upload
2023-08-08 16:22:17 -04:00

29 lines
709 B
Plaintext

//::///////////////////////////////////////////////
//:: Mail - Conversation, Show Previous Option
//:: mail_conv_showp.nss
//:: Copyright (c) 2003 Jake E. Fitch
//:://////////////////////////////////////////////
/*
Show the previous button?
*/
//:://////////////////////////////////////////////
//:: 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 iMB = GetLocalInt(oMailman, "mail_LastMB") - 20;
if (iMB >= 0 ) {
return TRUE;
}
return FALSE;
}