Hessler 0 Posted April 20, 2020 Share Posted April 20, 2020 Hi I've tried to find anything about this but nothing comes up. I've done a fightclass for my hunter, but when the mobs comes to close it wont back pedal. What I want is that when pet (or someone else) has aggro it should back pedal enough to be able to shoot. I've set for example my steady shot to be between 5-35y but when mobs get to close it just stands there autohitting, regardless if the pet has aggro or not. Anyone have a good tip? Link to comment https://wrobot.eu/forums/topic/12070-back-pedal-for-hunter-fight-class/ Share on other sites More sharing options...
Photogenic 24 Posted May 12, 2020 Share Posted May 12, 2020 Quote local C_Timer = CreateFrame("Frame", "C_Timer")\nC_Timer.schedule = {}\nC_Timer:SetScript("OnUpdate", function(self, elapsed)\n for timestamp,callback in pairs(self.schedule) do\n if timestamp <= GetTime() then\n callback()\n self.schedule[timestamp] = nil\n end\n end\nend)\n\nC_Timer.After = function(duration, callback)\n C_Timer.schedule[GetTime() + duration] = callback\nend\n \nMoveBackwardStart()\nC_Timer.After(9000, function() MoveBackwardStop() end) this is lua script. conditions: target must be targetting your pet target must have health above certain % (meaning its not about to die) Distance between you and target is less than 8 yard You have pet you're in combat Shingston 1 Link to comment https://wrobot.eu/forums/topic/12070-back-pedal-for-hunter-fight-class/#findComment-58121 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