PRC8/nwn/nwnprc/trunk/scripts/prgt_spawneg.nss
Jaysyn904 6ec137a24e Updated AMS marker feats
Updated AMS marker feats.  Removed arcane & divine marker feats.  Updated Dread Necromancer for epic progression. Updated weapon baseitem models.  Updated new weapons for crafting & npc equip.
 Updated prefix.  Updated release archive.
2024-02-11 14:01:05 -05:00

14 lines
471 B
Plaintext

//An example OnHB script for an invisible placeable to spawn a ground trap
#include "prc_alterations"
#include "prgt_inc"
void main()
{
struct trap tTrap;
//this will use 5 as the CR for the trap
tTrap = CreateRandomTrap(5);
//add code in here to change things if you want to
//for example, to set the detect DC to be 25 use:
//tTrap.nDetectDC = 25;
PRGT_CreateTrapAtLocation(GetLocation(OBJECT_SELF), tTrap);
DestroyObject(OBJECT_SELF);
}