• Visit Rebornbuddy
  • [A1 Inferno]FallenDev's, Bossqwerty-spiced FoM zorked edition -> MP10 E-skipping

    Discussion in 'Archives' started by zorked, Oct 6, 2013.

    1. Kevin Spacey

      Kevin Spacey Community Developer

      Joined:
      Aug 31, 2013
      Messages:
      2,830
      Likes Received:
      11
      Trophy Points:
      38
      will try with new trinity, with old i can did this


      dont work like it suppos to be with zorked code
       
    2. Kevin Spacey

      Kevin Spacey Community Developer

      Joined:
      Aug 31, 2013
      Messages:
      2,830
      Likes Received:
      11
      Trophy Points:
      38
      Edit - with "Y" it works fine
      NVM
       
    3. immortalhz

      immortalhz Member

      Joined:
      Jun 9, 2012
      Messages:
      362
      Likes Received:
      5
      Trophy Points:
      18
      try this
      if (validLocation.X < 0 || validLocation.Y < 0 || (Trinity.Player.IsInTown && validLocation.Y > 3))
      columns and rows starts from 0, not 1... my mistake
      should work
      _Y
      X0 1 2 3 4 5 6 7 8 9
      _1
      _2
      _3
      _4
      _5
      if you have first 4 rows filled ( from 0 to 3), then Y == 4 -> TownRun.
       
    4. Kevin Spacey

      Kevin Spacey Community Developer

      Joined:
      Aug 31, 2013
      Messages:
      2,830
      Likes Received:
      11
      Trophy Points:
      38
    5. immortalhz

      immortalhz Member

      Joined:
      Jun 9, 2012
      Messages:
      362
      Likes Received:
      5
      Trophy Points:
      18
    6. zorked

      zorked New Member

      Joined:
      Mar 23, 2013
      Messages:
      576
      Likes Received:
      4
      Trophy Points:
      0
      The problem with this is, that even if it works, you need to do a hardcoded townrun with an NPC that actually trades potions. The "standard" NPC Trinity/DB does townrun with in Act1 does not do so.
       
    7. Kevin Spacey

      Kevin Spacey Community Developer

      Joined:
      Aug 31, 2013
      Messages:
      2,830
      Likes Received:
      11
      Trophy Points:
      38
      jsut tested with this lines

      [​IMG]


      its i think never gonna happend because you must pick up a lot jewerly without any 2-slots items, but when this last slote i marked become full, bot doing usual townrun from location to town/
      everything good and

      if (validLocation.X < 0 || validLocation.Y < 0 || (Trinity.Player.IsInTown && validLocation.Y > 3))

      works for me
       
    8. immortalhz

      immortalhz Member

      Joined:
      Jun 9, 2012
      Messages:
      362
      Likes Received:
      5
      Trophy Points:
      18
    9. Kevin Spacey

      Kevin Spacey Community Developer

      Joined:
      Aug 31, 2013
      Messages:
      2,830
      Likes Received:
      11
      Trophy Points:
      38
      i trying this now but have some errors.

      doing all as you say, after saving files i delete CompiledAssemblies and started bot again

      Code:
      [23:08:38.862 N] Compiler Error: c:\BOTS\barb_K!\Plugins\Trinity\Cache\RefreshDiaObjects.cs(329,38) : warning CS0168: The variable 'ex' is declared but never used
      [23:08:38.862 N] Compiler Error: c:\BOTS\barb_K!\Plugins\Trinity\DbProvider\TownRun.cs(138,122) : error CS0103: The name 'bpslots' does not exist in the current context
      i dont change refreshDiaObjects, dunno why it broken, anyway. You see this variable dont works...

      [​IMG]
       
    10. immortalhz

      immortalhz Member

      Joined:
      Jun 9, 2012
      Messages:
      362
      Likes Received:
      5
      Trophy Points:
      18
      New solution

      only changes in ItemHandling.cs other files - normal

      Code:
      internal static Vector2 FindValidBackpackLocation(bool IsOriginalTwoSlot)
              {
                  try
                  {
                      bool[,] BackpackSlotBlocked = new bool[10, 6];
      				[SIZE=3][B]int bpslots =0;[/B][/SIZE]
                      // Block off the entire of any "protected bag slots"
                      foreach (InventorySquare square in Zeta.CommonBot.Settings.CharacterSettings.Instance.ProtectedBagSlots)
                      {
                          BackpackSlotBlocked[square.Column, square.Row] = true;
      					[SIZE=3][B]bpslots++;[/B][/SIZE]
                      }
      
                      // Map out all the items already in the backpack
                      foreach (ACDItem item in ZetaDia.Me.Inventory.Backpack)
                      {
                          if (item.BaseAddress == IntPtr.Zero)
                          {
                              return new Vector2(-1, -1);
                          }
                          int inventoryRow = item.InventoryRow;
                          int inventoryColumn = item.InventoryColumn;
      					
                          // Mark this slot as not-free
                          BackpackSlotBlocked[inventoryColumn, inventoryRow] = true;
      					[SIZE=3][B]bpslots++;[/B][/SIZE]
                          // Try and reliably find out if this is a two slot item or not
                          if (item.IsTwoSquareItem && inventoryRow < 5)
                          {
                              BackpackSlotBlocked[inventoryColumn, inventoryRow + 1] = true;
      						[SIZE=3][B]bpslots++;[/B][/SIZE]
                          }
                      }
                         [SIZE=3][B] //force TownRun if we are in town and  not-free slots > 40
      				if (Trinity.Player.IsInTown && bpslots > 40)
      				{
      					return new Vector2(-1,-1);
      				}
      				[/B][/SIZE]
                      int x = -1;
                      int y = -1;
       
    11. Kevin Spacey

      Kevin Spacey Community Developer

      Joined:
      Aug 31, 2013
      Messages:
      2,830
      Likes Received:
      11
      Trophy Points:
      38
      immortalhz [​IMG][​IMG][​IMG]

      it works great
       
    12. zakne11

      zakne11 New Member

      Joined:
      Jan 11, 2013
      Messages:
      285
      Likes Received:
      0
      Trophy Points:
      0
      find why bot leaving crypt or stuck in it

      bot when fighting with mobs accidentaly click portal to the crypt, reloading by yar dont give succes to load crypt porofile.
       
    13. zorked

      zorked New Member

      Joined:
      Mar 23, 2013
      Messages:
      576
      Likes Received:
      4
      Trophy Points:
      0
      The bot should auto load the crypts xml file when accidentally entering crypts.
       
    14. ihateblizzard

      ihateblizzard New Member

      Joined:
      Jul 20, 2012
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      0
      I know this is completely off topic and for that I apologize but I would like to know of anything I can do with my botting to reduce the chances of getting banned. Yes I've heard that you should not bot on an account that you don't wish to loose, I think we have all heard that but realistically who wants to hand lvl paragons?

      I'm only botting to grind out 6x Paragon 100's which with this zorked profile botting every day for 12 hours a day would take about 4 more weeks of botting. I'm only botting on one account, using the barb class, I have no magic or gold find gear, I'm only looting DE's, I'm farming MP10 with very good gear, I monitor my bot for the full 12 hours while I watch movies (yes I know I'm crazy lol) I also try to have conversations with other players on my friends list to give the illusion that I am actually playing the game while I bot, which I read on another post is suppose to help. I'm only using the Trinity plugin & the zorked edition profile listed here. No other mods, hacks, or cheats are being used.

      Is there anything else I can do other than just not botting, lol, to help prevent the possibility of a ban? Based on my research which I've done a lot of on this site and others is most ppl who get banned are botting 24/7 and on multiple accounts along with other mods or plugins. I've done everything I can to try to keep this as simple and undetectable as I possibly can think of but if anyone has any further advice other than what I've already listed I would be very grateful.

      Edit: This is my 2nd week of botting and I need about 4 more weeks to complete my paragons.
       
    15. zorked

      zorked New Member

      Joined:
      Mar 23, 2013
      Messages:
      576
      Likes Received:
      4
      Trophy Points:
      0
      Well, I think you can't do any more. And Yes, it's quite offtopic :D
       
    16. ihateblizzard

      ihateblizzard New Member

      Joined:
      Jul 20, 2012
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      0
      Thank you, and btw it wont happen again. I posted here mainly because I'm using your profile to lvl. Great profile btw do you have a paypal account that accepts donations? I didn't see one in the main post.
       
    17. altermann

      altermann New Member

      Joined:
      Oct 22, 2013
      Messages:
      6
      Likes Received:
      0
      Trophy Points:
      0
      After the bot findes a Crypt. He goes in and if there are creeps he starts to killing them (after he killed the creeps he also leaves) . If there are no creeps he just ran out and stuck there.
      U have any idea whats the reason for this :(=?

      LOG
      [11:38:06.344 N] #2: Dungeon Check (North)
      [11:38:06.386 N] JACKPOT! Decaying found! (North)
      [11:38:06.452 N] [Trinity] [TrinityMoveTo] Started Tag; x="1775" y="601" z="0,1" name="dungeon safe entry" questId="1" stepId="0" worldId="71150" levelAreaId="19952"
      [11:38:07.922 N] [Trinity] [TrinityMoveTo] tag finished: Within path precision x="1775" y="601" z="0,1"
      [11:38:07.977 N] Interacting with object g_Portal_ArchTall_Orange-1651
      [11:38:11.265 N] ========== Grid segmentation resetting!!! ============
      [11:38:31.802 N] Loaded profile Decaying Crypt zorked edition
      [11:38:32.870 N] Interacting with object g_Portal_ArchTall_Blue-1749
      [11:38:33.973 N] Interacting with object g_Portal_ArchTall_Blue-1749

      after i try to get in again he just went back out :(
       
    18. zorked

      zorked New Member

      Joined:
      Mar 23, 2013
      Messages:
      576
      Likes Received:
      4
      Trophy Points:
      0
      Haha, thanks. Well there's a lot of stuff here that's not on topic so I don't mind it that much.

      And keep your donation. Or support the electronic frontier foundation or something :) ( https://supporters.eff.org/donate )
      Against surveillance and stuff. It's an important topic for me :)



      This bug seems to appear once in a while for a few users. And I can't reproduce it and I have no clue where that originates from... The Portal is even blacklisted, so the bot should under no circumstances use it...
       
    19. altermann

      altermann New Member

      Joined:
      Oct 22, 2013
      Messages:
      6
      Likes Received:
      0
      Trophy Points:
      0
      so i cant do anything about it? maybe reinstall the demonbuddy or something?
       
    20. zorked

      zorked New Member

      Joined:
      Mar 23, 2013
      Messages:
      576
      Likes Received:
      4
      Trophy Points:
      0
      You can try. You could also try to vary a few Trinity settings, DB settings and stuff. But unfortunately I have no guide for you :/
       

    Share This Page