Advertisement
Guest User

Untitled

a guest
Jun 2nd, 2017
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var i:integer;
  2. begin
  3.   while delay(100) do begin
  4.   for i := 0 to CharList.Count - 1 do begin
  5.     if not (CharList.items(i).Name='Толик Black Star') then Continue;
  6.      if not CharList.items(i).dead then begin
  7.       engine.settarget(CharList.items(i));
  8.         repeat
  9.       engine.useskill(1235);    ///change skill id
  10.         until user.target.dead;
  11.      end;
  12.   if user.target.dead then engine.canceltarget;
  13.   end;
  14.   end;
  15. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement