XenoBot Forums - Powered by vBulletin

User Tag List

Results 1 to 3 of 3

Thread: Oramond Juicy Root Scripts

  1. #1

    Join Date
    Apr 2015
    Posts
    16
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    Oramond Juicy Root Scripts

    I am looking for a script to harvest juicy roots on oramond. What I need is a script that will use them if he see it on screen and if no monsters are on screen.

  2. #2

    Join Date
    Nov 2015
    Posts
    77
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    bump I need this too


  3. #3
    Senior Member Aristeus's Avatar
    Join Date
    Jun 2013
    Location
    Sweden
    Posts
    600
    Mentioned
    28 Post(s)
    Tagged
    0 Thread(s)
    @Smatek @Mexen

    Somewhat buggy but it works. Only checks if you're attacking something though.

    lua code:



    local itemID = {21104} -- ItemID to be picked up

    Module.New('lootFromGround', function(module)
    if (Self.TargetID() <= 0) then
    for y = -5, 5 do
    for x = -7, 7 do
    if table.contains(itemID, Map.GetTopUseItem(Self.Position().x + x, Self.Position().y + y, Self.Position().z).id) then
    Cavebot.Stop()
    Self.UseItemFromGround(Self.Position().x + x, Self.Position().y + y, Self.Position().z)
    wait(1000)
    Cavebot.Start()
    module:Delay(math.random(1000))
    end
    end
    end
    end
    end)

Posting Permissions

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