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

Dominus or Maps?

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 ;)
 
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,
Oh lol, I remembered when I first started, I was using notepad++,
Pushedx told me to get Visual and it would be much easier. Boy was he right =).
Thanks for the helps!
 
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 fun ;) plugin 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 stuck ;) naabz. 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 fine :) not attacking the mobs till dominus like its supposed too, but the following run´s it started attacking everything in its way again :/
 
Thank you very much for the plugin man!

Now the first time i installed this it did the first run PERFECTLY fine :) not 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 unchecked :o that's pretty strange.
Btw, it logs the value changes so maybe join a log ;)
 
Last edited:
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 unchecked :o that'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
 

Attachments

Last edited:
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

You're using ExampleRoutine right? it seems like you combat range is 0 by default :

2015-01-09 17:39:33,438 [13] INFO Logger (null) - [DominusFight] CombatRange set to 1 (old value : 0).

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?
 
As alter5 said, the code is not setting the combat range back above 0. I see you have resetcombat range coded in but if theres a way to have it just set combat range to 70 or whatever that would work better. (Im not sure how to code that in otherwise I would).

I went into my settings and manually changed the default values all to 30 and the bot still resets them to 0.
 
Last edited:
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?

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=?
 
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.
 
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.

I'm not at home atm, so to fix it temporary, disable the Dominus Plugin, set your CombatRange to 70, enable Dominus Plugin again, should fix it. Also, be sure to have the bot stopped so thing don't go wrong ;)
I'll attempt to fix things today, I'll have some time to think about things :)

The class that modify the CR's values is a reference, so as soon you modify something in it, it triggers the setter, that trigger the save itself, so no point saving them I guess.
But I'll add some security as soon as I can
 
Last edited:
Back
Top