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.
18 lines
493 B
Plaintext
18 lines
493 B
Plaintext
//////////////////////////////////////////////////
|
|
// Girallon Windmill Flesh Rip Onhit
|
|
// tob_event_girwfr.nss
|
|
// Tenjac 10/17/07
|
|
//////////////////////////////////////////////////
|
|
|
|
#include "prc_inc_spells"
|
|
|
|
void main()
|
|
{
|
|
object oSpellOrigin = OBJECT_SELF;
|
|
object oTarget = PRCGetSpellTargetObject(oSpellOrigin);
|
|
|
|
int nHits = GetLocalInt(oTarget, "TOB_GIR_WINDMILL_FR");
|
|
nHits ++;
|
|
|
|
SetLocalInt(oTarget, "TOB_GIR_WINDMILL_FR", nHits);
|
|
} |