23 lines
628 B
Plaintext
23 lines
628 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Mail - Show Message 08
|
|
//:: mail_show08.nss
|
|
//:: Copyright (c) 2003 Jake E. Fitch
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Set the message to show.
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Jake E. Fitch (Milambus Mandragon)
|
|
//:: Created On: Jan. 6, 2004
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "mail_include"
|
|
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
object oMailman = GetNearestObjectByTag("Mailman", oPC);
|
|
|
|
SetLocalInt(oMailman, "mail_Message", GetLocalInt(oMailman, "mail_Option8"));
|
|
}
|