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

autocasting buffs?

testez1379

New Member
Joined
May 16, 2016
Messages
5
Reaction score
0
i would like to know how to autocast blood rage.

any input will be apreciated
 
i would like to know how to autocast blood rage.

any input will be apreciated

Oldroutine should already do this by default. Just put the skill on a hotkey. Pretty sure this is the original code from OldRoutine

Code:
				// Simply cast Blood Rage if we have it.
				if (_bloodRageSlot != -1)
				{
					// See if we can use the skill.
					var skill = LokiPoe.InGameState.SkillBarHud.Slot(_bloodRageSlot);
					if (skill.CanUse() && !LokiPoe.Me.HasBloodRageBuff && cachedDistance < OldRoutineSettings.Instance.CombatRange)
					{
						await Coroutines.FinishCurrentAction();

						var err1 = LokiPoe.InGameState.SkillBarHud.Use(_bloodRageSlot, true);
						if (err1 == LokiPoe.InGameState.UseResult.None)
						{
							await Coroutines.LatencyWait();

							await Coroutines.FinishCurrentAction(false);

							await Coroutines.LatencyWait();

							return true;
						}

						Log.ErrorFormat("[Logic] Use returned {0} for {1}.", err1, skill.Name);
					}
				}

Not sure what would cause Bloodrage not to cast for you.
 
Back
Top