Use function:
pick(x,y,z)
it'll use pick from cavebot->settings:
Printable View
so this will determine what setting i have on pick( I have whacking driller of fate) and use it?Code:useitemon(pick), 0, ground($wptx+1,$wpty,$wptz)) wait(500,1000)
just use this what i wrote. it will check what pick You have in settings
I need something like this. The character must logout when reach a certain spot (not when have low stamina), must log in with a different account and pass, and above all, must, if the script is running by the charnumber1, reconnect to charnumber2, if, otherwise, it is running by the charnumber2, reconnect to charnumber3 and so on and so forth.
@danielcb haven't tried, but should work I guess -
init start
local MONSTERS = {"Rat", "Cave Rat", "Bug"} -- add whatever monster u want
local SDmin = 3 -- min amount to use SD
local OnlySD = true -- or false, or make a getuseroption.
init end
-- DO NOT EDIT ANYTHING BELOW THIS LINE
auto(200)
if OnlySD then
for _, v in ipairs(MONSTERS) do
setsetting('Targeting/Creatures/' .. v .. '/Setting1/FirstSpell', 'Sudden Death Rune')
setsetting('Targeting/Creatures/' .. v .. '/Setting1/SecondSpell', 'No Spell')
end
elseif (maround(8, unpack(MONSTERS)) < SDmin) and (not OnlySD) then
for _, v in ipairs(MONSTERS) do
setsetting('Targeting/Creatures/' .. v .. '/Setting1/FirstSpell', 'Strong Ice Strike')
setsetting('Targeting/Creatures/' .. v .. '/Setting1/SecondSpell', 'Ice Strike')
end
elseif (maround(8, unpack(MONSTERS)) >= SDmin) and (not OnlySD) then
for _, v in ipairs(MONSTERS) do
setsetting('Targeting/Creatures/' .. v .. '/Setting1/FirstSpell', 'Sudden Death Rune')
setsetting('Targeting/Creatures/' .. v .. '/Setting1/SecondSpell', 'No Spell')
end
end
Pick up X items from the floor
KK, just made this, haven't tried, but should work. :)
init start
local item = 'Magic Plate Armor' -- item to pick up
local BP = 'Backpack of Holding' -- BP to move item onto
init end
-- DO NOT EDIT BELOW
local Item = itemid(item)
auto(200)
reachgrounditem(Item)
waitping(1,2)
moveitems(Item, BP, ground(), 100)
waitping()
I need a hotkey that using exana mort and exana pox after all ghastlys dead, would appreciate that
Regards