Signup Now
Results 1 to 1 of 1
  1. #1
    Free User
    Join Date
    Dec 2013
    Posts
    10
    Reputation
    10
    Rep Power
    0

    Root Harvester (harvests roots around you for the Oramond task)

    Very simple script, but it increases your chance of getting roots if there are other players hunting there as well.

    It only checks the squares around you:
    X X X
    X P X
    X X X

    Here it is:

    auto(200,500)

    for x = -1, 1 do
    for y = -1, 1 do
    if topuseitem($posx+x,$posy+y,$posz).id == 21104 then
    pausewalking(5000)
    useitem(0, ground($posx+x,$posy+y,$posz))
    waitping()
    pausewalking(0)
    end
    end
    end
    Last edited by Erra; 05-17-2016 at 06:37 PM.

 

 

Posting Permissions

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