Grizzler 2 Posted April 29, 2018 Share Posted April 29, 2018 Hey been creating my warrior fight class it works pretty well although when it fights elementals or other types that cant be hit with a rend, I tried the "ObjectManager.Me.Entry !=" with the targets ID but still nothing still tries to rend the target anyhelp is appreciated. Link to comment https://wrobot.eu/forums/topic/9245-certain-mobs-immune-to-certain-spells/ Share on other sites More sharing options...
eeny 523 Posted April 29, 2018 Share Posted April 29, 2018 (edited) in C# on my free druid FC i use this boolean to not cast the spell on certain mob types. private bool CanBleed(WoWUnit unit) { return unit.CreatureTypeTarget != "Elemental" && unit.CreatureTypeTarget != "Mechanical"; } Edited April 29, 2018 by eeny Link to comment https://wrobot.eu/forums/topic/9245-certain-mobs-immune-to-certain-spells/#findComment-42975 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now