Jump to content

Recommended Posts

Posted

Hi guys im looking for help
this is my adrenaline bot 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 check for targets name ?
For example NpC name
Please help me  :)

Posted
28 minutes ago, Abaddon3169 said:

Hi guys im looking for help
this is my adrenaline bot script:
 

How can i check for targets name ?
For example NpC name
Please help me  🙂

user.target.name

 

  • 2 years later...
Posted

It looks like you're using a script for an Adrenaline bot in a game environment. To check for a target's name in your script, you can use the CharList.Items(i).Name property. Here's an example of how you can modify your script to print the names of attackable characters:

var
  i: integer;
begin
  while true do
  begin
    delay(200);
    for i := 0 to CharList.count - 1 do
    begin
      if (not CharList.Items(i).Dead) then
      begin
        print(CharList.Items(i).Name);
        // Add your additional conditions here
        // e.g., if ((CharList.Items(i).Name = 'NPCName') and (CharList.Items(i).attackable)) then
        // Do something with the NPC
      end;
    end;

    // Your existing code for skills and actions here

    engine.canceltarget;
  end;
end.

 

This modification adds a print statement to display the name of each non-dead character in the CharList. You can extend this logic by adding conditions based on the name of the NPC you want to target. Please note that you need to replace 'NPCName' with the actual name of the NPC you're looking for. 

Also If you are a fan of Sports Betting in USA, you can check this comprehensive dedicated page of a friend of mine at https://casinolandia.com/countries/us/sports-betting/.

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