NWNDS/nwnds_module/bbs_post_notice.nss
Jaysyn904 de24f81734 Added NWN Dark Sun module contents
Added NWN Dark Sun module contents.
2021-07-12 21:24:46 -04:00

15 lines
466 B
Plaintext

#include "bbs_include"
void main()
{
object oPC = GetPCSpeaker();
object oNotice = GetItemPossessedBy(oPC, "bbs_notice");
if (GetIsObjectValid(oNotice)) {
string nPoster = GetName(oPC) + " (" + GetPCPlayerName(oPC) + ")";
string nTitle = GetLocalString(oNotice,"#T");
string nMessage = GetLocalString(oNotice,"#M");
ActionTakeItem(oNotice, oPC);
bbs_add_notice(OBJECT_SELF, nPoster, nTitle, nMessage, "");
bbs_change_page(-1000);
}
}