PDA

View Full Version : [HELP] Change targetting



brubruzera
06-03-2016, 12:44 PM
I need an action to change target to only if traped, settings to leave hunt and go hunt...

Tirell
06-03-2016, 01:24 PM
With xeno you're able to use
Targeting.StartIgnoring() and Targeting.StopIgnoring()

So you can use like that :


if (labelName == 'Leave') then
Targeting.StartIgnoring()
end



if (labelName == 'EnterRespawn') then
Targeting.StopIgnoring()
end

brubruzera
06-03-2016, 02:21 PM
With xeno you're able to use
Targeting.StartIgnoring() and Targeting.StopIgnoring()

So you can use like that :


if (labelName == 'Leave') then
Targeting.StartIgnoring()
end



if (labelName == 'EnterRespawn') then
Targeting.StopIgnoring()
end


If my character get trapped, he will kill the monsters?

Elvang
06-03-2016, 03:25 PM
If my character get trapped, he will kill the monsters?

Yes it will.