What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Default Rogue Routine

tozededao

Community Developer
Joined
Jan 15, 2010
Messages
1,225
Reaction score
5
Is it possible to change the rogues % hp that it starts using cadence?

My rogue starts using cadence at 50% and it would be great if he starts using it more like 75/80%, that way it would avoid having to eat after killing a mob
 
If you are willing to try changing it yourself then you'll need to install Visual C# Express which is a free download from microsoft.
  1. make a new C# class library project in VS via create new project wizard.
  2. add reference to Giga.RiftBot.dll, Giga.RIFT.dll,Giga.Common.dll and TreeSharp.dll
  3. Find the default rogue Routine source code here on the forums and add the file to your project. You can also just copy/paste the source code into the existing Class1.cs file that gets automatically created when you make a class library if that's easier for you
  4. Find this line in the source
    Code:
     if (GigaRift.Me.HealthPercent < 55 || (AttackerCount > 1 || GigaRift.Me.HealthPercent < 80))
    and change 55 to 80 or whatever percent you want to have it use cadence at
    hit F6 key to compile then copy the created dll into your Ryftomate/Routines folder. the dll should be in project_folder/bin/debug/
 
Did anyone do this? Im downloading VB Express now. Im brand new to coding hopefully I can help.
 
Back
Top