PDA

View Full Version : Summoning Monk



derkonsito
05-04-2014, 12:56 AM
Guys how i put bot to attack a summoned monk ?? (Skulling)
And stop attacking at 20%
Help plz :D !

derkonsito
05-04-2014, 02:49 PM
Bump.

falmar
07-18-2014, 12:36 PM
bump.

Boystar
07-21-2014, 10:11 PM
bump.

Alan-currie
07-22-2014, 07:28 PM
set your targeting too monk from 100% - 20% in the targeter

Boystar
07-23-2014, 01:51 PM
it doesn't work

Boystar
07-27-2014, 12:43 AM
bump.

Glowingstick
07-27-2014, 01:58 AM
I'm not sure if it will work or not but give it a shot


while true do
Creature.Attack("Monk")
wait(5000)
end

Boystar
07-27-2014, 10:05 AM
it doesn't work :/

HjugO
07-27-2014, 11:00 AM
CONFIG = {
MOB = "Monk",
HPPC_STOP = 20
}

Module.New("S(Killing)", function()
for i = CREATURES_LOW, CREATURES_HIGH do
local c = Creature.GetFromIndex(i)
if (c:Name() == CONFIG.MOB and c:HealthPercent() > CONFIG.HPPC_STOP and c:isSummon()) then
c:Attack()
else
Self.StopAttack()
end
end
end)

Boystar
07-30-2014, 02:16 PM
Zaraz sprawdzę dzięki Hugo
Thaks Hugo ;)