Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Flawless Gem and Low Rune Pickit Problem
#1
First off, let me say, amazing work on this bot guys. It has been running ALMOST flawlessly with my 88 Hdin.

The only issue I am having is a pretty minor one. I would like the bot to be able to run approximately 18 hours straight, 8 hours for me to sleep, 8 hours for me being at work and 2 hours of travel time. The bot has no problem running for that long except it fills up because its looting a select few low runes and every single flawless gem it comes across. I use the advanced profile which I have customized using scripts from this forum which I have changed slightly for my own use. I have turned off the gems and all runes earlier than ist in the normal pickit file.

I have two theories about fixes that I thought I would run by you all before trying to implement. My first thought was that it was picking up the gems and runes because I have cubing enabled for those items, the runes for various crafting endeavors and the gems because I have the gem upgrade cube formula activated. The other thought was that the bot is somehow looking at the normal or extreme profile's normal pickit, neither of which I have edited because I assumed that the bot simply ignored them when I only have the advanced profile turned on.

I will try both of those options when I return home (one at a time to see if I can isolate the problem). If you have any other suggestions I might try let me know. I will provide more information (i.e. the actual script content I am using) if necessary, when I return home.
Reply
#2
Inebriate Wrote:First off, let me say, amazing work on this bot guys. It has been running ALMOST flawlessly with my 88 Hdin.

The only issue I am having is a pretty minor one. I would like the bot to be able to run approximately 18 hours straight, 8 hours for me to sleep, 8 hours for me being at work and 2 hours of travel time. The bot has no problem running for that long except it fills up because its looting a select few low runes and every single flawless gem it comes across. I use the advanced profile which I have customized using scripts from this forum which I have changed slightly for my own use. I have turned off the gems and all runes earlier than ist in the normal pickit file.

I have two theories about fixes that I thought I would run by you all before trying to implement. My first thought was that it was picking up the gems and runes because I have cubing enabled for those items, the runes for various crafting endeavors and the gems because I have the gem upgrade cube formula activated. The other thought was that the bot is somehow looking at the normal or extreme profile's normal pickit, neither of which I have edited because I assumed that the bot simply ignored them when I only have the advanced profile turned on.

I will try both of those options when I return home (one at a time to see if I can isolate the problem). If you have any other suggestions I might try let me know. I will provide more information (i.e. the actual script content I am using) if necessary, when I return home.
most likely because of cubing in the character config
[SIGPIC][/SIGPIC]Well I’m not there all the time you know Some people, some people, some people, Call it insane, yeah they call it insane, (sugar) I play russian roulette everyday, a man’s sport, With a bullet called life, yeah called life,(sugar)
Reply
#3
Thanks for the quick response. Just got home I will give that a try.

EDIT: Worked flawlessly. The bot no longer picks up the gems allowing it to run a lot longer before filling up.
Reply
#4
ok, but what if I want it to cube flawless and keep the perfect?
Reply
#5
bugme143 Wrote:ok, but what if I want it to cube flawless and keep the perfect?
then you set your cubing config to cube flawless and your pickit to keep perfects
[SIGPIC][/SIGPIC]Well I’m not there all the time you know Some people, some people, some people, Call it insane, yeah they call it insane, (sugar) I play russian roulette everyday, a man’s sport, With a bullet called life, yeah called life,(sugar)
Reply
#6
++++++ tytyty![COLOR="Silver"]

---------- Post added at 11:57 PM ---------- Previous post was at 11:14 PM ----------

