XenoBot Forums - Powered by vBulletin

User Tag List

Page 19 of 36 FirstFirst ... 9171819202129 ... LastLast
Results 181 to 190 of 353

Thread: [Update] XenoBot Apophis v14.7.6.656 [10.50 & Apophis Global Release]

  1. #181
    Moderator Nakuu's Avatar
    Join Date
    Feb 2013
    Location
    EU
    Posts
    5,194
    Mentioned
    642 Post(s)
    Tagged
    2 Thread(s)
    Quote Originally Posted by DarkstaR View Post
    I'll fix it to close the depot and sleep a bit after deposit, but it is probably better to fix the scripts.
    Sweet

    Btw. @Rydan, I guess you have to fix your Loot/Deposit List Creator script as well then since it creates 2 functions for stackables/nonstackables, just to not spread 'wrong function's usage'

    EDIT#1:
    Deposit function also fails to deposit all items when you've looted dozens of same item - ie. I always loot like 5-10 each refill of heavy trident and I end up with like 2-3 left in my backpack even though there is plenty of space left in the depot's backpacks.
    Last edited by Nakuu; 07-08-2014 at 09:26 PM.

  2. #182

    Join Date
    May 2012
    Posts
    163
    Mentioned
    5 Post(s)
    Tagged
    0 Thread(s)
    Will u post when Xenosuit can be restarted with the new wait during deposit? @DarkstaR

  3. #183
    XenoBot Developer DarkstaR's Avatar
    Join Date
    Dec 2010
    Posts
    6,104
    Mentioned
    1326 Post(s)
    Tagged
    16 Thread(s)
    Quote Originally Posted by Masse136 View Post
    Will u post when Xenosuit can be restarted with the new wait during deposit? @DarkstaR
    I will. Maybe 3 hours or so when I get home from work

  4. #184
    Senior Member eddyN's Avatar
    Join Date
    May 2013
    Location
    Sweden
    Posts
    525
    Mentioned
    65 Post(s)
    Tagged
    2 Thread(s)
    Quote Originally Posted by Nakuu View Post
    Yes, got it like that:
    lua code:
    Self.DepositItems({7427, 0}, {21175, 0}, {3318, 0}, {21174, 0}, {3381, 0}, {3037, 0}, {21176, 0}, {3039, 0}, {3091, 0}, {8082, 0}, {7401, 0}, {3415, 0}, {7425, 0}, {21177, 0}, {21166, 0}, {3371, 0}, {3370, 0}, {3049, 0}, {3098, 0})
    wait(500, 1000)
    Self.DepositItems({21200, 1}, {7443, 1}, {5911, 1}, {21201, 1}, {5912, 1}, {5910, 1}, {21204, 1}, {21199, 1}, {239, 1}, {238, 1}, {236, 1}, {21202, 1}, {11473, 1}, {11472, 1}, {5878, 1})
    wait(500, 1000)
    Self.DepositItems({3029, 2}, {3032, 2}, {3033, 2}, {3030, 2}, {3028, 2}, {9057, 2}, {5944, 2})

    still failed to deposit items from 2nd and 3rd function call. Restarting walker at Deposit label and it deposited properly, it works fine sometimes and sometimes it doesn't.

    It simply deposit items from first function call, then open browse field where locker is and it's done, Walker keeps going.
    i got the same problem..
    Successful trades:
    Bought 111MS from @Piillaa
    Sold 76EK to @Perfections
    Sold 144EK to @T-Rav
    Sold 64EK and 59EK to @ending
    Sold 20KK to @sunesne
    Sold 341RP to @macrisal
    Sold 20kk to @Powerboat



  5. #185
    Senior Member Bollo's Avatar
    Join Date
    Aug 2012
    Location
    Sweden
    Posts
    1,865
    Mentioned
    174 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Nakuu View Post
    @Syntax
    Worked fine before 10.50 update therefore seems like a bug introduced in latest update to me. Probably because DarkstaR added BrowseField to OpenDepot function. Anyway looking at the code it seems like calling function twice shouldn't really matter...

    And sure, I can do quick-fix to over ~150 scripts, dunno about other scripters though + people who doesn't check forum every day for script updates.
    Same here on a lot of scripts, since the neo-bot.comwhatever loot generator separated the lines, so its easier to dismiss the items that shouldent be there (like mana pots that u use etc).

    As said, can be done on all just a matter of time ,but I dont see why the code wouldent work? It used to work just fine.

  6. #186
    XenoBot Scripts Developer Syntax's Avatar
    Join Date
    Feb 2011
    Posts
    1,658
    Mentioned
    431 Post(s)
    Tagged
    4 Thread(s)
    Quote Originally Posted by Bollo View Post
    Same here on a lot of scripts, since the neo-bot.comwhatever loot generator separated the lines, so its easier to dismiss the items that shouldent be there (like mana pots that u use etc).

    As said, can be done on all just a matter of time ,but I dont see why the code wouldent work? It used to work just fine.
    You have it backwards.
    The code shouldn't have worked very well at all on multiple lines, you're depositing into backpacks that have already been dug down into. That should be a clear sign that something is wrong.

    When the deposit function was first released everyone (mostly) used it properly. For some reason, now, it's being called multiple times in everyone's script. Anyways, Nick will fix the issue by adding a delay and closing the depot and depot backpacks.

    I do recommend you fix your scripts though. You can span the table across multiple lines and tab properly if you wish to distinguish the items, it's cleaner than multiple functions.

    lua code:
    Self.DepositItems(
    -- First Depot Backpack
    {7427, 0},
    {21175, 0},
    {3318, 0},
    {21174, 0},
    {3381, 0},
    -- Second Depot Backpack
    {21200, 1},
    {7443, 1},
    {5911, 1},
    {21201, 1},
    {5912, 1}
    )
    Last edited by Syntax; 07-08-2014 at 10:32 PM.

  7. #187
    Senior Member Bollo's Avatar
    Join Date
    Aug 2012
    Location
    Sweden
    Posts
    1,865
    Mentioned
    174 Post(s)
    Tagged
    0 Thread(s)
    Btw, is it meant to be that if mana pots is not visible, he wont even try to use them?

    Sure good thing to have anti-spam so it dont go around spaming when on 0, but when you have a 1000 in a backapck thats not open, its going to try to use lvl 50+ manas, even tho its a knight without any such thing in support?

  8. #188
    Senior Member Bollo's Avatar
    Join Date
    Aug 2012
    Location
    Sweden
    Posts
    1,865
    Mentioned
    174 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Syntax View Post
    You have it backwards.
    The code shouldn't have worked very well at all on multiple lines, you're depositing into backpacks that have already been dug down into. That should be a clear sign that something is wrong.

    When the deposit function was first released everyone (mostly) used it properly. For some reason, now, it's being called multiple times in everyone's script. Anyways, Nick will fix the issue by adding a delay and closing the depot and depot backpacks.

    I do recommend you fix your scripts though. You can span the table across multiple lines and tab properly if you wish to distinguish the items, it's cleaner than multiple functions.

    lua code:
    Self.DepositItems(
    -- First Depot Backpack
    {7427, 0},
    {21175, 0},
    {3318, 0},
    {21174, 0},
    {3381, 0},
    -- Second Depot Backpack
    {21200, 1},
    {7443, 1},
    {5911, 1},
    {21201, 1},
    {5912, 1}
    )
    Yeah well after all it doesent take too long since the tool, although its a shitloads of time if you think of it as how boring it is..

    Better get some uppers before I get onto this shit

  9. #189
    XenoBot Scripts Developer Syntax's Avatar
    Join Date
    Feb 2011
    Posts
    1,658
    Mentioned
    431 Post(s)
    Tagged
    4 Thread(s)
    Quote Originally Posted by Bollo View Post
    Yeah well after all it doesent take too long since the tool, although its a shitloads of time if you think of it as how boring it is..

    Better get some uppers before I get onto this shit
    Automate it
    Pretty simple regex replace.

  10. #190

    Join Date
    May 2014
    Posts
    80
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Hey guys since the update my backpackreset on scripts stopped working. any idea how i can fix this ?

Posting Permissions

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