i believe what we have to do is create another class called
WaitForHeals2 "I already did it" if you notice every class that use's
Recharge and Reload the new WaitForHeals2 class... i did not finish it in the merchelper file but i think all that need to change is the NeedRestRSMin class i think if we make a another class called NeedRestRSMin2
and make it look like this
PHP:
public static bool NeedRestRSMin2(float minH, float minRS)
{
try
{ if (Comp != null) if ((Comp.Position.X != 0) && Comp.HealthPercent > 0f && Comp.HealthPercent < 85f) return true; }
catch { }
return (Me.ResourceStat > 50 || Me.HealthPercent < minH);
//if (NR) Logging.Write("Need Rest...");
}
but then you will have to use the
NeedRestRSMin2 in the
WaitForHeals2 instead of the
NeedRestRSMin you know what i mean?