Closed thecoltster1 closed 5 years ago
Rejuves should always be 0 because you can't buy them. You have zero in the mp column, it won't buy anything like that. Mine:
Config.BeltColumn[0] = "hp";
Config.BeltColumn[1] = "mp";
Config.BeltColumn[2] = "mp";
Config.BeltColumn[3] = "rv";
/* Minimum amount of potions. If we have less, go to vendor to purchase more.
* Set rejuvenation columns to 0, because they can't be bought.
*/
Config.MinColumn[0] = 4;
Config.MinColumn[1] = 4;
Config.MinColumn[2] = 4;
Config.MinColumn[3] = 0;
I changed the config to the settings you provided but he still grabs 3 rows of health potions and leaves a row for rejuves. I changed it to the code you provided in both the config and the Paladin.Hammerdin.js in the Builds directory.
I found it, it was in the Paladin.Hammerdin.js line 279.
21: {
SkillPoints: [112,113],
StatPoints: [0,2,3,3,3],
Update: function(){
Config.BeltColumn=["hp","hp","mp","rv"];
}
},
I have an issue where my autobot wont use my settings for potions. I have the config setup like this,
And like this in the \builds\Paladin.Hammerdin.js
`var AutoBuildTemplate={
For some reason he only picks up 3 health potions and a rejuvenation potion. So right now for some reason the bot thinks his belt is Config.BeltColumn=["hp","hp","hp","rv"];? Trying to figure out where my problem is located. Thanks.