How would I make an anti-magic, dead magic zone just apply to wizards, does not affect other casters?
anti-magic zone just for wizards
Débuté par
Surek
, mai 04 2014 05:47
#1
Posté 04 mai 2014 - 05:47
#2
Posté 04 mai 2014 - 06:01
you can create a generic trigger with events on enter/ on exit that only will be applied to wiz/sorc
script on enter (your zone)
if(GetLevelByClass(CLASS_TYPE_WIZARD, GetEnteringObject()) >= 1 || GetLevelByClass(CLASS_TYPE_SORCERER, GetEnteringObject()) >= 1)
{
your stuff
}
also you need to create the script on exit to remove the stuff





Retour en haut






