Yes, @Lucas Terra 's fixed lib should be included in the next release.
By the way, don't bold when tagging, it makes tagging not work.
Yes, @Lucas Terra 's fixed lib should be included in the next release.
By the way, don't bold when tagging, it makes tagging not work.
Okey, and There will be any Advanced area rune shooter? not only shootarerune() ?
Originally Posted by So Kol
Hello. I'm lookin' for hotkey supplies checker, if its lower then set in supplies the bot will turn off the targetin and go to wpt refill
Raphael, is not better if instead set targeting off, set all creatures "only if traped" ? I was thinking about this because they could be trapped easily, not?
Hello I used this script to not be disturbed by all those lvl 1 spamming about goldselling etc, can you remake so it suits Windbot?
Code:local CONFIG = { MINIMUM_LEVEL = 10, -- It'll play alarm with people that are highest than this level } --[[ DON'T EDIT BELOW THIS LINE --]] AUTO_ALERTS = AUTO_ALERTS or { TIME_BETWEEN_RESPONCES = 2, RESPONCE_TIMER = os.time(), INITIALIZED = false } if not AUTO_ALERTS.INITIALIZED then setsettings("Settings\\Alerts\\Message\\PrivateMessage\\PlaySound", "no") print('AUTO_ALERTS: Alets for private message changed in bot.') AUTO_ALERTS.INITIALIZED = true end local MESSAGES = getnewmessages("Local Chat") for INDEX = 0, MESSAGES.count - 1 do local m = {text = MESSAGES[INDEX].text, sender = MESSAGES[INDEX].sender or '', type = MESSAGES[INDEX].type, content = MESSAGES[INDEX].text:match('%b[]: (.+)') or '', time = MESSAGES[INDEX].text:sub(1, 5), level = tonumber((tostring(string.match(MESSAGES[INDEX].text, '.+ (%b[]): .+')):gsub("[^%d]", ''))) or 0} if m.sender:lower() ~= name:lower() and table.find({6}, m.type) and m.level >= CONFIG.MINIMUM_LEVEL and os.difftime(os.time(), AUTO_ALERTS.RESPONCE_TIMER) >= AUTO_ALERTS.TIME_BETWEEN_RESPONCES then playsound('private.wav') end end
Last edited by Raphael; 01-25-2014 at 05:04 PM.