Page 5 of 5

Re: Rock5's ToDo list

Posted: Mon Feb 20, 2012 10:28 pm
by lisa
I know it might seem confusing but the bot isn't set to use best or worst pots even though it is worded "best"

Basically the current choices are "best" or "minstack"

So it will either use the highest lvl item or it will use the item with lowest number in stack.

looks like this

Code: Select all

	local select_strategy_minstack = "minstack";
	local select_strategy_default = "best";

		if( settings.profile.options.USE_MANA_POTION == select_strategy_minstack ) then
			select_strategy = select_strategy_minstack;
		else
			select_strategy = select_strategy_default;
		end
So in order to change it to use worst or best, basically would need to recode the entire function CInventory:bestAvailableConsumable(type) which I never planned to do when I added in the usage of the other potions.

Maybe rock has the time OR maybe someone else has the time to do it.

Re: Rock5's ToDo list

Posted: Mon Feb 20, 2012 10:47 pm
by rock5
So let me understand, if your hp is 80% does it use the 40% pot or does it use the 20% pot?. If the 20 then I would just change the hp level the pot gets used. Or I'd just carry around the 20% pots. If I'm going to to go kill low level mobs to level my skill and only want to use 20% pots, then I would go to my bank and gear myself appropriately and drop off all the pots I don't want to use.

Re: Rock5's ToDo list

Posted: Thu Jan 31, 2013 3:13 am
by Micke
Hi Rock5,

for a easier managment (for u) u could put this list into the svn along the branch, and the URL to the file (inside the svn), link in the forum.
so revisions and documentation/todo and so on is always sync, especially if u have to look for changes

Re: Rock5's ToDo list

Posted: Thu Jan 31, 2013 4:47 am
by rock5
Wow you've resurrected an old post. I only used this list when I had so many things on my plate that I couldn't keep track of them all. I don't use it any more. Maybe I deal with things faster these days. :D

Surprisingly, I've since done quite a few of those unfinished tasks.

Re: Rock5's ToDo list

Posted: Fri Feb 01, 2013 9:48 am
by Micke
;-)

Re: Rock5's ToDo list

Posted: Mon Jul 15, 2013 9:30 pm
by BeyondNames
Is it possible to change waypoints without closing Rombot yet?

Re: Rock5's ToDo list

Posted: Mon Jul 15, 2013 10:40 pm
by lisa
BeyondNames wrote:Is it possible to change waypoints without closing Rombot yet?
It's called

Code: Select all

loadPaths()
and it's been in the bot for a long time.

Re: Rock5's ToDo list

Posted: Tue Jul 16, 2013 2:24 am
by rock5
I think it's about time I unpin this topic seeing as I don't use it anymore. I could always pin it again if I want to start using it again.

Re: Rock5's ToDo list

Posted: Tue Jul 16, 2013 10:59 am
by BeyondNames
Awesome I couldn't believe I didn't know that