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

    How to drop empty flasks while hunting?

    As the title says, how to drop empty flasks while hunting?

  2. #2
    Free User Invalid Name's Avatar
    Join Date
    Dec 2013
    Posts
    14
    Reputation
    10
    Rep Power
    0
    if itemcount('empty potion flask') > 0 then
    moveitems('empty potion flask', ground($posx, $posy, $posz))
    end


    this should work, just put it into a new persistent in the scripter's tab

  3. #3
    Administrator Lucas Terra's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    2,202
    Reputation
    141
    Rep Power
    10
    Quote Originally Posted by Invalid Name View Post
    if itemcount('empty potion flask') > 0 then
    moveitems('empty potion flask', ground($posx, $posy, $posz))
    end


    this should work, just put it into a new persistent in the scripter's tab
    Won't work, the name of the flask is wrong.

    Try this, will drop it when the amount of flasks gets higher than 5:
    auto(300,600)
    for id = 283, 285 do
    if itemcount(id) > 5 then
    moveitems(id, 'ground') return
    end
    end

  4. #4
    Free User Zab Ek's Avatar
    Join Date
    Dec 2013
    Posts
    39
    Reputation
    10
    Rep Power
    0
    Thanks, works good
    ~~~~ Bot hard or go home ! ~~~~

  5. #5
    Free User
    Join Date
    Nov 2014
    Posts
    7
    Reputation
    10
    Rep Power
    0
    Works! Thank you!

  6. #6
    Free User
    Join Date
    Feb 2014
    Posts
    18
    Reputation
    10
    Rep Power
    0
    Thank you! Raphaels did not work anymore for some wierd reason

  7. #7
    Free User
    Join Date
    Oct 2015
    Posts
    21
    Reputation
    10
    Rep Power
    0
    Thanks bro ! UP -- works good !!

  8. #8
    Free User
    Join Date
    Mar 2016
    Posts
    1
    Reputation
    10
    Rep Power
    0

    dropvials

    auto(800, 1000)
    if itemcount(283, 'all') + itemcount(284, 'all') + itemcount(285, 'all') > 5 and $cap < getuseroption('capCheck') + 100
    then
    pausewalking(300,400)
    dropflask()
    end

    auto(10000,15000)
    eatfood()

 

 

Posting Permissions

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