Jump to content

Recommended Posts

Posted

this script is working but its working like as a bicycle vs porsche compared to my script.

 

mb i will share this later

 

I have auto restock

Auto exchange aa

auto captcha (only sound)

auto sell crap

auto rebuff

auto tp

and the character do not use one room its using all of them runing in cylce and killing all.

 

btw wtt nobless script for auto captcha (can be on my hwid)

Nice script u have, would be great if shared :)

Posted

Hello, seems not working in L2tales, at least the part where bot must auto tp back to omens, is it possible to fix that?

go to omens and run script, working fine.

Posted
   var item:tl2item;
begin
while true do begin
delay(1000);
    if not inventory.user.byid(728, item) or (item.count<1) then begin // (iditem, item) logo após (item.cound<xxx) quantidade do item
      Engine.SetTarget(13270); // (id do npc)
      Engine.DlgOpen;
      Engine.DlgSel(6); // (qual opção de janela do npc escolher)
      Engine.NPCExchange(728, 10); // (iditem, quandidade)
      Print('OK');
      delay(1000);
end;
end;
end.

auto restock

just add or remove ids and bypasses

and if you want, can merge to.

Posted (edited)

Anyone can help me linking auto return +buff with tts quest. I get the logic but not too sure on syntax how to link deadcheck function it that.

 

 if user.inrange(147936, -55368, -2760, 250) and User.Buffs.ByID(1204, buffCheck) then begin
        Print('Teleport to HS');
        Engine.SetTarget(31275);
        Engine.DlgOpen;
        Delay(500);
        Engine.DlgSel(1);
        Delay(500);
        Engine.DlgSel(11);  //teleports to hs
        Delay(5000);
    end;    
                          
    if user.inrange(149600, -112707, -2060, 250) then begin   //hs spawn location
      
      Engine.MoveTo(149526, -112683, -2090);  // moves close to jeremy 
       while not User.Dead  do       // and while not dead I want to start cycle to run arround.. cant get to work..    function called  deadCheck
  Engine.SetTarget(31521);                                      ///jeremy
  Engine.DlgOpen;
  Engine.DlgSel('Quest');
  Delay(500);
  Engine.DlgSel('Egg Delivery');
  Delay(500);
  Engine.bypasstoserver('Quest 621_EggDelivery 31521-1.htm');
  Engine.MoveTo(149722,-112600,-2090);
  Engine.MoveTo(150404,-113188,-2141);
Edited by Giedrius0301
Posted (edited)

_____________________________________________________________________________________

 

HI PPL

I begin with : thank you for all information on this forum.    U ARE TOP !

i have one question please i trying to make my own script for teleport with alt +b (database) but i have one probleme.

 

I explain my when iam coming at the last step of my script,
( button  : GO TO NPC )  my script dont work.
I found only ( 
L2UI_CT1.Button_DF_Down )   on WINHEX but  he dont work , if you can help me thanks alot.
sorry for my english
 

 

SCRIPT :

 

begin
Engine.BypassToserver('_dropMonstersByName_ gem dragon');                  
delay(1000);
Engine.BypassToserver('_dropMonsterDetailsByName_22830');                  
delay(1000);
Engine.BypassToserver('_L2UI_CT1.Button_DF_Down');           // dont work     WICH SYNTAX I MUST WRITE PLEASE , ty 
delay(1000);
end.

 

 

i show u my screenshot game and winhex : 

 

TY PER AVANCE

 

 

173475Shot00058.png

 

Edited by krea04
Posted (edited)
my syntax :  but i dont know where i need to write ACTION  can u help me please ty

Engine.BypassToserver('_L2UI_CT1.Button_DF_Down');
 
________________________________________________________________________________________________________
 
begin
Engine.BypassToserver('_dropMonstersByName_ gem dragon');                  
delay(1000);
Engine.BypassToserver('_dropMonsterDetailsByName_22830');                  
delay(1000);
Engine.BypassToserver('"action="_L2UI_CT1.Button_DF_Down');     // dont work too :/   i dont know where i must write action
delay(1000);
end.
Edited by krea04
Posted

 

