Jump to content

Recommended Posts

Posted

HI

 

Im looking for script for low lvl Quests.  (im playing on c1-c2 server)

Elf
Collector’s Dream  -  I super need this one

Dark Elf
Trade with the Ivory Tower     -  I super need this one

Sweetest Venom  (i found this one here already)
Scent of Death 

Bones Tell the Future 

Dwarf
Dreaming of the Skies
Tarantula’s Spider Silk

Orc
Skirmish with the Werewolves
Wrath of Ancestors
Dark Winged Spies
Totem of the Hestui

Human
Rancher's Plea
Collect Arrowheads

  • 1 month later...
Posted

Hi

i need help with FindPath (function FindPath(StartX, StartY, EndX, EndY: integer; PathList: TList): boolean;
StartX, StartY - start point coordinates
EndX, EndY - end point coordinates
PathList - list where path will be written

 

I want my char to go to specyfic location (x,y) using combat zone map to avoid obstacles.

the script should check current loc using getloc put startx and starty from it, endx endy are constant

Any help ?

  • 2 weeks later...
Posted

Is there any way to send text to server without using Engine.EnterText('Text') ?? Because I want to send periodical manual commands like #Text (for party) or /nick blabla or something like that. If i am sending Engine.EnterText('Text') each second, if i press alt for other task, game change to full screen, and all client start doing weird things.

 

 

Posted
On 1/19/2023 at 11:59 AM, Dawhol said:

Is there any way to send text to server without using Engine.EnterText('Text') ?? Because I want to send periodical manual commands like #Text (for party) or /nick blabla or something like that. If i am sending Engine.EnterText('Text') each second, if i press alt for other task, game change to full screen, and all client start doing weird things.

 

 

I have find the packet, for example, to send /nick text. The problem is engine.SendToServer('Packet') is not working for me.

It gives me an error. "Undeclared identifier "SendToServer" I have seen a lot of examples using SendToServer but i dont know what's the problem.

 

Code is:

And i have tried with SendToServer, sendtoserver, trying to check if it is CAP problems.

 

uses SysUtils;

begin
  engine.sendtoserver('32 48 36 . . . . more packet. ');
end.

 

  • 2 weeks later...
  • 1 month later...
Posted (edited)
On 1/7/2023 at 4:22 PM, cookie19 said:

i need help with FindPath (function FindPath(StartX, StartY, EndX, EndY: integer; PathList: TList): boolean;

but there is code example on site, why not use it?) https://adrenalinebot.com/en/api/adrenaline/Classes/TL2Control#FindPath
 

uses Classes;
var
  Path: TList;
  i: integer;
  
begin
  Path:= TList.Create;
  Engine.FindPath(User.X, User.Y, User.Target.X, User.Target.Y, Path);
  print(Path.count);
  for i:= 0 to Path.count - 1 do
  begin
    Engine.MoveTo(Integer(Path(i)), Integer(Path(i + 1)), User.Z);  
    inc(i, 1);
  end;
  Path.Free;
end.

 

 

On 1/20/2023 at 2:41 PM, Dawhol said:

I have find the packet, for example, to send /nick text. The problem is engine.SendToServer('Packet') is not working for me.

Probably you try to use this method on cracked "very old" version of adrenaline bot. You will need to use actual version for work with packets. Also you can try Packet Scanner plugin for analyze packets

 

 

On 2/2/2023 at 12:00 PM, thomasthekiler said:

is there any way to auto quest ? its a custom quest on this server though

Only using scripts, you can try to make script order on our site 

Edited by AdrenalineBot
  • 2 weeks later...
Posted
On 12/20/2015 at 10:06 AM, 0tavi0 said:
  var obj: TL2NPC;

 

obj2: TL2Effect; 

 

 

begin

 

 

if user.inrange(111021, 219010, -3547, 500)  then begin

 

 

        Engine.SetTarget('zSnow');

 

 

        Engine.DlgOpen;

 

 

        Delay(500);

 

 

        Engine.BypassToServer('4');

 

 

        Delay(1000);  

 

 

      end; 

 

 

 

 

 

end.

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

my SO THIS.

 

what the mean 4? in Engine.BypassToServer('4');

On 4/8/2015 at 4:53 AM, adr.bot said:

just use dialog viewer and you see all codes

How I get dialog viewer?

On 10/15/2018 at 8:26 PM, AchYlek said:

if you need for h5  destiny / liona files, then yea

 

http://www.mediafire.com/file/w9bs6pcbg1l8znn/Auto_Nobless_dragon.rar

Engine.bypasstoserver('_bbshome'); delay(1000);
Engine.bypasstoserver('_bbsgetfav'); delay(1000);
Engine.bypasstoserver('00'); delay(1000);
Engine.bypasstoserver('01a'); delay(1000);
Engine.bypasstoserver('03'); delay(1000);
end;

 

 

How u get by passtoserver number "00" "01a" and "03" ??

On 6/17/2018 at 11:32 PM, adr.bot said:
procedure OnPacket(ID, ID2: Cardinal; Data: Pointer; Size: Word);
begin
 print(ID);
 print(MemToHex(Data^, Size));
end;
begin
  delay(-1);
end.

this receive packets from server to client if i not wrong, "OnCliPacket" from client to server

to send packet

engine.sendtoserver('');

engine.sendtoclient('');

 

why ur script is stopping i have no idea

Engine.bypasstoserver('_bbshome'); delay(1000);
Engine.bypasstoserver('_bbsgetfav'); delay(1000);
Engine.bypasstoserver('00'); delay(1000);
Engine.bypasstoserver('01a'); delay(1000);
Engine.bypasstoserver('03'); delay(1000);
end;

 

How i get number "00", "01a" and "03" ?

Posted
On 4/10/2019 at 12:05 AM, xCarroza said:

Hi @adr.bot can u help me? 😄 Or some 1

 

I'm making a script to autofarm but when I die I can sometimes respawn in giran and another 1 in gludio, how can I make it move to one place or another depending on the city where i respawn?
 
Im trying with this:
 
 
 
    if not User.Buffs.ByID(1413, buff) and user.inrange(81153, 148677, -3464, 3500) then begin
	            Engine.MoveTo(82015, 147986, -3495);
	                    delay(1000);
	    Engine.MoveTo(83176, 148352, -3432); //buffer giran
	   if not User.Buffs.ByID(1413, buff) and user.inrange(-14404, 123473, -3112, 4000) then begin
	   Engine.MoveTo(-14210, 123813, -3112);     //buffer gludio				
 
 
But it does not move in either of the two cities.
Sorry if it's something obvious I'm starting and I'm saturated in some things with so much information of scripts and such.
 
Thanks.
 
I alrdy fixed it, thanks anywais 😄

Can u tell me how to solved script?

  • 4 weeks later...
Posted

Im making simple cap script. Its working only with bypass but doesn’t close cap window. Is there any posibility to close dlgtext window ? Sending key esc doesnt work either 😞

  • 1 month later...
Posted
On 3/18/2023 at 1:44 PM, z3renity said:

Can u tell me how to solved script?

There are ready solution, script called Hunter (https://adrenalinebot.com/en/script/hunter/)
It uses GPS maps for movements, so u can once make all needed routes between towns (there are many ready for different chronicles) and bot will be able to return to spot from any town

 

On 4/15/2023 at 1:25 AM, cookie19 said:

Im making simple cap script. Its working only with bypass but doesn’t close cap window. Is there any posibility to close dlgtext window ? Sending key esc doesnt work either 😞

Adrenaline have no built in methods for that, only if u make ur own solution (packets will not help, need to call game client methods)

  • 4 months later...
Posted

somebody could please check why this script is not working? Thanks:

uses Base;

begin
print(Engine.QuestStatus(419));
Engine.LoadConfig('Leveller-lvl25.xml');
//print(Engine.DlgText);

// <html><head><body>Question:<br>Which of the following do <font color="LEVEL">not</font> describe the life of a wolf?<br><fstring>1110058</fstring><fstring>1110057</fstring><fstring>1110056</fstring><fstring>1110059</fstring><fstring>1110060</fstring></body></html>

  • 8 months later...
  • 5 months later...
Posted

Hi all, i need script for 2 SK/BD chars that hit each other non stop with /attackforce to can charge Pain of Shilen. I use Adrenaline but can't set it to fight each other. I can set them to use Pain of Shilen in 60 sek non stop and when its charged on 3 to use SOS but i have problem to make them to hit themselfs... pls help

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



  • Posts

    • https://www.4shared.com/s/fyGGySJVvfa  
    • SOCNET STORE — is a unique place where you can find everything you need for your work on the Internet!   We offer the following range of products and services: Verified accounts with blue tick marks and confirmed documents in Instagram, Facebook, Twitter (X), LinkedIn; Gift cards and premium subscriptions for your services (Instagram Meta, Facebook Meta, Discord Nitro, Telegram Premium, YouTube Premium, Spotify Premium, ChatGPT, Netflix Premium, LinkedIn Premium, Twitter Premium, etc.); Telegram bot for purchasing Telegram Stars with a minimum markup with automatic delivery; Replenishment of your advertising accounts (in TikTok ADS, Facebook ADS, Google ADS, Bing ADS) + linking a bank card; Payment for any other service or subscription with a markup from 5 to 25% (depending on the cost of the subscription) Available payment methods: via PayPal, any cryptocurrency (+Binance Pay), Telegram Stars, Cash App, or any bank card.    Our online store  SOCNET.STORE  Our Telegram Stars Bot  SOCNET.CC  Our SMM-Panel for social media promotion  SOCNET.PRO  Telegram store  SOCNET.SHOP    News:  ➡ Telegram channel ➡ WhatsApp channel ➡ Discord server  Contacts and support:  ➡ Telegram support ➡ WhatsApp support ➡ Discord support: socnet_support ➡ Email support: solomonbog@socnet.store We have been operating for a long time and have gathered a huge list of reviews about our work! Our large list of positive and honest reviews is presented on our website!   VERIFIED ACCOUNTS    Verified old Instagram Meta account (2010-2020) with an active blue checkmark | Subscription has already been paid for 1 month in advance, account confirmed by documents: from $70 Verified old Facebook Meta account (2010-2023) with an active blue checkmark | Subscription has already been paid for 1 month in advance, account confirmed by documents: from $70 Verified Linkedin account (2010-2024) with an active checkmark and confirmed documents | Checkmark does not require renewal: from $80 Verified old Twitter (X) account (2010-2022) with an active blue checkmark | GEO: Tier 1-3 (your choice) | Subscription has already been paid for 1 month in advance: from $16    TELEGRAM STARS    Telegram Stars | 1 star from $0.0175 | Discounts for bulk orders | Delivery within 1-2 minutes automatically    GIFT SERVICES & PREMIUM SUBSCRIPTIONS  DISCORD NITRO Discord Nitro Classic (Basic) GIFT | 1/12 MONTHS | NO LOGIN OR PASSWORD NEEDED | Full subscription guarantee | Price from: $3.15 Discord Nitro FULL | 1/12 MONTHS | NO LOGIN OR PASSWORD NEEDED | Full subscription guarantee | Price from: $6.8 SPOTIFY PREMIUM Individual Spotify Premium plan for 1 month ON YOUR ACCOUNT | Available worldwide | Price from: $2.49 Family Spotify Premium plan for 1 month ON YOUR ACCOUNT | Works in any country | Price from: $3.75 Personal YouTube Premium Music on your account | 1 month | Ad-free YouTube | Price from: $3.75 Family YouTube Premium Music on your account | 1 month | Ad-free YouTube | Price from: $4.35 TELEGRAM PREMIUM Telegram Premium subscription for 1 month on your account | Authorization required (via TDATA or phone number) | Price from: $6 Telegram Premium subscription for 3 months on your account | No account authorization required | Guaranteed for full period | Price from: $17 Telegram Premium subscription for 6 months on your account | No account authorization required | Guaranteed for full period | Price from: $22 Telegram Premium subscription for 12 months on your account | No account authorization required | Guaranteed for full period | Price from: $37 GOOGLE VOICE • Google Voice Accounts (GMAIL US NEW) | Age/Year: Random 2024 | Phone Verified: Yes | Price from: $13 TWITTER(X) PREMIUM • Twitter Premium X subscription on your Twitter account for 1 month/1 year (your choice). Authorization in your Twitter account is required. Price from: $13 per month • Twitter X Premium Plus subscription with GROK AI on your Twitter account for 1 month/1 year (your choice). Authorization in your Twitter account is required. Price from: $55 NETFLIX PREMIUM • Netflix Premium subscription for 1 month on your personal account for any country, renewable after expiration | Price from: $10 CANVA PRO • CANVA PRO subscription for 1 month via invitation to your email | Price from: $1 CHATGPT 5 • Shared ChatGPT 5 Plus account FOR 2/5 USERS | Price from: $5 / $10 • Group ChatGPT 5 Plus subscription on your own email address for 1 month | Price from: $5 • Personal ChatGPT 5 Plus account FOR 1 USER or CHAT GPT PLUS subscription on your own account | Price from: $18 • ChatGPT 5 PRO account with UNLIMITED REQUESTS | Dedicated personal account FOR 1 USER ONLY or ON YOUR ACCOUNT | Works in any country or region | Price from: $220 Payment for any other subscription and replenishment of advertising accounts: Additional 5–20% to the cost of the subscription on the site or to the replenishment amount depending on the total purchase amount.   Attention: This text block does not represent our full product range; for more details, please visit the relevant links below! If you have any questions, our support team is always ready to help!       Our online store  SOCNET.STORE  Our Telegram Stars Bot  SOCNET.CC  Our SMM-Panel for social media promotion  SOCNET.PRO  Telegram store  SOCNET.SHOP    News:  ➡ Telegram channel ➡ WhatsApp channel ➡ Discord server  Contacts and support:  ➡ Telegram support ➡ WhatsApp support ➡ Discord support: socnet_support ➡ Email support: solomonbog@socnet.store We have been operating for a long time and have gathered a huge list of reviews about our work! Our large list of positive and honest reviews is presented on our website!  10% – 20% Discount or $1 BONUS for your registration  If you’d like to receive a $1 BONUS for your registration OR a DISCOUNT of 10% – 20% on your first purchase, simply leave a comment: "SEND ME MY BONUS, MY USERNAME IS..." You can also use the ready promo code across all our stores: "SOCNET" (15% discount!)  We invite you to COOPERATE and EARN with us  Want to sell your product or service in our stores and earn money? Want to become our partner or propose a mutually beneficial collaboration? You can contact us through the CONTACTS listed in this thread. Frequently Asked Questions and Refund Policy If you have any questions or issues, our fast customer support is always ready to respond to your requests! Refunds for services that do not fully meet the stated requirements or quality will only be issued if a guarantee and duration are explicitly mentioned in the product description. In all other cases, refunds will not be fully processed! By purchasing such services, you automatically agree to our refund policy for non-provided services. We currently accept CRYPTOMUS, Payeer, NotPayments, Perfect Money, Russian and Ukrainian bank cards, AliPay, BinancePay, CryptoBot, credit cards, and PayPal. The $1 registration bonus can only be used for purchases and only once after your first registration in any SOCNET project. We value every customer and provide replacements in case of invalid accounts through our contact methods! p.s.: Purchase bonuses can be used across any SOCNET projects: web store or Telegram bots.
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock