Added PC Deleter NPC
Added PC Deleter NPC. Full compile.
This commit is contained in:
19
_module/nss/at_caplvlup.nss
Normal file
19
_module/nss/at_caplvlup.nss
Normal 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);
|
||||
|
||||
}
|
||||
}
|
20
_module/nss/dante_letodel_at.nss
Normal file
20
_module/nss/dante_letodel_at.nss
Normal 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
2470
_module/nss/ms_name_inc.nss
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user