• Visit Rebornbuddy
  • Cyclone ExampleRoutine Modifications

    Discussion in 'Archives' started by Infinite Monkeys, Apr 5, 2015.

    1. krone6

      krone6 Member

      Joined:
      Jun 11, 2012
      Messages:
      441
      Likes Received:
      0
      Trophy Points:
      16
      It's exactly the same as the first page. I just updated to the latest version and didn't backup the old routine.
       
    2. Zalles83

      Zalles83 Member

      Joined:
      Sep 13, 2014
      Messages:
      51
      Likes Received:
      2
      Trophy Points:
      8
      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)
       
    3. krone6

      krone6 Member

      Joined:
      Jun 11, 2012
      Messages:
      441
      Likes Received:
      0
      Trophy Points:
      16
      Do you still want me to even though I just got done updating the bot?
       
    4. Zalles83

      Zalles83 Member

      Joined:
      Sep 13, 2014
      Messages:
      51
      Likes Received:
      2
      Trophy Points:
      8
      Updating the bot will not give you a new CR
       
    5. krone6

      krone6 Member

      Joined:
      Jun 11, 2012
      Messages:
      441
      Likes Received:
      0
      Trophy Points:
      16
      How come my CR reverted back? All of the changes were undone after updating.
       
    6. Zalles83

      Zalles83 Member

      Joined:
      Sep 13, 2014
      Messages:
      51
      Likes Received:
      2
      Trophy Points:
      8
      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.
       
    7. krone6

      krone6 Member

      Joined:
      Jun 11, 2012
      Messages:
      441
      Likes Received:
      0
      Trophy Points:
      16
      Thanks, I forgot about that part. I'll see what happens.
       
    8. 1glide

      1glide Member

      Joined:
      Jan 19, 2010
      Messages:
      367
      Likes Received:
      1
      Trophy Points:
      18
      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
       
    9. Killahseven

      Killahseven New Member

      Joined:
      Jun 4, 2010
      Messages:
      17
      Likes Received:
      0
      Trophy Points:
      1
      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..
       
    10. 1glide

      1glide Member

      Joined:
      Jan 19, 2010
      Messages:
      367
      Likes Received:
      1
      Trophy Points:
      18
      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:D
       
    11. Killahseven

      Killahseven New Member

      Joined:
      Jun 4, 2010
      Messages:
      17
      Likes Received:
      0
      Trophy Points:
      1
      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..
       
    12. 1glide

      1glide Member

      Joined:
      Jan 19, 2010
      Messages:
      367
      Likes Received:
      1
      Trophy Points:
      18
      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
       
    13. Killahseven

      Killahseven New Member

      Joined:
      Jun 4, 2010
      Messages:
      17
      Likes Received:
      0
      Trophy Points:
      1
      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?
       
    14. 1glide

      1glide Member

      Joined:
      Jan 19, 2010
      Messages:
      367
      Likes Received:
      1
      Trophy Points:
      18
      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.
       
    15. beardy

      beardy New Member

      Joined:
      Jun 12, 2012
      Messages:
      33
      Likes Received:
      0
      Trophy Points:
      0
      Agreed. Uploaded OldRoutine.cs would help.
       
    16. 1glide

      1glide Member

      Joined:
      Jan 19, 2010
      Messages:
      367
      Likes Received:
      1
      Trophy Points:
      18
      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
       

      Attached Files:

    17. beardy

      beardy New Member

      Joined:
      Jun 12, 2012
      Messages:
      33
      Likes Received:
      0
      Trophy Points:
      0
      Nope nothing.
       
    18. 1glide

      1glide Member

      Joined:
      Jan 19, 2010
      Messages:
      367
      Likes Received:
      1
      Trophy Points:
      18
      Post logs, there is no reason that is not working when it works perfectly for me
       
    19. Aazaroth

      Aazaroth New Member

      Joined:
      May 3, 2014
      Messages:
      407
      Likes Received:
      2
      Trophy Points:
      0
      why the fucking bot dont pick up orbs?
       
    20. darkbluefirefly

      darkbluefirefly Community Developer

      Joined:
      Nov 8, 2013
      Messages:
      1,927
      Likes Received:
      18
      Trophy Points:
      38
      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.
       

    Share This Page