valetine 4 Posted December 14, 2017 Share Posted December 14, 2017 How to Check Riding is a know spell? (wManager.Wow.Helpers.Skill.GetMaxValue(wManager.Wow.Enums.SkillLine.Riding)) >= 150 This code useful? Can i use this code in my fight class? Link to comment https://wrobot.eu/forums/topic/7995-check-riding-spell/ Share on other sites More sharing options...
Droidz 2738 Posted December 14, 2017 Share Posted December 14, 2017 Hello, this code check riging skill level, yes you can use this code in your fightclass (with "C Sharp Code" condition) Link to comment https://wrobot.eu/forums/topic/7995-check-riding-spell/#findComment-36642 Share on other sites More sharing options...
valetine 4 Posted December 15, 2017 Author Share Posted December 15, 2017 23 hours ago, Droidz said: Hello, this code check riging skill level, yes you can use this code in your fightclass (with "C Sharp Code" condition) I dont wanna use cat form to travel when i have learned riding skill,so i ues under code in my fight class. if ((wManager.Wow.Helpers.Skill.GetValue(wManager.Wow.Enums.SkillLine.Riding)) <150 && !ObjectManager.Me.HaveBuff("Cat Form") && ObjectManager.Me.HealthPercent >= 81 && Cat.KnownSpell && ObjectManager.Me.Target < 1 && ObjectManager.Me.ManaPercentage > 70 && !(ObjectManager.Me.InCombatFlagOnly) && ObjectManager.Me.HaveBuff("Thorns") && ObjectManager.Me.HaveBuff("Mark of the Wild")) { Cat.Launch(); Thread.Sleep(400); } But it seems not work. Link to comment https://wrobot.eu/forums/topic/7995-check-riding-spell/#findComment-36684 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