Re: Rock5's ToDo list
Posted: Mon Feb 20, 2012 10:28 pm
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
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.
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
Maybe rock has the time OR maybe someone else has the time to do it.