XenoBot Forums - Powered by vBulletin

User Tag List

Page 8 of 11 FirstFirst ... 678910 ... LastLast
Results 71 to 80 of 101

Thread: [Update] XenoBot v2.7.0 [9.63]

  1. #71

    Join Date
    Jul 2012
    Posts
    2
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)


    Well in response to you for the crystal spiders, Heres the cliffs that are considered walkable, sorry for not posting a picture before.
    I sent you a pm asking if you wanted one, then I realized that was stupid of me. Also my post wasn't very helpful before, so in regards to that Ill give as much info as possible.
    Map clicks works fine, I just cant use them with my current script because of the route it takes, But for the walker it trys to run onto those cliffs (Looter and targetter too) Allowing me to get stuck and beat on.
    So I currently use no path finding options, With mapclicks it works pretty well but like I said, looter and targetting still may get stuck.. I hope this gives you a better idea.

    And for feedback, The walker overall is much faster and nicer, It does an amazing job. But with any new code... THERE WILL BE BUGS, So ignore the retards Darkstar.

    Thanks for the wonderful bot, and all the work that went into that coding.
    That last 1% is the hardest % there is.

    -Sunrah

  2. #72
    SomeKindOfMonster's Avatar
    Join Date
    Jan 2012
    Posts
    122
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    I'm having issues with .lua functions, ex. every time bot hits a check way point it decides to leave the spawn with plenty of supplies never happened before. Not sayin its due to this update, just a new and unusual observation

  3. #73
    XenoBot Developer DarkstaR's Avatar
    Join Date
    Dec 2010
    Posts
    6,104
    Mentioned
    1326 Post(s)
    Tagged
    16 Thread(s)
    @Sunrah @sirmate

    What you're rediscovering is an old bug I fixed back when @Tala found it in Yalahar minos. The problem is that there is no item on that tile that is actually blocking. Instead, it's just missing a "tile" which in turn makes it blocking. Essentially, while there nothing to make it block, there's nothing to make it Walkable, and the pathfinder only considers the first possibility.

    The easy fix was this at the time:
    Code:
    if (stack == 0) if (!itemData::isGround(id)) return false;
    Essentially, if the first item isn't a ground tile, we say it's blocking. I accidentally changed that code to this (No clue how this happened).

    Code:
    if (stack == 0xFF) if (!itemData::isGround(id)) return false;
    Effectively re-introducing the bug. Thanks for the reports, it will be fixed.

  4. #74
    Lifetime Subscriber Stusse's Avatar
    Join Date
    Dec 2011
    Location
    solid-scripts.com
    Posts
    3,523
    Mentioned
    346 Post(s)
    Tagged
    1 Thread(s)
    I also had this problem with lua file as above, before it went smooth, today after patch it actully jumps right past em. Maybe you removed delayWalker and setWalkerEnabled from the lua reader aswell by mistake? Just tryign to give some ideas since like some of my functions are fucked up that used to work before... Example is

    setWalkerEnabled(false)
    delayWalker(6000)
    Self.Say("hi")
    wait(900, 1200)
    Self.Say("pass")
    wait(900, 1400)
    Self.Say("sunken")
    wait(500, 800)
    setWalkerEnabled(true)

    Today it just said hi and then started to walk away trying to find a way around the gate resulting in walker stuck after it reached the shore.

    Anyways just trying to help you locate the problem or so, perhaps you'll find the source to it since ur the b0ss @DarkstaR

    /Stusse

  5. #75
    XenoBot Developer DarkstaR's Avatar
    Join Date
    Dec 2010
    Posts
    6,104
    Mentioned
    1326 Post(s)
    Tagged
    16 Thread(s)
    I'll look into the label issue but it's weird because they work for me. delayWalker(), setWalkerEnabled(), etc all work. Might be some of my delays, I'll look at it.

  6. #76
    Banned
    Join Date
    Mar 2012
    Location
    Poland
    Posts
    1,335
    Mentioned
    80 Post(s)
    Tagged
    0 Thread(s)
    i have almost all script from xongiver is not cheap and most of all have problems becose bot was update
    Last edited by Koksik22; 08-30-2012 at 09:04 PM.

  7. #77

    Join Date
    May 2012
    Posts
    43
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I preferred the old walker, just my opinion, found this one to be a bit... well... weird lol seems to take "long" routes to a waypoint. Also messed up some of my scripts, dont know how, so had to clear them and start again, quite a pain but not a majorly big deal. But yea all in all I thought the old walker system worked a lot smoother.

  8. #78

    Join Date
    May 2012
    Posts
    1
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    darkstar i have after ss mass walker stuck- poison and my char no go (brimstone bugs)

  9. #79
    Senior Member
    Join Date
    Feb 2012
    Posts
    595
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    I've experienced problems with the bot skipping labels it did not skip earlier.

    Like this levitate script.

    [code=lua] elseif (labelName == "LevitateUp") then
    setBotEnabled(false)
    Self.Cast("exani hur up", 50)
    wait(1000,2000)
    setBotEnabled(true) [/code]

    I know you said you were gonna look into it above. Just thought I'd add it incase it could help in any way
    My trades at xb:
    Sold 159 ed to DarkDevil
    Bought 180 rp from jikoe
    Bought 310+ ek from Magson
    Sold Recovery Key to LuckyStrike
    Sold 190 rp to Royaliti
    Bought 230+ ed from Andy
    Sold 140+ ek to Tobjun
    Bought 150ms/150 rp from pagge123
    Bought World Transfer Code from Veela

  10. #80

    Join Date
    Jul 2012
    Posts
    27
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Same problem here. WALKER STUCK. every 10 minutes, its just like playin manualy XD

Posting Permissions

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