Added PC Deleter NPC

Added PC Deleter NPC.  Full compile.
This commit is contained in:
Jaysyn904
2025-04-28 12:25:49 -04:00
parent 7ad5a56051
commit 368fbb25aa
27 changed files with 4612 additions and 113 deletions

View File

@@ -0,0 +1,19 @@
#include "nw_i0_tool"
/* Script generated by
Lilac Soul's NWN Script Generator, v. 1.6
For download info, please visit:
http://www.lilacsoul.revility.com */
//Put this on action taken in the conversation editor
void main()
{
object oPC = GetPCSpeaker();
if (GetHitDice(oPC) <= 2)
{
RewardPartyXP(3000, oPC, FALSE);
}
}

View File

@@ -0,0 +1,20 @@
#include "nwnx_admin"
void main()
{
object oPlayer = GetPCSpeaker();
string sName = GetName(oPlayer);
string sPlayer = GetPCPlayerName(oPlayer);
SendMessageToPC(oPlayer,"sPlayer = "+sPlayer);
SendMessageToPC(oPlayer,"sName = "+sName);
NWNX_Administration_DeletePlayerCharacter(oPlayer, 1, "Character Deleted");
SendMessageToPC(oPlayer,sPlayer+" has deleted "+sName);
SendMessageToAllDMs(sPlayer+" has deleted "+sName);
}

2470
_module/nss/ms_name_inc.nss Normal file

File diff suppressed because it is too large Load Diff