Hi toNyx ,
I loled,
Y u no program more???? =).
I don't really have the time atm, I know I have some skills but I'm a bit lazy these days. (e.g. The modification I made above took me like 1h on notepad++ XD)
But if someone wants help, I'm around

Hi toNyx ,
I loled,
Y u no program more???? =).
Hi toNyx,I don't really have the time atm, I know I have some skills but I'm a bit lazy these days. (e.g. The modification I made above took me like 1h on notepad++ XD)
But if someone wants help, I'm around![]()
Dude, I shouldn't laugh at this but I did, am I ok? Probably gonna try to add it as soon as I get home,
// EDIT
Have funplugin is working as intented, changelog :
- Added setting so people can enable/disable the feature
- Some spices
- Some oil
- Some magic !
Be sure to have some mobility spell so you don't get stucknaabz. Tell me how it goes.
Thank you very much for the plugin man!
Now the first time i installed this it did the first run PERFECTLY finenot attacking the mobs till dominus like its supposed too, but the following run´s it started attacking everything in its way again :/
It shouldn't since I remove the CombatRange in the Ticks, and when Dominus is not around Oo I'll let it run for a while to test, just neds to reach him in merc
// EDIT
I even added a security to restore old value if bot is stopped/setting is uncheckedthat's pretty strange.
Btw, it logs the value changes so maybe join a log![]()
Well i tried reinstalling it and suprise the issue now is it wont even bother changing combat range back to 70 which means reep at dominus while running around him xD
log attached
2015-01-09 17:39:33,438 [13] INFO Logger (null) - [DominusFight] CombatRange set to 1 (old value : 0).
You're using ExampleRoutine right? it seems like you combat range is 0 by default :
There's 2 possible cases :
- You're not using ExampleRoutine
- It can't read the value properly.
I tested it on my side and it's working, anyone can confim the issue?
Hey All,Another thing i have noticed is when i type in 70 into cr and uncheck, check "Ignore Mobs before Dominus fight" box it sets cr to 0 guess its supposed to be like that=?
public void SetCombatRange(int newR)
{
settings.CombatRange = newR;
Log.InfoFormat("[DominusFight] CombatRange set to {0} (old value : {1}).", newR, _oldCombatRange);
}
public void SetCombatRange(int newR)
{
settings.CombatRange = newR;
Log.InfoFormat("[DominusFight] CombatRange set to {0} (old value : {1}).", newR, _oldCombatRange);
[B] settings.Save();
[/B] }
Another thing i have noticed is when i type in 70 into cr and uncheck, check "Ignore Mobs before Dominus fight" box it sets cr to 0 guess its supposed to be like that=?
Hey All,
Try doing a Save(); GUI stuff is flaky.
so find
Code:public void SetCombatRange(int newR) { settings.CombatRange = newR; Log.InfoFormat("[DominusFight] CombatRange set to {0} (old value : {1}).", newR, _oldCombatRange); }
add
Code:public void SetCombatRange(int newR) { settings.CombatRange = newR; Log.InfoFormat("[DominusFight] CombatRange set to {0} (old value : {1}).", newR, _oldCombatRange); [B] settings.Save(); [/B] }
Should set the settings.
Let me know, thanks.