PDA

View Full Version : Target Lost



pelindex
05-06-2017, 04:29 PM
Hey guys i need script stop the walker when the target lost on screen.
I try this scrip but the character stop walk and dont continue after

Module.New('pauseWalker', function()
if message ~= 'Target lost.' then
Walker.Delay(10000)
end

Someone can help me ?
This is script is for hunting warlock.
Thank you for help

jaiminho
05-06-2017, 10:30 PM
Module.New('pauseWalker', function()
if message ~= 'Target lost.' then
Walker.Delay(10000)
else
Walker.Start()
end

try it, not tested!

Fatality
05-07-2017, 02:11 PM
That script doesn't stop the walker, so why start it? and where did "message" come from?