Forum in READ ONLY mode! All questions and discussions on Discord official server, invite link: https://discord.gg/VxsGzJ7

Скрипт на Анатомку

Only working scripts
Post Reply
Igorska
Posts: 6
Joined: 17.03.2005 15:37
Contact:

Скрипт на Анатомку

Post by Igorska »

Code: Select all

Program Anatomy;
var t : Integer;
      enemy : Cardinal;

{$Include 'all.inc'}

Begin
Enemy := $12345678;
SetARStatus(true);
Hungry(1,backpack);
clearjournal;
while not Dead do
 begin
  if Connected then
  begin
   for t := 0 to 10 do
   begin
        if TargetPresent then CancelTarget;
        CheckTargetError(5,2);
        CheckSave;
	UseSkill('Anatomy');
                WaitTargetObject(enemy);
	Wait(10000);
	end;
   Hungry(1,backpack);
   end;
 end;
End.
Post Reply