Hotkey - Anti-KS
Anti-KS
Como funciona?
Ele vai ignorar qualquer monstro que estiver a X sqms de outro player e "desginorar" se não tiver nenhum player perto, ou se o monstro te atacar.
init start
local r = 4 -- Range.
local safelist = {'Bubble', 'Eternal Oblivion'} -- O bot VAI dar KS nesses players. Adicione mais se quiser.
table.insert(safelist, $name) -- Não mexa aqui. init end
auto(100) local ppos = {}
foreach creature p 'pf' do
if not table.find(safelist, p.name) then
table.insert(ppos, {x = p.posx, y = p.posy})
end
end foreach creature c 'mf' do
local ignore = false
if c.id ~= $mattacker.id then
for i = 1, #ppos do
local difx, dify = ppos[i].x - c.posx, ppos[i].y - c.posy
if math.abs(difx) <= r and math.abs(dify) <= r then
ignore = true
if c.ignored == false then
ignorecreature(c.id)
end
break
end
end
end
if ignore == false and c.ignored == true then
ignorecreature(c.id, true)
end
end if $attacked.id ~= 0 then
if $attacked.ignored then
stopattack()
end
end
Nenhum comentário:
Postar um comentário