Jump to content

Recommended Posts

Posted

Hey Its me againt 
This is my script
 

Quote

var
  i:integer;
begin
  print(user.target.attackable);
  while true do
  begin
    delay(200);
    for i:=0 to CharList.count-1 do
    if ((not CharList.Items(i).Dead)
      //and CharList.Items(i).attackable
      //and CharList.Items(i).InZone
      //and (CharList.Items(i).ClanID<>User.ClanID)
      ) then
    begin
      engine.settarget(CharList.Items(i));
      Engine.UseSkill(263);
      break;
    end;
    while ((not user.target.dead) and (not user.dead)) do 
      begin
      Engine.UseSkill(263);
      Engine.UseSkill(412);
      Engine.UseSkill(344);
         delay(20);
      end;
    engine.canceltarget;
  end;
end.

How can i make it so it checks targets title and if it contains specific word for example than it starts attacking ?
Please help  🙂

  • Vision locked this topic
  • Maxtor unlocked this topic

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...