NWNDS/nwnds_module/ps_deathfld_exit.nss
Jaysyn904 de24f81734 Added NWN Dark Sun module contents
Added NWN Dark Sun module contents.
2021-07-12 21:24:46 -04:00

21 lines
465 B
Plaintext

/************************************
* Death Field onExit script *
* *
* Removes recurring damage *
* *
*************************************/
#include "lib_psionic"
void main()
{
object oPC=GetAreaOfEffectCreator();
object oTarget=GetExitingObject();
string sVarName=GetName(oPC)+"Field";
if (oTarget==oPC) return;
SetLocalInt(oTarget, sVarName, -1);
}