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

Monks & Mantra of Healing

Tumzie

Member
Joined
Feb 16, 2013
Messages
341
Reaction score
3
Hey there,

I'm using 2 monks to farm Ghom atm.
My tanking monk isn't using the active/use effect on Mantra of Healing at all and has no other spirit spender.

How can I make him spam that when full spirit?

Thanks in advance!

Tumzie
 
he will use it at 35% health, change the variable in trinity for when he is to use it to prob something like 100/99%

the spam/2 second buff seems to be broken in tirinity - but when it works for me when i changed the variable to 80% for my monk
 
he will use it at 35% health, change the variable in trinity for when he is to use it to prob something like 100/99%

the spam/2 second buff seems to be broken in tirinity - but when it works for me when i changed the variable to 80% for my monk

Can you tell me where I can find this? the monk.cs in trinity -> combat isn't really clear to me im afraid :(
 
Can you tell me where I can find this? the monk.cs in trinity -> combat isn't really clear to me im afraid :(
Line 300 of Monk.cs
Code:
//Use Mantra of Healing active if health is low for shield.
            if (CombatBase.CanCast(SNOPower.X1_Monk_MantraOfHealing_v2) && Player.CurrentHealthPct <= V.F("Monk.MantraOfHealing.UseHealthPct") &&
                !Player.IsIncapacitated && !GetHasBuff(SNOPower.X1_Monk_MantraOfHealing_v2))
            {
                return new TrinityPower(SNOPower.X1_Monk_MantraOfHealing_v2, 0f, Vector3.Zero, CurrentWorldDynamicId, -1, 1, 1, WAIT_FOR_ANIM);
            }

It's using the Trinity options variable in DB. Change that slider to 80 from 35. Done :)
 
A friend was having the same problem.

I took a look at it and can see the variable "Monk.MantraOfHealing.UseHealthPct" is used to determine when mantra of healing is activated.

This variable can be changed here - Trinity > Variables tab > Open Trinity Variable Configuration button > Scroll down to "Monk.MantraOfHealing.UseHealthPct"

Change the value from 0.35 to 0.99 and then click save at the top.
 
Back
Top