action to pickup a bunch of items from browse field til a certain capacity please, or even a certain amount to pickup if that's easier.?
been trying some but it doesn't wait for longer then 1 item..
action to pickup a bunch of items from browse field til a certain capacity please, or even a certain amount to pickup if that's easier.?
been trying some but it doesn't wait for longer then 1 item..
what about that script that calculates the time till next skill up? u said u would do it raph...
btw, I would like a script to equip small stones from bp when amount on rhand is below certain number, and that would change the target to the second mad sheep if the current one has low health, if both mad sheeps have low health it would wait untill at least one of them has enough health for attacking (lets say 70% or something like that, that I can change it myself) and would alert if one of them died.
thanks.
Last edited by Justx; 08-19-2014 at 07:48 PM.
I believe @Dehan is working on this skill timer you want. About the small stones refiller, please take a look at the built-in functionality for it (It's under Cavebot or Targeting, not really sure).
init start
-- local SCRIPT_VERSION = '1.0.0'
local config = {
-- Creatures you'll be attacking while training
creatures = {'Mad Sheep'}
-- Minimum HPPC to attack the creature
minHPPC = 20,
}
-- DO NOT EDIT BELOW THIS LINE --
table.lower(config.creatures)
init end
auto(100)
if $attacked.hppc < config.minHPPC then
stopattack()
end
if $attacked.id == 0 then
foreach creature c 'mfst' do
if c.hppc >= config.minHPPC and table.find(config.creatures, c.name:lower()) then
attack(c.id)
break
end
end
end
I Need i Deposit house action and a Action to take screenshoot when player on screen, but just in label "hunt"
Level Latest Scripts by Dehan 250+ [EK & ED & MS & RP] [Navigation] Prison -1200+ [EK & ED & MS] [Navigation] Asura Palace200+ [EK & ED] [Navigation] Lower Roshamuul Softcore
is it possible to make a hotkey thats stopping all persistants? in ibot it was:
setsettings_ib("Settings/Actions/Enabled","no")
@Raphael
A hotkey that would save me from stalkers in a tomb trapping me, doing nothing else then trying to run trought the invisble stalker, this eats my manapotions!
Any suggestion?
Last edited by Rickiey; 08-25-2014 at 11:02 PM.