XenoBot Forums - Powered by vBulletin

User Tag List

Results 1 to 3 of 3

Thread: Loot at Ground Script like shAdOwArts speed looter needed :)

  1. #1

    Join Date
    Apr 2016
    Posts
    9
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    Smile Loot at Ground Script like shAdOwArts speed looter needed :)

    Hello Xenobot Community,

    i search for an Script like @shadowart Speedloot just so it doesnt loot to my Backpacks it has to throw it on ground so i can farm minos and throw out like shields,maces chain Armors

    Slamdoc~

  2. #2
    Senior Member
    Join Date
    Sep 2012
    Posts
    1,070
    Mentioned
    18 Post(s)
    Tagged
    0 Thread(s)
    I could suggest another way of accomplishing what you asked for.
    You can loot everything, then you can have a script to throw out the "not needed" things, like with empty flasks for example.
    @Slamdoc

  3. #3

    Join Date
    Apr 2016
    Posts
    9
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Code:
    local MinCap = 2000
    local drop = {"mace", "plate shield", "sword", "Chain armor", "brass helmet", "battle shield"}
    Module.New("loot dropper", function(mod)
        local pos = Self.Position()
        for i = 1, #drop do
            if (Self.Cap() < MinCap) then
                Self.DropItem(pos.x, pos.y, pos.z, drop[i], 1)
            end
        end
        mod:Delay(math.random(500,1000))
    	
    	
    end)
    THats what i use so far works okay but yea kinda shitty code

Posting Permissions

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