[/COLOR]wait pickit is what exactly? which file?
Reply
#7
pickits are located in D2NT\scripts\NTBot\item_configs, and the ones your bot uses are determined by the snagit
configuration in your charactername config file for example
Code:
//-----------------------------------------------------------------------------------
    // SnagIt configuration
    // Select one group only (normal / advance / extreme / Master)
    //-----------------------------------------------------------------------------------

    //NTConfig_NIPFilePath.push("StartingOut/magic_rares.nip");
    //NTConfig_NIPFilePath.push("StartingOut/lldmagic_rare.nip");
    //NTConfig_NIPFilePath.push("StartingOut/set.nip");
    //NTConfig_NIPFilePath.push("StartingOut/unique.nip");  
    //NTConfig_NIPFilePath.push("StartingOut/normal.nip");
        //NTConfig_NIPFilePath.push("StartingOut/sellables.nip");

   [COLOR=DarkOrange] NTConfig_NIPFilePath.push("normal/normal.nip");
    NTConfig_NIPFilePath.push("normal/magic_rare.nip");
    NTConfig_NIPFilePath.push("normal/set.nip");
    NTConfig_NIPFilePath.push("normal/unique.nip");  
    NTConfig_NIPFilePath.push("normal/craft.nip");
    NTConfig_NIPFilePath.push("normal/Runeword.nip");
    NTConfig_NIPFilePath.push("normal/shop.nip");
    NTConfig_NIPFilePath.push("normal/White.nip");
    NTConfig_NIPFilePath.push("normal/Magic.nip");  
    NTConfig_NIPFilePath.push("normal/key.nip");
    NTConfig_NIPFilePath.push("normal/Rare.nip");  
    NTConfig_NIPFilePath.push("normal/Crafted.nip");
    NTConfig_NIPFilePath.push("normal/lldmagic_rares.nip");  
    NTConfig_NIPFilePath.push("normal/lldnormal.nip");[/COLOR]

    //NTConfig_NIPFilePath.push("advance/normal.nip");
    //NTConfig_NIPFilePath.push("advance/magic_rare.nip");
    //NTConfig_NIPFilePath.push("advance/set.nip");
    //NTConfig_NIPFilePath.push("advance/unique.nip");
    //NTConfig_NIPFilePath.push("advance/craft.nip");

    //NTConfig_NIPFilePath.push("extreme/normal.nip");
    //NTConfig_NIPFilePath.push("extreme/magic_rare.nip");
    //NTConfig_NIPFilePath.push("extreme/set.nip");
    //NTConfig_NIPFilePath.push("extreme/unique.nip");
    //NTConfig_NIPFilePath.push("extreme/craft.nip");
    //NTConfig_NIPFilePath.push("extreme/key.nip");
    //NTConfig_NIPFilePath.push("extreme/myadds.nip");
    //NTConfig_NIPFilePath.push("extreme/westadds.nip");
    //NTConfig_NIPFilePath.push("extreme/eastadds.nip");

    //NTConfig_NIPFilePath.push("Master/Charms.nip");
    //NTConfig_NIPFilePath.push("Master/Crafted.nip");
    //NTConfig_NIPFilePath.push("Master/Cubed.nip");
    //NTConfig_NIPFilePath.push("Master/CustomAdditions.nip");
    //NTConfig_NIPFilePath.push("Master/FAST.nip");
    //NTConfig_NIPFilePath.push("Master/Gold Potions Runes Gems Essences Keys Organs.nip");
    //NTConfig_NIPFilePath.push("Master/Magic.nip");
    //NTConfig_NIPFilePath.push("Master/Rare.nip");
    //NTConfig_NIPFilePath.push("Master/Set.nip");
    //NTConfig_NIPFilePath.push("Master/Unid.nip");
    //NTConfig_NIPFilePath.push("Master/Unique.nip");
    //NTConfig_NIPFilePath.push("Master/White.nip");
    //NTConfig_NIPFilePath.push("Master/Runeword.nip");

notice how the normal set (colored orange) is uncommented, that means the normal snagit(also known as a pickit) is the one the bot uses
[SIGPIC][/SIGPIC]Well I’m not there all the time you know Some people, some people, some people, Call it insane, yeah they call it insane, (sugar) I play russian roulette everyday, a man’s sport, With a bullet called life, yeah called life,(sugar)
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Sin claw pickit help! Sicks 4 184 07-28-2012, 09:51 PM
Last Post: Sicks
  Map loader problem ... it disapper immediately Adamz 9 247 07-13-2012, 02:21 AM
Last Post: comper
  MasivB's D2NT Simple Unique PickIt masivb 1 118 07-03-2012, 05:03 AM
Last Post: comper
  D2nt Bot jewel pickit/godly item pickit Nightwish 3 233 06-23-2012, 04:18 AM
Last Post: comper
  telekinesis problem Tacos 5 228 06-19-2012, 05:44 AM
Last Post: comper
  Normal/socketed item pickit list Jammer74 39 8,046 05-13-2012, 03:43 AM
Last Post: comper
  Complete Diablo 2 Unique Pickit script for D2Nt bot Jammer74 68 32,364 05-03-2012, 07:01 AM
Last Post: comper
  How to turn off pickit/snagit? OnaPalehorse 1 241 04-26-2012, 07:55 PM
Last Post: comper
  Problem with the bot Rhonx 9 413 04-08-2012, 03:38 AM
Last Post: comper
  godly D2NT bot magic_rare pickit skidude 92 42,589 04-06-2012, 09:37 AM
Last Post: comper

Forum Jump:


Users browsing this thread: