PDA

View Full Version : Looking for function totally StopAttack



DamooN
05-18-2016, 07:58 PM
Looking for which totally stop attacking

When I using Targeting.Stop() then Magic Shooter is still casting spells....

How to off and on Magic Shooter?

THX 4 ALL

shadowart
05-18-2016, 09:43 PM
Targeting.StartIgnoring(). Only works if the walker is active though.

kontgat
05-19-2016, 12:02 AM
How about just "Pause Break" button on your keyboard? It stops/pauses EVERYTHING. Press again? It continues... best function evah

DamooN
05-19-2016, 03:26 PM
Thanks for request but its still not working.

I want to use this function in my simple script to casting wild growl rune in hunting time

script is here:

registerEventListener(WALKER_SELECTLABEL, "labels")

dofile("Forgee.lua")
function labels(label)

if(label == "krzak1") then
Walker.Stop()
Targeting.Stop()
Self.StopAttack()
wait(1000)
Self.UseItemWithGround(3156, 33530, 31957, 7)
Walker.Start()
wait(300)
Targeting.Start()
end

The script is working if not many monsters on screen but if full spawn then is missing ;/

PS: Im fascinated about your scripts SHADOWART. I am trying to cut the dynamic healer from your script 4 manual hunting but idk its working good. Could you send it on priv? :)))

THX for ALL guys