kolton / d2bot-with-kolbot

d2bot game manager by D3STROY3R with kolbot libs by kolton for d2bs
346 stars 332 forks source link

Manual Pickit Trouble Question #1445

Open h0p3z opened 5 years ago

h0p3z commented 5 years ago

Hi, I need help :(, I bang my head on this.

I cant make my pickit work with my sorc, I followed the manual.js step by step: https://github.com/blizzhackers/documentation/blob/master/kolbot/ManualPlay.md/#manual-playing

I load the game, it load my script.nip, i drop a whatever unique on the ground and wont pickit up. If i click "pick to inventory" she teleport pick it but she took anything when i click on it lol even white and blue items.

Do i forget to activate something in a script somewhere for manual pickit? I dont want to make a bot, just playing manual.

2019-04-10 23_45_33-Yves

Thank You

WiZzMaN47 commented 3 years ago

[name] == gold # [quantity] >= 5

On Sat, Dec 5, 2020, 1:51 PM nordxONE notifications@github.com wrote:

yes, the part in the config looks like this: // Pickit config. Default folder is kolbot/pickit. Config.PickitFiles.push("kolton.nip"); Config.PickitFiles.push("MEINE.nip"); Config.PickitFiles.push("LLD.nip"); Config.PickRange = 65; // Pick radius Config.FastPick = true; // Check and pick items between attacks Config.ManualPlayPick = true; // If set to true and D2BotMap entry script is used, will enable picking in manual play.

in MEINE.nip the gold line is inserted. the only other change in the config file is: // User addon script. Read the description in libs/bots/UserAddon.js Scripts.UserAddon = true; // !!!YOU MUST SET THIS TO FALSE IF YOU WANT TO RUN BOSS/AREA SCRIPTS!!! Scripts.Manual = false; // Manual script^

everything else is standard. didnt change anything.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/kolton/d2bot-with-kolbot/issues/1445#issuecomment-739414420, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACFN3U7MEBTADEBEW37UWILSTKMNDANCNFSM4HFCXR4Q .

nordxONE commented 3 years ago

i have found the problem: https://github.com/blizzhackers/kolbot/issues/158

i deleted "&& item.itemType !== 4" in Pickit.js and now it works. lol. - maybe my pickit worked all the time, but i always was looking at picking up gold to check if it works.

Myalcador commented 3 years ago

I have successfully followed the installation instructions and @Kippievdb's instructions above - there is a small error in @Kippievdb's default.dbj that will prevent bot from stashing items.

You must have "include("common/util.js");" in the list at the beginning of the default.dbj file.

Copied from above post:

js_strict(true);

include("json2.js"); include("NTItemParser.dbl"); include("OOG.js"); include("AutoMule.js"); include("Gambling.js"); include("CraftingSystem.js"); include("TorchSystem.js"); include("MuleLogger.js"); include("common/Attack.js"); include("common/Cubing.js"); include("common/CollMap.js"); include("common/Config.js"); include("common/Loader.js"); include("common/Misc.js"); include("common/util.js"); include("common/Pickit.js"); include("common/Pather.js"); include("common/Precast.js"); include("common/Prototypes.js"); include("common/Runewords.js"); include("common/Storage.js"); include("common/Town.js");

ly19811105 commented 3 years ago

i have found the problem: blizzhackers/kolbot#158

i deleted "&& item.itemType !== 4" in Pickit.js and now it works. lol. - maybe my pickit worked all the time, but i always was looking at picking up gold to check if it works.

this is right ,thanks a lot.