It's exactly the same as the first page. I just updated to the latest version and didn't backup the old routine.
Try do a clean install in a new folder, copy the CR from the new folder to your main folder, change the codes that needs to be replaced (Remember to backup your current CR)
If your CR somehow became a clean CR after updating the bot, then you need to replace those codes and set Max Melee Range to 40 again.
Find this change that you made from first post: Code: [COLOR=#333333] if(entity.Distance < ExampleRoutineSettings.Instance.MaxMeleeRange) weight += entity.Distance/2; else weight -= entity.Distance/2; var m = entity as Monster; if (m == null) return;[/COLOR] Replace with: Code: if(entity.Distance < OldRoutineSettings.Instance.MaxMeleeRange) weight += entity.Distance/2; else weight -= entity.Distance/2; var m = entity as Monster; if (m == null) return; ExampleRoutineSettings is not used as it is now called OldRoutineSettings
Well, the bot is not casting cyclone for me... I dont know what I'm doing wrong, but its not casting the spell ( I put it on all bar slots except the move slot , still not working ) .. I tryed all the numbers..
Did you follow the changes in the first post? Use those changes and make sure in your regular config you set melee range to 40. I did those changes and switched ExampleRouteSettings to say OldRoutineSettings and I am cycloning away. I set all my skills to 3 which is right click or my cyclone
Yeah, I made the changes, this is how it looks like in my OldRoutine.cs: Code: if(entity.Distance < OldRoutineSettings.Instance.MaxMeleeRange) weight += entity.Distance/2; else weight -= entity.Distance/2; var m = entity as Monster; if (m == null) return; And I also made this: Code: // Do not consider inactive/dead mobs. if (!m.IsActive) return false; // Ignore mobs that are too close to cyclone. if (m.Distance < 5) return false; // Ignore any mob that cannot die. if (m.CannotDie) return false; The formatting is the same as the other // things etc.. Can u upload your OldRoutine.cs ? Maybe I did a formatting error, but leap slam is working fine for example..
did you also do: You also need to set Max Melee Range to 40. thats in the settings when you open the bot up. those are the only changes I did and it works without any hiccups
Yeah, Max Melee Range is 40, I dont know whats wrong, hes using all other skills except cyclone.. I linked it with BloodMagic, but I dont think thats a Problem, right?
nope mine is 5linked with BM as well. I have mine set up default attack as 1, move as middle mouse, cyclone, enduring cry, 3 auras, and blood rage and running no issues. post a log so we can look into it please.
attached is the one I just did on my work pc and tested for 5 minutes and its working without any issues. Edit: also want to add that its not perfect, when there is 1 mob on you it occasionaly just stops cycloning. but I have vengeance with lgoh so that usually kills them after a while. I know the OP said he was going to update a cyclone routine when the bot came up since I believe he was playing cyclone
Why the fuck u mad bro? Edit* Did a quick read through your posts, chill on the QQ. You expect things to work out of the box without you needing to do anything. Time to wake up.