Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
15 lines
440 B
Plaintext
15 lines
440 B
Plaintext
#include "bbs_include"
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
object oNotice = GetItemPossessedBy(oPC, "bbs_notice");
|
|
if (GetIsObjectValid(oNotice)) {
|
|
string nPoster = GetName(oPC);
|
|
string nTitle = GetLocalString(oNotice, "Title");
|
|
string nMessage = GetLocalString(oNotice, "Message");
|
|
ActionTakeItem(oNotice, oPC);
|
|
bbs_add_notice(OBJECT_SELF, nPoster, nTitle, nMessage, "");
|
|
bbs_change_page(-1000);
|
|
}
|
|
}
|