XenoBot Forums - Powered by vBulletin

User Tag List

Page 2 of 8 FirstFirst 1234 ... LastLast
Results 11 to 20 of 72

Thread: [Update] XenoBot v3.0.1

  1. #11
    Banned
    Join Date
    Aug 2012
    Location
    Netherlands
    Posts
    1,460
    Mentioned
    38 Post(s)
    Tagged
    0 Thread(s)
    This script worked fine before 3.0 . And i know you changed the Self.ItemCount but i just cant wrap my head around what's wrong.

    PHP Code:
    -------------------------------------------------------
     ------------
    Avani's special variables looter----------
    -------------------------------------------------------

    DestBP = "Jewelled Backpack" -- BP by name
    MaxAmount = 4 -- Amount of items you want to loot max.
    monstersToLoot = {"Dead Nightmare Scion","Dead Tiger","Dead Nightmare"} -- Monster you want to loot
    itemsToLoot = {3577, 3582} -- Items you want to loot

    ---------------------------------------------------------
    ---------------------------------------------------------

    local counter = 0
    while (true) do
        for i=0,# monstersToLoot do
            local MainBp = Container.GetByName(monstersToLoot[i])
            local DestinationBp = Container.GetByName(DestBP)
            for spot = 0, MainBp:ItemCount() do
                local item = MainBp:GetItemData(spot)
                for x=0,# itemsToLoot do
                    if (item.id == itemsToLoot[x]) then
                counter = 0
                for y=0,# itemsToLoot do
                counter = counter + Self.ItemCount(itemsToLoot[y])
                end
                if counter < MaxAmount then
                    MainBp:MoveItemToContainer(spot, DestinationBp:Index(), 0)
                    end 
                        wait(500)
                    end
                end
                end
            end
            
        wait(200)
    end 

  2. #12

    Join Date
    Feb 2012
    Location
    Poland
    Posts
    400
    Mentioned
    5 Post(s)
    Tagged
    0 Thread(s)
    @DarkstaR u are making nice updates last time. I miss just two things now - Safe list in player detected alarm, becouse if ek from other team is boting on same spawn as me the alarm is ringing all the time, if i turn it off i wont see if someone come to heal monsters for me and i will die. The second thing is to turn for ex. Player detected alarm on/off on label. Its needed becouse when i am going to refill its ringing and should be nice if it will ring only on spawn

    It is possible to add something like that in upcoming update?

  3. #13
    XenoBot Developer DarkstaR's Avatar
    Join Date
    Dec 2010
    Posts
    6,104
    Mentioned
    1326 Post(s)
    Tagged
    16 Thread(s)
    @All: re-download and re-install for a fix with the UseLever function.



    Quote Originally Posted by kubax36 View Post
    @DarkstaR u are making nice updates last time. I miss just two things now - Safe list in player detected alarm, becouse if ek from other team is boting on same spawn as me the alarm is ringing all the time, if i turn it off i wont see if someone come to heal monsters for me and i will die. The second thing is to turn for ex. Player detected alarm on/off on label. Its needed becouse when i am going to refill its ringing and should be nice if it will ring only on spawn

    It is possible to add something like that in upcoming update?
    Might add it soon, once I get all issues with version 3 fixed.

  4. #14
    Lifetime Subscriber
    Join Date
    Dec 2011
    Location
    Michigan
    Posts
    2,644
    Mentioned
    81 Post(s)
    Tagged
    0 Thread(s)
    ty ds.
    Completed Trades:
    Purchased 190 ED W/ 93 days VOUCHER from @sausting
    Purchased Brass Set on Dolera from @quaqua
    Purchased 10kk on Dolera from @Ghazkyt
    Purchased 20kk on Antica from @Ghazkyt

  5. #15
    Lifetime Subscriber
    Join Date
    Dec 2011
    Posts
    994
    Mentioned
    13 Post(s)
    Tagged
    0 Thread(s)
    It makes somethings for in-liners much nicer. This update doesnt look like it requires me to make any changes most of these are masks of the old functions which is fine. Thanks for fixing the chat channels ill be testing that out in a bit.

    I know its bad to ask here but can we please get Self.Soul()? I already have a script for mana training, 300 life rings, and 8k mushrooms.

  6. #16

    Join Date
    May 2012
    Posts
    116
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Downloading right now.
    Thanks boss !
    We shall meet again before the conclusion of this drama...
    Then you will learn of the history... I will write for this world...

  7. #17

    Join Date
    May 2012
    Location
    Sweden
    Posts
    218
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Special areas should be prio 1 :x

  8. #18
    Banned
    Join Date
    Aug 2012
    Location
    Netherlands
    Posts
    1,460
    Mentioned
    38 Post(s)
    Tagged
    0 Thread(s)
    PHP Code:
                    Container.Minimize(MainBpGoldBpLootBp
    Does not work. It only minimizes the MainBp. Is this intented to work like this or should i rewrite it to

    PHP Code:
                    Container.Minimize(MainBp)
                    
    Container.Minimize(LootBp)
                    
    Container.Minimize(GoldBp

  9. #19
    XenoBot Developer DarkstaR's Avatar
    Join Date
    Dec 2010
    Posts
    6,104
    Mentioned
    1326 Post(s)
    Tagged
    16 Thread(s)
    Quote Originally Posted by Avani View Post
    PHP Code:
                    Container.Minimize(MainBpGoldBpLootBp
    Does not work. It only minimizes the MainBp. Is this intented to work like this or should i rewrite it to

    PHP Code:
                    Container.Minimize(MainBp)
                    
    Container.Minimize(LootBp)
                    
    Container.Minimize(GoldBp
    The latter. The former was never intended to be possible, and, without some crazy lua-hacks, isn't possible with the current system.

  10. #20
    Banned
    Join Date
    Aug 2012
    Location
    Netherlands
    Posts
    1,460
    Mentioned
    38 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by DarkstaR View Post
    The latter. The former was never intended to be possible, and, without some crazy lua-hacks, isn't possible with the current system.
    Alright, thanks. Maybe it's an idea to built in some sort of wait(500, 900) in the Minimize function. Because without any wait() in between two minimize funtions the bot will just skip the second (and any after that) backpack.

Posting Permissions

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