Postado Outubro 15, 2015 9 anos init start local mother local dist = 4 -- é o mínio de distância que o slime deve estar longe de você, it is the minimum distance the slime must be from you, útil para treinar paladinos local killmother = {dmg = 50, hppc = 40, now = false} -- vai matar a slime mãe se der mais de 50 de dano em você ou se você tiver menos de 40% do hp. setsetting('Hud/DisplaysList/ActiveHotkeys/Enabled','yes')init end auto(100,500) if not mother then if $followed.name == 'Slime' then mother = $followed else listas('Dê Follow a slime mae para começar a treinar') endelse if mother.hppc == 0 then mother = nil killmother.now = false return end local toattack foreach creature m 'sm' do local closest = 7 if m.name == 'Slime' and m ~= mother and m.dist <= dist and m.dist < closest and m.isshootable then closest = m.dist toattack = m end end if not killmother.now then if toattack then listas('Matando um summon de slime (clone)') if $attacked ~= toattack then attack(toattack) wait(500,600) end else listas('Esperando por um summon de slime (clone)') end else listas('Matando a slime mãe') if $attacked ~= mother then attack(mother) wait(500,600) end end endif not killmother.now then foreach newmessage m do if m.type == MSG_STATUSLOG then if m.content:sub(1,8) == 'You lose' then local dmg = tonumber(m.content:token(3)) local length = m.content:len() local name = m.content:sub(length-6,length-1) if name == 'slime' and dmg > killmother.dmg then killmother.now = true end end end end if $hppc < killmother.hppc then killmother.now = true end end Créditos: tibiabot-script
Participe da conversa
Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.