Jump to content

Can someone help ? :)


Abaddon3169

Recommended Posts

Hi guys im using script for adrenaline bot to farm this kind of mobs 
Shot00002.thumb.jpg.70b516733c6e6216463ea8226ec4e5bf.jpg
 How can i make it so it wont target Anti Bot's ?

Here 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.

Help me please 🙂

Link to comment
Share on other sites

  • Vision locked this topic
Guest
This topic is now closed to further replies.


×
×
  • Create New...