TargetLast? LastTarget? WaitTargetLast?
Posted: 18.06.2012 9:04
Im trying to create a HotKey to Cast paralyze in the lasttarget(player)
making my autoload and in the hotkey i put exec CastParalyze
And i tried like this too:
Why this procedure is not working?
Thank you...
making my autoload and in the hotkey i put exec CastParalyze
Code: Select all
procedure CastParalyze;
begin
WaitTargetLast;
Cast('Paralyze');
end;
Code: Select all
procedure CastParalyze;
begin
Cast('Paralyze');
TargetToObject(LastTarget)
end;
Why this procedure is not working?
Thank you...