what's wrong with this?
I'ts not gfbing stalkers for me.
init start
function inputevents(e)
print(e)
end
filteruseroptions(true)
init end
auto(1000)
-- your script here --
init start
local invisCreatures = {"Stalker"}
local stuckTime = 0 -- Set to 0 to always attack
-- Do not edit below
table.lower(invisCreatures)
local spellToUseInfo = spellinfo(spellToUse)
if spellToUseInfo.castarea == 'None' then
spellToUseInfo = runeinfo(spellToUse)
end
init end
auto(100)
if $standtime >= stuckTime then
foreach newmessage m do
if m.type == MSG_STATUSLOG then
local _, _, name = m.content:match('^You lose (%d+) (%l+) due to an attack by ?a?n? (.-)%.$')
if name and table.find(invisCreatures, name:lower()) and maround(7, name:lower()) == 0 then
if ((paround(10) == 0 and pvp and $timems - $playerlastseen > 6000) or not pvp) then
pausewalking(1000)
useoncreature("Great Fireball Rune" , $self)
pausewalking(0)
end
end
end
end
end
if $standtime > 3000 and $wptsection == 'Hunt' and ((paround(10) == 0 and pvp and $timems - $playerlastseen > 6000) or not pvp) and (not $looting) then
pausewalking(1000)
useoncreature("Great Fireball Rune" , $self)
pausewalking(0)
end
05-07-2015, 08:33 AM
Gore
does this script if u use runes use on self or shoot area where last seen?..... im in need for an anti invis script that works on warlocks with Stone Shower Runes.
pm me if u can help me out @Raphael :D
05-16-2015, 10:03 PM
Mithwons
Quote:
error in Cavebot script AntiStakler:
[" if dmg >= minDmgTaken and n..."]:AntiStakler:25 attempt to compare number with nil
What is it ?
06-04-2015, 03:21 PM
xikaos
It work with cancel invisibility ? It would be great for warlocks if you put the attack mode for chasing!
06-05-2015, 01:41 AM
xikaos
I'm getting this error when trying with utana vid, didn't tested with runes.
22:19:38 error in Hotkey script NewHotkey:
[" if dmg >= minDmgTaken and nam..."]:NewHotkey:25 attempt to compare number with nil
22:19:38 error in Hotkey script NewHotkey:
[" if dmg >= minDmgTaken and nam..."]:NewHotkey:25 attempt to compare number with nil
07-28-2015, 02:04 PM
Dworak
I am using this one.
init start
-- local SCRIPT_VERSION = '1.0.1'
local invisCreatures = {'Stalker'}
local stuckTime = 0 -- Set to 0 to always attack
local spellToUse = 'avalanche rune'
-- DO NOT EDIT BELOW THIS LINE --
table.lower(invisCreatures)
local spellToUseInfo, spellType = spellinfo(spellToUse), 'spell'
if spellToUseInfo.castarea == 'None' then
spellToUseInfo, spellType = runeinfo(spellToUse), 'rune'
end
init end
auto(100)
if $standtime >= stuckTime and paround(7) == 0 then
foreach newmessage m do
if m.type == MSG_STATUSLOG then
local _, _, name = m.content:match(REGEX_DMG_TAKEN)
if name and table.find(invisCreatures, name:lower()) and maround(7, name:lower()) == 0 then
if spellType == 'spell' and cancastspell(spellToUseInfo) then
cast(spellToUseInfo.words)
waitping()
elseif spellType == 'rune' then
useoncreature(spellToUseInfo.itemid, $self)
waitping()
end
end
end
end
end
Ive created a script at drefia necromancers, but i keep getting problem with the stalkers. When a stalker goes invisible and stands infront of me the bot wont do anything, it keeps trying to walk in on that tile the stalker's in (making it bump back n forth).
Im a knight so id like it to do Exori spell, i used the code on this thread but it wont do anything still. Here is the code and please let me know whats wrong
init start
-- local SCRIPT_VERSION = '1.0.1'
local invisCreatures = {'Stalker'}
local stuckTime = 1000 -- Set to 0 to always attack
local spellToUse = 'exori'
-- DO NOT EDIT BELOW THIS LINE --
table.lower(invisCreatures)
local spellToUseInfo, spellType = spellinfo(spellToUse), 'spell'
if spellToUseInfo.castarea == 'None' then
spellToUseInfo, spellType = runeinfo(spellToUse), 'rune'
end
init end
auto(100)
if $standtime >= stuckTime and ($wptsection == "ToHunt" or $wptsection == "Hunt" or $wptsection == "refill") then
foreach newmessage m do
if m.type == MSG_STATUSLOG then
local _, _, name = m.content:match(REGEX_DMG_TAKEN)
if (name and table.find(invisCreatures, name:lower())) then
if spellType == 'spell' and cancastspell(spellToUseInfo) then
cast(spellToUseInfo.words)
waitping()
elseif spellType == 'rune' then
if $standtime < 5000 then
pausewalking(5000)
end
wait(200)
if maround(10, "Demon Skeleton", "Green Djinn") > 0 then
useoncreature("avalanche rune", $self)
else
useoncreature("great fireball rune", $self)
end
wait(400)
pausewalking(0)
end
end
end
end
end
10-26-2015, 03:13 PM
ozzix
Quote:
Originally Posted by Raiven
Ive created a script at drefia necromancers, but i keep getting problem with the stalkers. When a stalker goes invisible and stands infront of me the bot wont do anything, it keeps trying to walk in on that tile the stalker's in (making it bump back n forth).
Im a knight so id like it to do Exori spell, i used the code on this thread but it wont do anything still. Here is the code and please let me know whats wrong
init start
-- local SCRIPT_VERSION = '1.0.1'
local invisCreatures = {'Stalker'}
local stuckTime = 1000 -- Set to 0 to always attack
local spellToUse = 'exori'
-- DO NOT EDIT BELOW THIS LINE --
table.lower(invisCreatures)
local spellToUseInfo, spellType = spellinfo(spellToUse), 'spell'
if spellToUseInfo.castarea == 'None' then
spellToUseInfo, spellType = runeinfo(spellToUse), 'rune'
end
init end
auto(100)
if $standtime >= stuckTime and ($wptsection == "ToHunt" or $wptsection == "Hunt" or $wptsection == "refill") then
foreach newmessage m do
if m.type == MSG_STATUSLOG then
local _, _, name = m.content:match(REGEX_DMG_TAKEN)
if (name and table.find(invisCreatures, name:lower())) then
if spellType == 'spell' and cancastspell(spellToUseInfo) then
cast(spellToUseInfo.words)
waitping()
elseif spellType == 'rune' then
if $standtime < 5000 then
pausewalking(5000)
end
wait(200)
if maround(10, "Demon Skeleton", "Green Djinn") > 0 then
useoncreature("avalanche rune", $self)
else
useoncreature("great fireball rune", $self)
end