Shargast_PRC8/_module/Chapter 2/nss/prc_pwondeath.nss
Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

23 lines
533 B
Plaintext

//:://////////////////////////////////////////////////
//:: prc_pwondeath
/*
PRC's onDeath catch-all.
*/
//:://////////////////////////////////////////////////
#include "se_drop_weapons"
#include "se_respawn_inc"
#include "_kb_loot_corpse"
void main()
{
SE_DoCreatureRespawn();
SE_DropHandSlot(OBJECT_SELF,INVENTORY_SLOT_LEFTHAND,180.0,TRUE);
SE_DropHandSlot(OBJECT_SELF,INVENTORY_SLOT_RIGHTHAND,180.0,TRUE);
//--------Scarface's XP System.
ExecuteScript("sf_xp", OBJECT_SELF);
//--------End
LeaveCorpse();
}