Anyone can help me linking auto return +buff with tts quest. I get the logic but not too sure on syntax how to link deadcheck function it that.

 

 if user.inrange(147936, -55368, -2760, 250) and User.Buffs.ByID(1204, buffCheck) then begin
        Print('Teleport to HS');
        Engine.SetTarget(31275);
        Engine.DlgOpen;
        Delay(500);
        Engine.DlgSel(1);
        Delay(500);
        Engine.DlgSel(11);  //teleports to hs
        Delay(5000);
    end;    
                          
    if user.inrange(149600, -112707, -2060, 250) then begin   //hs spawn location
      
      Engine.MoveTo(149526, -112683, -2090);  // moves close to jeremy 
       while not User.Dead  do       // and while not dead I want to start cycle to run arround.. cant get to work..    function called  deadCheck
  Engine.SetTarget(31521);                                      ///jeremy
  Engine.DlgOpen;
  Engine.DlgSel('Quest');
  Delay(500);
  Engine.DlgSel('Egg Delivery');
  Delay(500);
  Engine.bypasstoserver('Quest 621_EggDelivery 31521-1.htm');
  Engine.MoveTo(149722,-112600,-2090);
  Engine.MoveTo(150404,-113188,-2141);

 

can someone help with this one ? still strugling 

Posted
var
item: TL2Item;
buff: TL2Buff;

function buffCheck: Boolean;
begin
    if not User.Buffs.ByID(1062, buff) then begin
        Result:=true;
        Print('Buffs are needed. Buffing...');
        Delay(500);
        engine.bypasstoserver('_bbshome');
        Delay(500);
        engine.bypasstoserver('02');
        Delay(500);
        engine.bypasstoserver('0b');
        Delay(500);
        engine.bypasstoserver('01a');
        Delay(500);
        Print('Buffed.'); 
    end;
Result:=false;
end;

function deadCheck: Boolean;
begin
Result := false;
    if User.Dead then begin
        Result := true;
        Print('Dead. Pressing to village.');
        Delay(1000);
        Engine.FaceControl(0,false);
        Engine.GoHome;
        Delay(10000);
    end;
end;

begin
while true do begin
delay(150);

           if user.inrange(45368, 49656, -3048, 5000) then begin
        buffCheck;
        end;
        
        if user.inrange(45368, 49656, -3048, 5000) and user.buffs.byid(1062, buffCheck) then begin
  Print('Going back to spot.');
  Engine.bypasstoserver('_bbshome'); 
  Delay(1000);
  Engine.bypasstoserver('02');
  Delay(1000);
  Engine.bypasstoserver('0a');
  Delay(1000);
  Engine.bypasstoserver('033');
  Delay(1000);
  Engine.bypasstoserver('0f');
  Delay(1000);
  Engine.bypasstoserver('_bbsgetfav');
  Delay(5000);
    end;
    if user.inrange(-19185, 13553, -4880, 500) then begin     
           Engine.MoveTo(-18056, 13544, -4880);
           Engine.MoveTo(-17864, 13896, -4880);
           Engine.MoveTo(-16872, 13832, -4880);
      delay(1000);
    
    Engine.FaceControl(0,true);
    while not deadCheck do delay(3000);
    end;
end;
end.

Script for boting in dark omens, when die, check buffs, teleport to spot.

If you want change farm spot, change coordinates and teleport.

 

no teleport and rebuff in l2 tales need help plis

Posted

 

