NWNDS/nwn_dark_sun/bbs_start.nss
Jaysyn904 b01c5cc7db Added PnP Dire Rat.
Added PnP Dire Rat.
2021-07-21 17:48:43 -04:00

14 lines
278 B
Plaintext

#include "bbs_include"
void main()
{
object oPC = GetLastUsedBy();
if (GetIsPC(oPC)) {
bbs_initiate(OBJECT_SELF);
SetLocalInt(oPC,"PageIndex",0);
bbs_change_page(-1000);
SetLocalString(oPC,"PostAuthor","");
ActionStartConversation(oPC, "", TRUE);
}
}