XenoBot Forums - Powered by vBulletin

User Tag List

Results 1 to 10 of 94

Thread: [Update] XenoBot v2.7.5 [Looter Fixes | Auto Mount | loadSettings()]

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #11

    Join Date
    Feb 2012
    Location
    Poland
    Posts
    400
    Mentioned
    5 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by DarkstaR View Post
    Looting priority was never really a thing, more of a fluke of implementation. My loop originally was

    Code:
    for i each (itemWeWantToLoot)
    {
          for b each (itemInBody)
              if i == b loot()
    }
    Which caused it to apparently have priority. When I re-coded the looter, however, we ended up with this, causing it to loot items in the order they are found

    Code:
    for i each (itemInBody)
    {
          for b each (itemWeWantToLoot)
              if i == b loot()
    }
    i thought so

    btw i noticed (it was happening in earlier versions also) If u set Utura or Utura gran as High spell and Exura ico as anti paralize spell then anti paralize isnt working while Utura works. Can u take look at this? Its really annyoing issue
    Last edited by kubax36; 09-20-2012 at 08:06 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •