XenoBot Forums - Powered by vBulletin

User Tag List

Page 7 of 8 FirstFirst ... 5678 LastLast
Results 61 to 70 of 72

Thread: [Update] XenoBot v3.0.1

  1. #61
    XenoBot Scripts Developer Joshwa534's Avatar
    Join Date
    May 2012
    Location
    Texas, USA
    Posts
    4,890
    Mentioned
    517 Post(s)
    Tagged
    3 Thread(s)
    Quote Originally Posted by DarkstaR View Post
    The bot will never try to step on anything that it see's as blocking. If it cannot find a path, it chills in place. Make sure that part of the script isn't trying to use an item or rune which you don't have - that could be causing the same message.
    So if you've set targeting to keep your character at least 3 squares away and you get trapped, the character will stop trying to get 3 squares away from the target? Just curious how it works in this situation, if that is the case then there most be another issue and we'll look into all possibilities. @Tripkip

    Thank you,
    Joshwa534

  2. #62
    XenoBot Developer DarkstaR's Avatar
    Join Date
    Dec 2010
    Posts
    6,104
    Mentioned
    1326 Post(s)
    Tagged
    16 Thread(s)
    Quote Originally Posted by Joshwa534 View Post
    So if you've set targeting to keep your character at least 3 squares away and you get trapped, the character will stop trying to get 3 squares away from the target? Just curious how it works in this situation, if that is the case then there most be another issue and we'll look into all possibilities. @Tripkip

    Thank you,
    Joshwa534
    It will keep pathing until it finds a path.

  3. #63
    XenoBot Scripts Developer Joshwa534's Avatar
    Join Date
    May 2012
    Location
    Texas, USA
    Posts
    4,890
    Mentioned
    517 Post(s)
    Tagged
    3 Thread(s)
    Quote Originally Posted by DarkstaR View Post
    It will keep pathing until it finds a path.
    Thank you =]

  4. #64
    Senior Member Tripkip's Avatar
    Join Date
    Aug 2012
    Location
    Netherlands
    Posts
    1,310
    Mentioned
    105 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Joshwa534 View Post
    Thank you =]
    Hmm it isnt using any runes, But I think I might know the "problem". In the targetting prioritys we got fire elementals (FE) set higher then the demon itself, because it can get u trapped between the demon,FE and special area. So to avoid standing in the waves, we let the fe's be killed first. If a fire elemental is summoned behind the demon, and therefore unreachable, it will try to target the FE? and thats whats causing, the sorry not possible? Cant think of anything else, altho it shouldnt try to attack a monster thats unreachable, unless it see's the demon as "walkable"

    @DarkstaR

  5. #65
    XenoBot Scripts Developer Joshwa534's Avatar
    Join Date
    May 2012
    Location
    Texas, USA
    Posts
    4,890
    Mentioned
    517 Post(s)
    Tagged
    3 Thread(s)
    Quote Originally Posted by Tripkip View Post
    Hmm it isnt using any runes, But I think I might know the "problem". In the targetting prioritys we got fire elementals (FE) set higher then the demon itself, because it can get u trapped between the demon,FE and special area. So to avoid standing in the waves, we let the fe's be killed first. If a fire elemental is summoned behind the demon, and therefore unreachable, it will try to target the FE? and thats whats causing, the sorry not possible? Cant think of anything else, altho it shouldnt try to attack a monster thats unreachable, unless it see's the demon as "walkable"

    @DarkstaR
    You're exactly right on everything you just said. We put fire elementals as a higher priority than demons because they will cause you to get trapped in a few areas that will have you facing a demon head on instead of running away from it. Although.. you're using this with a paladin or druid, is it not able to shoot the fire elemental from where its standing?

  6. #66
    Senior Member Tripkip's Avatar
    Join Date
    Aug 2012
    Location
    Netherlands
    Posts
    1,310
    Mentioned
    105 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Joshwa534 View Post
    You're exactly right on everything you just said. We put fire elementals as a higher priority than demons because they will cause you to get trapped in a few areas that will have you facing a demon head on instead of running away from it. Although.. you're using this with a paladin or druid, is it not able to shoot the fire elemental from where its standing?
    Yep I indeed hunt this with ED and soon RP! havent checked the rp yet. But I think the sorry not possible is caused by, the small amount of time it does try to attack fe, trys to reach it, and then finds out it cant, and goes back to the demon. So yes it might actually be able to shoot the fe but the bot blocks u from doing it because you cannot reach the monster. Anyways I might have a solution as I posted in your thread!

    Make the whole area in that east tower special area, except the tile north of the stairs. This way demon + fe can hit you (if demon is standing in front of you), and it wont try to walk anywhere because its blocked by special area?
    Last edited by Tripkip; 01-01-2013 at 01:19 PM.

  7. #67
    Lifetime Subscriber
    Join Date
    May 2011
    Posts
    21
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    With the verison 3 of xenobot, will the new classes overwrite some of the old ones?

    Excuse my unawareness.

  8. #68
    KingDavey's Avatar
    Join Date
    Dec 2012
    Posts
    69
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Okay bro i have encountered a problem, probably due to operator error, but here she goes:
    This works fine,



    Code:
    --ALARM SETTINGS--
    ------------------------------------------------------------------------------------------------------------------------------------
    --Manas
    local mA = 50000							--How mana manas to sound the alarm.
    local mT = "mana potion"				--What type of mana potion are you using.
    --Healths
    local oA = 10							--How mana "other" items to sound the alarm. (Can be anything, runes, potions, supplys.)
    local oT = "ultimate health potion"		--What type of item is this. (Can be anything, runes, potions, supplys.)
    --Capacity
    local cA = 50							--How much cap to sound the alarm.
    ------------------------------------------------------------------------------------------------------------------------------------
    --Do not touch below--
    
    while true do
        if Self.ItemCount(mT) < mA or Self.ItemCount(oT) < oA or Self.Cap < cA then
            alert()
            wait(5000)
        end
        wait(300,500)
    end
    
    --Do not touch above--
    
    --[[
    Signed,
    KingDavey
    ]]

    But this, i am getting a nice little error.

    Code:
    --ALARM SETTINGS--
    ------------------------------------------------------------------------------------------------------------------------------------
    --Manas
    local mA = 50							--How mana manas to sound the alarm.
    local mT = "mana potion"				--What type of mana potion are you using.
    --Healths
    local oA = 10							--How mana "other" items to sound the alarm. (Can be anything, runes, potions, supplys.)
    local oT = "ultimate health potion"		--What type of item is this. (Can be anything, runes, potions, supplys.)
    --Capacity
    local cA = 50							--How much cap to sound the alarm.
    ------------------------------------------------------------------------------------------------------------------------------------
    --Do not touch below--
    
    while true do
        if Self.ItemCount(mT) < mA or Self.ItemCount(oT) < oA or Self.Cap < cA then
            alert()
            wait(5000)
        end
        wait(300,500)
    end
    
    --Do not touch above--
    
    --[[
    Signed,
    KingDavey
    ]]

    All i did was change the mana amount, this is the error.

    Code:
    20:18 XenoScript Error:
               Script: Alerts.lua
               Line #: 15
               Chunk: ...?Users?DVJasper?Documents?XenoBot?Scripts?Alerts.lua
               Error: attempt to compare function with number
    This is an error with user-input and should not be reported as a bug with XenoBot.
    What am i doing wrong? Thanks for your reply.
    Also, how i do that code lua box? [CODE][/CODE=lua] shit like that is what i was trying, i dunno how lol.
    Once more into the fray.
    Into the last good fight I’ll ever know.
    Live and die on this day.
    Live and die on this day.

  9. #69
    sirmate's Avatar
    Join Date
    Dec 2011
    Location
    Poland
    Posts
    83
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by KingDavey View Post
    What am i doing wrong? Thanks for your reply.
    It's cleary says what you are doing wrong: Error: attempt to compare function with number.
    You don't call Self.Cap function and then match, instead you try to compare it (Self.Cap function) with number and that's why you are getting such error.
    (๏̯͡๏ )

  10. #70
    KingDavey's Avatar
    Join Date
    Dec 2012
    Posts
    69
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by sirmate View Post
    It's cleary says what you are doing wrong: Error: attempt to compare function with number.
    You don't call Self.Cap function and then match, instead you try to compare it (Self.Cap function) with number and that's why you are getting such error.
    Got it so i left out the parenthesis, thanks bro.
    Once more into the fray.
    Into the last good fight I’ll ever know.
    Live and die on this day.
    Live and die on this day.

Posting Permissions

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