XenoBot Forums - Powered by vBulletin

User Tag List

Page 2 of 2 FirstFirst 12
Results 11 to 17 of 17

Thread: Looting fast!!

  1. #11

    Join Date
    Dec 2011
    Posts
    10
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    seems now its working great, ty man

  2. #12

    Join Date
    Dec 2012
    Location
    Sweden
    Posts
    67
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Joshwa534 View Post
    Speed Manual Looting can be found here. Please make all further script requests in that thread.

    Thank you,
    Joshwa534

    Thanks mate that what I'm looking for.. I test that script for 3 hours and added alot of loot and wow the best one ever..

  3. #13
    Senior Member derkonsito's Avatar
    Join Date
    Jul 2013
    Location
    Costa Rica
    Posts
    452
    Mentioned
    37 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Joshwa534 View Post
    Speed Manual Looting can be found here. Please make all further script requests in that thread.

    Thank you,
    Joshwa534
    Do you have the script?? The thread is no longer working
    “When you want to succeed as bad as you want to breathe, then you'll be successful.”


    ― Eric Thomas, The Secret To Success

  4. #14

    Join Date
    Aug 2013
    Location
    Sweden, Hudiksvall
    Posts
    101
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    I got it! @derkonsito
    lua code:

    local config = {
    GoldContainer = "Brocade Backpack",
    Gold = {"Gold Coin", "Platinum Coin", "Crystal Coin"},
    GoldEnabled = true,

    StackableContainer = "Beach Backpack",
    Stackables = {"Small Emerald"},

    NonStackableContainer = "Jewelled Backpack",
    NonStackables = {"Rope"}
    }

    while true do
    for i = 0, #Container.GetIndexes() - 1 do
    local c = Container.GetFromIndex(i)
    if c:isOpen() and (c:Name():find("The") or c:Name():find("Demonic") or c:Name():find("Dead") or c:Name():find("Slain") or c:Name():find("Dissolved") or c:Name():find("Remains") or c:Name():find("Elemental")) then
    for s = 0, c:ItemCount() - 1 do
    local item = Item.GetName(c:GetItemData(s).id):titlecase()
    if config.GoldEnabled and table.contains(config.Gold, item) and Self.Cap() > 100 then
    local destCont = Container.GetByName(config.GoldContainer)
    c:MoveItemToContainer(s, destCont:Index(), math.min(destCont:ItemCount() + 1, destCont:ItemCapacity() - 1))
    wait(150, 180)
    break
    elseif table.contains(config.Stackables, item) then
    local destCont = Container.GetByName(config.StackableContainer)
    c:MoveItemToContainer(s, destCont:Index(), math.min(destCont:ItemCount() + 1, destCont:ItemCapacity() - 1))
    wait(150, 180)
    break
    elseif table.contains(config.NonStackables, item) then
    local destCont = Container.GetByName(config.NonStackableContainer)
    c:MoveItemToContainer(s, destCont:Index(), math.min(destCont:ItemCount() + 1, destCont:ItemCapacity() - 1))
    wait(150, 180)
    break
    end
    end
    end
    end
    wait(50)
    end

  5. #15
    Senior Member derkonsito's Avatar
    Join Date
    Jul 2013
    Location
    Costa Rica
    Posts
    452
    Mentioned
    37 Post(s)
    Tagged
    0 Thread(s)
    @MrGreen s2 <33
    “When you want to succeed as bad as you want to breathe, then you'll be successful.”


    ― Eric Thomas, The Secret To Success

  6. #16

    Join Date
    Dec 2014
    Posts
    1
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    wie ktos moze dlaczego scrypt nie dzial ?

  7. #17

    Join Date
    Apr 2016
    Posts
    15
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    WHERE

Posting Permissions

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