Anyone can help me linking auto return +buff with tts quest. I get the logic but not too sure on syntax how to link deadcheck function it that.

 

 if user.inrange(147936, -55368, -2760, 250) and User.Buffs.ByID(1204, buffCheck) then begin
        Print('Teleport to HS');
        Engine.SetTarget(31275);
        Engine.DlgOpen;
        Delay(500);
        Engine.DlgSel(1);
        Delay(500);
        Engine.DlgSel(11);  //teleports to hs
        Delay(5000);
    end;    
                          
    if user.inrange(149600, -112707, -2060, 250) then begin   //hs spawn location
      
      Engine.MoveTo(149526, -112683, -2090);  // moves close to jeremy 
       while not User.Dead  do       // and while not dead I want to start cycle to run arround.. cant get to work..    function called  deadCheck
  Engine.SetTarget(31521);                                      ///jeremy
  Engine.DlgOpen;
  Engine.DlgSel('Quest');
  Delay(500);
  Engine.DlgSel('Egg Delivery');
  Delay(500);
  Engine.bypasstoserver('Quest 621_EggDelivery 31521-1.htm');
  Engine.MoveTo(149722,-112600,-2090);
  Engine.MoveTo(150404,-113188,-2141);

 

 

Correct syntax of "while" is:

while not User.Dead do
 begin

   delay(150);
   
    //your code here
    //your code here
    //your code here
    //your code here

 end;
Posted

 

Correct syntax of "while" is:

while not User.Dead do
 begin

   delay(150);
   
    //your code here
    //your code here
    //your code here
    //your code here

 end;
function deadCheck: Boolean;
begin
Result := false;
    if User.Dead then begin
        Result := true;
        Print('Dead. Pressing to village.');
        Delay(1000);
        Engine.FaceControl(0,false);
        Engine.GoHome(rtTown);
        Delay(1000);
    end;
end;
                                                      that is a deadcheck function 
 
   if user.inrange(149600, -112707, -2060, 250) then begin    //spawn hs
      Engine.MoveTo(149526, -112683, -2090);                  //close to jeremy
       Engine.FaceControl(0,true);    
       while not deadcheck  do begin
  Engine.FaceControl(0,true);    
  Engine.SetTarget(31521);
  Delay(500);                                     ///jeremy
  Engine.DlgOpen;
  Delay(500);
  Engine.DlgSel('Quest');
  Delay(500);
  Engine.DlgSel('Egg Delivery');
  Delay(500);
and so on.. for whole delivery quest
 
end;
end;
 
 
what I am missing there? it would not pick up that character is dead and would not teleport to town.. it is doing all running fine.. 
Posted

 

