um...i was wondering if some1 would be kind to tell me wear i put the item i want to have this Unique Power *sorry for length*
also...where the heck do ya put the "New" DC check so that NO ONE can resist the 3 spells?
*btw: the Item i plan on using is called Stone of Power ; Tag = stoneofpower **cowers, dun hurt me Talon**
/* Script generated by
Lilac Soul's NWN Script Generator, v. 1.6
For download info, please visit:
http://www.lilacsoul.revility.com */
void main()
{
object oPC;
if (!GetIsPC(GetItemActivatedTarget())
|| (GetObjectType(GetItemActivatedTarget())!=OBJECT_TYPE_CREATURE)
){
return;}
oPC = GetItemActivator();
object oTarget;
oTarget = GetItemActivatedTarget();
effect eEffect;
eEffect = EffectDazed();
ApplyEffectToObject(DURATION_TYPE_PERMANENT, eEffect, oTarget);
oTarget = GetItemActivatedTarget();
eEffect = EffectParalyze();
ApplyEffectToObject(DURATION_TYPE_PERMANENT, eEffect, oTarget);
oTarget = GetItemActivatedTarget();
eEffect = EffectStunned();
ApplyEffectToObject(DURATION_TYPE_PERMANENT, eEffect, oTarget);
}