Thread reopened!
Printable View
Thread reopened!
I still want the skill time counter rapha!! :)
Can you make screenshot on lvl up? i need to project later :x
Searching does wonders, you know?
http://forums.tibiawindbot.com/showt...hot-On-Advance
Hello
Please a Hotkey to take royal spears from depot
auto(1000)
if $rhand.count < 10
then equipitem('royal spear', 'rhand', 'depot', 100)
end
I'm using this but i need take just 10 spears
Help me?
i want one lua who XLOG when low helth and low potions ...
EXEMPLE: ppl try kill me afk, so i want EXIT TIBIA if pk attack!
init start
local minHPPC = 50 -- Minimum HPPC to leave cave
local minPots = 10 -- Minimum amount of potions to leave cave
local potion = 'mana potion' -- Name/ID of potion
-- DO NOT EDIT BELOW THIS LINE --
potion = itemid(potion)
init end
auto(100)
if $connected and $hppc < minHPPC and itemcount(potion) < minPots then
xlog()
waitping()
end
Script dont run ... i try but he don't XLOG ..
Had 24 GREAT and don't exit Client !!!
init start
local minHPPC = 30 -- Minimum HPPC to leave cave
local minPots = 10 -- Minimum amount of potions to leave cave
local potion = 'great health potion' -- Name/ID of potion
-- DO NOT EDIT BELOW THIS LINE --
potion = itemid(potion)
init end
auto(100)
if $connected and $hppc < minHPPC and itemcount(potion) < minPots then
xlog()
waitping()
end
hello, i need 3 alerts wich are not availble on the alerts interface.
1- when cap is under X make a sound
2- when manas are under X make a sound
3- when heatlhpotions are under X make a sound
is dat possible? i rly need it,
Hello i need a hotkey to use enchanted ruby on worn firewalker boots, please
enchanted rubies will be in main bp/ i think u have to take off worn firewalker boots to use the ruby on it idk..
How do I make so my character run to DEPOT and puts every loot in DP when Its full or out of cap?
Potions:
init start
local itemName = 'mana potion' -- Any item
local minCount = 10
-- DO NOT EDIT ANYTHING BELOW THIS LINE
itemName = itemid(itemName)
init end
auto(100)
if itemcount(itemName) < minCount then
beep()
wait(1000)
end
Cap:
init start
local minCap = 30
-- DO NOT EDIT ANYTHING BELOW THIS LINE
init end
auto(100)
if $cap < minCap then
beep()
wait(1000)
end
Hey so I like to use my Mwall Hotkey on my mouse scroll button, is there anyway to make a hotkey so that when i press the mouse key it automatically presses a hotkey like F5 which is usually my mw hotkey?
I want a hotkey for enchant gems, I hope you can help me ^^
My char will stand here
What I need is, the hotkey will use the gem to the south of my char (x, y+1, z) while I have more than 1 soul, it will use potion on urself also.
Also would be good to have option
Gem to use (user will write wich one he want to enchant)
Kind of Mana Potion to use (user will write wich one he want to use to mana up)
Edit: I'm a moron
well my character die 2 times because the healer turn off i dont know why.. maybe someone put it off while using my pc(i share it with my brother sometimes) well to avoid that i want to know if u can make some persisten hotkey o dont know what exactly i need.. something like that
IF HEALER IS OFF... AND HP BELOW 15%... USE ULTIMATE HEALTH POTIONS..
i think thos can avoid my problem and if its can make a sound when it happen is better
thanks in advance
this should work man:
init start
healer = getsetting('SpellHealer/Enabled')
healerPot = getsetting('PotionHealer/Enabled')
init end
auto(100)
if healer == 'no' or healerPot == 'no' and $hppc <= 20 then
useoncreature('ultimate health potion', $self) waitping()
sethealing('on')
setsetting('PotionHealer/Enabled', 'yes')
end
Try it now, it should activate pot healer now too! :D
So use just this, it's no sense to use uhp with action. Healer will do it :D
init start
local healer = getsetting('SpellHealer/Enabled')
local healerPot = getsetting('PotionHealer/Enabled')
init end
auto(100)
if healer == 'no' or healerPot == 'no' then
sethealing('on')
setsetting('PotionHealer/Enabled', 'yes')
end
Hello.
I need one scrip to use "exevo gran mas vis" (rage of the skyes) when have 4 monsters on screen, with 100% hp each one (the monsters are Frost dragon and Frost dragon hatchling)
ty...