Thx adr.bot and Boukipike, the scrip work very well, not 100% but work fine (only stock in some respawn areas of goodard, i don't have all i thick), in the morning i take 100 frintezza pass, saw the scrip work fine for me. i one to said thank a lot for the help, i use a combination of procedure and function (like a adr.bot said), and use if and while with engine.queststatus() whit the different stage of quest (thx to boukipike).

 

 

P.S: i don't replay to adr.bot the question about backing to cal hall, the command you said me is (rttohall) but don't work, saw i read the scrip manual and i found there, the command is (rttoholl) whit "o".

 

 

Can u share this script, pls?

Posted

_____________________________________________________________________________________

 

HI PPL

 

I begin with : thank you for all information on this forum.    U ARE TOP !

 

i have one question please i trying to make my own script for teleport with alt +b (database) but i have one probleme.

 

I explain my when iam coming at the last step of my script,

( button  : GO TO NPC )  my script dont work.

I found only ( L2UI_CT1.Button_DF_Down )   on WINHEX but  he dont work , if you can help me thanks alot.

sorry for my english

 

 

SCRIPT :

 

begin
Engine.BypassToserver('_dropMonstersByName_ gem dragon');                  
delay(1000);
Engine.BypassToserver('_dropMonsterDetailsByName_22830');                  
delay(1000);
Engine.BypassToserver('_L2UI_CT1.Button_DF_Down');           // dont work     WICH SYNTAX I MUST WRITE PLEASE , ty 
delay(1000);
end.

 

 

i show u my screenshot game and winhex : 

 

TY PER AVANCE

 

 

173475Shot00058.png

 

 

try use http://rghost.net/8HGjpZjCm

Posted (edited)

i dont know why do u have so big problem with this....

Engine.BypassToserver('_bbshome');                  
delay(1000);
Engine.BypassToserver('08');                  
delay(1000);
Engine.BypassToserver('0b Gem Dragon');                  
delay(1000);
Engine.BypassToserver('0d');                  
delay(1000);
Engine.BypassToserver('0d');                  
delay(1000);

btw is not tales dead?

 

 

ohh i can see its not tales :>

 

so mb this will work ;P

Engine.BypassToServer('_bbshome', True);
delay(1500);
   Engine.BypassToServer('_dropMonstersByName_ Scarlet Stakato Noble', True);
   delay(1500);
    Engine.BypassToServer('_dropMonsterDetailsByName_22636', True);
   delay(1500);
     Engine.BypassToServer('_dropMonsterDetailsByName_22636_3', True);
   delay(1500);
end;
Edited by m44ti
  • 2 weeks later...
Posted (edited)

hello... I am playing L2neo... and I am using L2adrenaline script qust tateossian... but I have a problema when my player is dead he return to the city and he try take buff... when he try take buff he stuck... 


 


9a1017a875cdba322f63d57d581e8592o.jpg

Edited by juliopecador

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.




  • Posts

    • So few things for this guy:   He asked me to implement a code like EXP, SP, DROP runes in his server that did not work and he paid 27 Euro via Revolut.  He has no idea what compile, source is and he work with ubuntu.  I entered to his PC and using eclipse i add the code and compile as usually, i ask him to replace the jar with the new jar. He did not know how so i did it my self. Later on the ubuntu which im not familiar with could not continue and did not throw any error. I did not know what was happening until i asked Nightwolf who is experienced with Ubuntu and told me probably some error and can't continue. I was surprized since i only added few lines not edit or changed anything so i knew that the Login, Gameserver from source had mismatch with the compiled one. Later on i fix an error he had in raidboss_spawnlist where Long value tried to store inside Int value and explained him:   https://postimg.cc/F1zxMfDW   later on i explained him that source and compiled that he had had many issues and it was not my problem and he said that my code destroyed all his compiled.    In this point i ask @flatronnto post source or compile with my code inside to check the code i made and how he claim it destroyed his source. If he post then all can see what i added and it did not affect the source in an way other than edit the addExperience method - drop method and L2ItemInstance class. If he deny then all his trash talk is fake.   Then i tried contact him to resolve the issue even tho is not my problem, he paid for the code, i did the code, i was done but he ignored me:   https://postimg.cc/ts4RkjXt   I stopped after he claimed i destroyed intentionally his server, that i enter to other's PC to hack / destroy their compiles and when he said he will false advertise my server.    If @Nightw0lf can post he can also verify this guy is mentally ill not only he don't know compile, server, source, java differences but he also claim fake things that any other person with much money and good knowledge and patience could sue him online. He can't even open a proper report topic, he post in L2 OFF section.    In addition this guy offenses rudeness and treats is on another level, we had appointment at 18:00 GR time i was waiting for him 25 min and then i left PC for a bit, he showed up after 30 minutes and he said you're not here ill false advertisent you e.t.c.    https://postimg.cc/pmKNKcjV   He is mentally unstable and nobody should trade with this person. @Celestine Anyone can request LOG from my discord to see all conversation if he want. I have nothing to hide i worked for the money he paid and i did my job perfectly. I have 4-5 clients a week in last year and nobody had issues. Read the answer i just posted and you see who is right and who is wrong.
    • dsgl2 Pm me on discord i will try to help you to talk with winter , but again deal only with him or they will scam you 
    • I have what you're looking for already made, if you want, contact me. Greetings.
    • What webhosting are you using? You'll need to talk with administrators of the webhosting to open outgoing connections to port 1433, maybe they won't open it for you, instead, you should get a webhosting for mu online since they always have 1433 port open for outgoing connections. Also, make sure you have your 1433 TCP port open for incoming connections, for security, I suggest you exclusively add the cPanel IP Address to connect to your port 1433 in your firewall, so no one else can try to connect to your database. Let me know if you have any questions, happy to help.
  • 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