Jump to content

Recommended Posts

Posted (edited)

another question

 

Engine.UseKey();

 

Engine.UseKey(13);//enter

Engine.UseKey($26);//up
Engine.UseKey($28);//down

 

what code is for simple mouse left click

 

or how to move cursor on location and clicking without infocus the window

Edited by m44ti
Posted (edited)

Hello everyone.

 

I am trying to make a script, so when i get to level 15 for exemple, i'll stop attacking mobs, whait for te toon to get out of combat and use scroll of escape, if i am being attacked when i get the level i need, kill the mob or mobs  and whait again to get out of combat and use scroll.

 

i've been trying to work it out but with no success :(

 

begin
  if user.level<15 then begin
    engine.autosoulshot(5789, true);
    engine.autotarget(2500);
    engine.attack;
    engine.pickup;
  end;
  if (user.target.dead) then begin
    while user.incombat do
    delay(1000);
    engine.autosoulshot(5789, true);
    engine.autotarget(2500);
    engine.attack;
    engine.pickup;
  end;
    engine.useitem(12753);
    delay(20000)
end.

Hope someone can help me here, Thx

Edited by MaxWell1986
Posted

Hello everyone.

 

I am trying to make a script, so when i get to level 15 for exemple, i'll stop attacking mobs, whait for te toon to get out of combat and use scroll of escape, if i am being attacked when i get the level i need, kill the mob or mobs  and whait again to get out of combat and use scroll.

 

i've been trying to work it out but with no success :(

 

begin
  if user.level<15 then begin
    engine.autosoulshot(5789, true);
    engine.autotarget(2500);
    engine.attack;
    engine.pickup;
  end;
  if (user.target.dead) then begin
    while user.incombat do
    delay(1000);
    engine.autosoulshot(5789, true);
    engine.autotarget(2500);
    engine.attack;
    engine.pickup;
  end;
    engine.useitem(12753);
    delay(20000)
end.

Hope someone can help me here, Thx

this looks like show mobs count (if attack) but for some reason for me this doesnt work

var AggroMobs:integer; 

function MobsAttacking : integer; //Сколько мобов нас атакует?
var i, n: Integer;
begin
n := 0;
AggroMobs:=0;
for i := 0 to NpcList.Count - 1 do
if (NpcList.Items(i).Target = User) and not NpcList.Items(i).Dead then inc(n);
AggroMobs:= n;
Result := n;
end;

begin
print(MobsAttacking);
end.
Posted

its easy

U need to load map from the zone that is for example 60k range far away it will works like fuck off all the mobs

 

comments are in polish cuz its mine and u can ofc use translator.

//level 7-20 
       if ((User.Level>6) and (User.Level<20)) then begin

	   //TP orcbaracks
	   while not (user.InRange(-90494, 108207, -3552, 500)) do begin
          
          Engine.BypassToServer('_bbshome', True);
delay(1500);
   Engine.BypassToServer('_bbsgatekeeper', True);
   delay(1500);
    Engine.BypassToServer('_bbsgatekeeper_main-12.htm', True);
   delay(1500);
  Engine.BypassToServer('14', True);
        delay(1000);
   end;
//koniec TP orcbaracks

         

               engine.loadzone('OrcBaracks'); 
   delay(500);
   Engine.FaceControl(0,true);

    



   
                           
                            
   while (User.InRange(-90440, 108104, -3552, 5000)) do begin
            delay(500);

                      captcha();
                      checkdead();
                      checkbuff();

                  if (User.Level>19) then begin



                  engine.loadzone('Zero'); 
                 
                  while user.incombat do delay(1000);
                 Engine.FaceControl(0,false);
                 Print('LEVEL 20 ZMIENIAM SPOT');

                      captcha();
                      checkdead();
                      checkbuff();
                   

                 //tp do aden 
	while not (user.InRange(146217, 25191, -1992,500)) do begin
	delay(1000);
	Engine.BypassToServer('_bbshome', True);
delay(1500);
   Engine.BypassToServer('_bbsgatekeeper', True);
   delay(1500);
    Engine.BypassToServer('16', True);
   delay(1500);
   end;
//koniec tp aden

                      captcha();
                      checkdead();
                      checkbuff();


                       end;
                   
                  end;
        end;
               //koniec level 6-20
Posted

Would love fast answer... What is party guard? I have a bp in party if i pick him as party guard my char will attack mobs that attack bp? Or it's smth else?

Posted

Would love fast answer... What is party guard? I have a bp in party if i pick him as party guard my char will attack mobs that attack bp? Or it's smth else?

i guess yes

Posted

adr.bot first of all, thank you for your fast reply,

I've been searching for all the internet about the code you show me and  i found no solution for it :(

i found some other code but i dont think it can work too, maybe you can figure it out how to change it for better working.

while User.Level<15 do begin
  Engine.AutoSoulshot(5790, true);
  Engine.AutoTarget(2000);
  Engine.UseSkill(1177);
 if Inventory.Quest.ByName('Hills of Gold Monster Claw', item) then break;
end;
while User.Level<15 do begin
 Engine.AutoSoulshot(5790, true);  // Thise help to use scroll safely?
 Engine.UseSkill(1177);
 if User.InCombat=false then break;
end;
Engine.UseItem(12753);

I am not a experienced coder, in fact, i know nothing about delphi or some other codes, but i am a good searcher and a good learner, i started like 5 days ago with thise.

 

Since i dont know how to code, i am doing a code like thise:

http://www.nameyellow.racing/p2v836eQ

with no procedures and stuff like that, i am just starting :D

meanwhile, i am trying to make a code for thise part of the quest, i must get 5 item from one mob and 10 from another, thise is 1st quest for kamael female soulbreaker, i cant figure out how to do it, forgetting the last post i did about how to safely use scroll, i saw thise thing, the adrenalin window wont show any quest item but the L2 window show them, is thise a bug? is the adrenalin detecting the items but just not showing them? or is thise the reason i cant make the code to work?

 

NoQuestItem.th.jpg

Thanks for your attention guys :)

 

Posted

adr.bot first of all, thank you for your fast reply,

I've been searching for all the internet about the code you show me and  i found no solution for it :(

i found some other code but i dont think it can work too, maybe you can figure it out how to change it for better working.

while User.Level<15 do begin
  Engine.AutoSoulshot(5790, true);
  Engine.AutoTarget(2000);
  Engine.UseSkill(1177);
 if Inventory.Quest.ByName('Hills of Gold Monster Claw', item) then break;
end;
while User.Level<15 do begin
 Engine.AutoSoulshot(5790, true);  // Thise help to use scroll safely?
 Engine.UseSkill(1177);
 if User.InCombat=false then break;
end;
Engine.UseItem(12753);

I am not a experienced coder, in fact, i know nothing about delphi or some other codes, but i am a good searcher and a good learner, i started like 5 days ago with thise.

 

Since i dont know how to code, i am doing a code like thise:

http://www.nameyellow.racing/p2v836eQ

with no procedures and stuff like that, i am just starting :D

meanwhile, i am trying to make a code for thise part of the quest, i must get 5 item from one mob and 10 from another, thise is 1st quest for kamael female soulbreaker, i cant figure out how to do it, forgetting the last post i did about how to safely use scroll, i saw thise thing, the adrenalin window wont show any quest item but the L2 window show them, is thise a bug? is the adrenalin detecting the items but just not showing them? or is thise the reason i cant make the code to work?

 

NoQuestItem.th.jpg

Thanks for your attention guys :)

if adrenalin not show quest item so there is problem, you can try check quest status and make then

Posted (edited)

Does anyone have the Anti Captcha for interlude?

 

mMqwv07.png

 

or alarm?

Edited by luannbr
Posted (edited)

adr.bot first of all, thank you for your fast reply,

I've been searching for all the internet about the code you show me and  i found no solution for it :(

i found some other code but i dont think it can work too, maybe you can figure it out how to change it for better working.

while User.Level<15 do begin
  Engine.AutoSoulshot(5790, true);
  Engine.AutoTarget(2000);
  Engine.UseSkill(1177);
 if Inventory.Quest.ByName('Hills of Gold Monster Claw', item) then break;
end;
while User.Level<15 do begin
 Engine.AutoSoulshot(5790, true);  // Thise help to use scroll safely?
 Engine.UseSkill(1177);
 if User.InCombat=false then break;
end;
Engine.UseItem(12753);

I am not a experienced coder, in fact, i know nothing about delphi or some other codes, but i am a good searcher and a good learner, i started like 5 days ago with thise.

 

Since i dont know how to code, i am doing a code like thise:

http://www.nameyellow.racing/p2v836eQ

with no procedures and stuff like that, i am just starting :D

meanwhile, i am trying to make a code for thise part of the quest, i must get 5 item from one mob and 10 from another, thise is 1st quest for kamael female soulbreaker, i cant figure out how to do it, forgetting the last post i did about how to safely use scroll, i saw thise thing, the adrenalin window wont show any quest item but the L2 window show them, is thise a bug? is the adrenalin detecting the items but just not showing them? or is thise the reason i cant make the code to work?

 

NoQuestItem.th.jpg

Thanks for your attention guys :)

 

cracked adrenaline sometimes do not show a quest items. I manage it to play a sound to inform player thats smth is wrong but with original Adrenaline all works great.

 

I give u some examples from my old nobless script, It is as it is, I wrote this about 7 month ago. Today i know i would write it better but i dont have time and there is no need to do that beacause its working.

 

 

Modular check item status:

 

//check quest status
if (qprogress = 1) then begin
q1s := 100;
end;

if Engine.QuestStatus(241, 1) then begin
q1s := 101;
end;

if Engine.QuestStatus(241, 2) then begin
q1s := 102;
end;

if Engine.QuestStatus(241, 3) then begin
q1s := 103;
end;

if Engine.QuestStatus(241, 4) then begin
q1s := 104;
end;

if Engine.QuestStatus(241, 5) then begin
q1s := 105;
end;

if Engine.QuestStatus(241, 6) then begin
q1s := 106;
end;

if Engine.QuestStatus(241, 7) then begin
q1s := 107;
end;

if Engine.QuestStatus(241, 8) then begin
q1s := 108;
end;

if Engine.QuestStatus(241, 9) then begin
q1s := 109;
end;

if Engine.QuestStatus(241, 10) then begin
q1s := 110;
end;

if Engine.QuestStatus(241, 11) then begin
q1s := 111;
end;

if Engine.QuestStatus(241, 12) then begin
q1s := 111;
end;

if Engine.QuestStatus(241, 13) then begin
q1s := 113;
end;

if Engine.QuestStatus(241, 14) then begin
q1s := 114;
end;

if Engine.QuestStatus(241, 15) then begin
q1s := 115;
end;

if Engine.QuestStatus(241, 16) then begin
q1s := 116;
end;

if Engine.QuestStatus(241, 17) then begin
q1s := 116;
end;

if Engine.QuestStatus(241, 18) then begin
q1s := 118;
end;

if Engine.QuestStatus(241, 19) then begin
q1s := 119;
end;

if (Inventory.Quest.ByID(7677, QuestItem) = true) then begin

q1s := 200;
end;

if (qprogress = 2) then begin
q1s := 200;
end;


if Engine.QuestStatus(242, 1) then begin
q1s := 200;
end;

if Engine.QuestStatus(242, 2) then begin
q1s := 200;
end;

if Engine.QuestStatus(242, 3) then begin
q1s := 203;
end;
if Engine.QuestStatus(242, 4) then begin
q1s := 203;
end;
if Engine.QuestStatus(242, 5) then begin
q1s := 203;
end;
if Engine.QuestStatus(242, 6) then begin
q1s := 206;
end;
if Engine.QuestStatus(242, 7) then begin
q1s := 207;
end;
if Engine.QuestStatus(242, 8) then begin
q1s := 208;
end;
if Engine.QuestStatus(242, 9) then begin
q1s := 209;
end;
if Engine.QuestStatus(242, 10) then begin
q1s := 209;
end;
if Engine.QuestStatus(242, 11) then begin
q1s := 211;
end;
if (Inventory.Quest.ByID(7678, QuestItem) = true) then begin
q1s := 300;
end;

if (qprogress = 3) then begin
q1s := 300;
end;

if Engine.QuestStatus(246, 1) then begin
q1s := 300;
end;

if Engine.QuestStatus(246, 2) then begin
q1s := 302;
end;

if Engine.QuestStatus(246, 3) then begin
q1s := 303;
end;

if Engine.QuestStatus(246, 4) then begin
q1s := 304;
end;

if Engine.QuestStatus(246, 5) then begin
q1s := 305;
end;

if Engine.QuestStatus(246, 6) then begin
q1s := 306;
end;

if (Inventory.Quest.ByID(7679, QuestItem) = true) then begin
q1s := 400;
end;

if (qprogress = 4) then begin
q1s := 400;
end;

Example of module part

//start stage 7
    while (q1s=107) do begin
    
// tp heine
while (tep1=0) do begin
        captcha();
        checkdead();
        checkbuff();
    delay(1000);
    Engine.BypassToServer('_bbshome', True);
delay(1500);
Engine.BypassToServer('_bbsgatekeeper', True);
delay(1500);
Engine.BypassToServer('1d', True);
delay(1500);


    if user.InRange(111140, 218967, -3520,500) then begin
    tep1 := 1;
    end;
    end;
    tep1 := 0;


//koniec tp heine

Engine.MoveTo(110936, 219096, -3520);
Engine.MoveTo(110088, 219048, -3456);
Engine.MoveTo(110088, 217960, -3536);
Engine.MoveTo(110072, 217208, -3728);
Engine.MoveTo(109400, 217480, -3728);
Engine.MoveTo(108632, 217496, -3688);
Engine.MoveTo(107784, 217528, -3656);
Engine.MoveTo(107512, 217944, -3656);
Engine.MoveTo(107080, 218088, -3656);
Engine.MoveTo(107128, 217560, -3576);
Engine.MoveTo(107048, 216984, -3576);
Engine.MoveTo(106968, 216984, -3576);

Engine.SetTarget(31042);
delay(500);
Engine.DlgOpen;
delay(500);
Engine.DlgSel('Quest');
delay(500);
Engine.DlgSel('Path of the Noblesse');
delay(500);
Engine.DlgSel('Wait');
delay(500);

//tutaj jest q item 7589 1

if Engine.QuestStatus(241, 8) then begin

         Print('PART I 8/19');
         q1s := 108;
end;

end;
//koniec stage 7

 

Edited by m44ti
  • 2 weeks later...
Posted

Any1 have script for Auto buff at l2dex? U cen buff from item, but next i dont know how to chose buff option.
some 1 can help me ?

Posted

If u place a wrong bypass name it will kick u from the server beacuse of antibot reason

And make sure that for button there is a false value in the bypass command for buttons and true for links if it will be wrong u will get kicked again. 

begin
  engine.useitem(9516);
         delay(500);
      Engine.BypassToServer('buff_book_1.htm#9516', false);



//NOW SELECT UR BUFFS NOW FROM THIS LIST:
//http://pastebin.com/xuty9qeA
//u need to cut out the bypasses for example
//this is vampiric rage 2 times:

delay(500);
Engine.BypassToServer('sb_r_b_p?id=324612#9516', true);

delay(500);
Engine.BypassToServer('sb_r_b_p?id=324612#9516', true);
delay(500);
//and so on and so on



//after u finish buff section u need to go to the songs section by this:
Engine.BypassToServer('buff_book_2.htm#9516', false);
delay(500);

//select ur dances and songs from list
//http://pastebin.com/bq8ELmSw
//cut out the bypasses and place it into the command (this is song of hunter):


Engine.BypassToServer('sb_r_b_p?id=68865#9516', true);
delay(500);
Engine.BypassToServer('sb_r_b_p?id=68865#9516', true);
delay(500);



end.
  • 2 weeks later...
Posted

Hello,

 

Does anyone have a Dominator script for Sel Mahum aoeing? Or at least something that does a similar thing that I could work on.

 

Thanks

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

    • I’ve seen tools like Find Person Name by Photo come in handy for creators who want to understand their audience better or spot fake accounts trying to piggyback on their growth. Pairing something like that with a solid SMM panel can make your workflow feel way smoother, especially if you're trying to grow without getting tangled in guesswork.
    • Join our discord: https://www.lineage2.cz/discord  
    • You should buy it then I’ll make a discount  
    • Hi everyone,   In 2014, I completely stepped away from developing L2 servers and doing L2J-related work. Since then, I’ve only opened this server about once a year and helped a few servers and individuals for free. I haven’t taken on any paid L2J work since then.   LINEAGE2.GOLD is a project that has reached about Season 6. The first season launched at the end of 2020 and was a fully rebuilt Gold-style server on the Classic client (protocol 110). It featured many custom systems and enhancements. After several seasons, I decided to abandon the Mobius-based project and move to Lucera, as my goal was to get as close as possible to Interlude PTS behavior while still staying on the L2J platform.   The current project was once again completely rebuilt, this time on the Essence client (protocol 306), and is based on Lucera. Because of that, acquiring a license from Deazer is required.   My Lucera extender includes, but is not limited to: Formulas.java Basic anti-bot detection, which proved quite effective, we caught most Adrenaline users using relatively simple server-side logic, logged them, and took staff action. Simple admin account lookup commands based on IP, HWID, and similar identifiers. In-game Captcha via https://lineage2.gold/code, protected by Cloudflare, including admin commands for blacklisting based on aggression levels and whitelisting. Additional admin tools such as Auto-Play status checks, Enchanted Hero Weapon live sync, force add/remove clans from castle sieges, item listeners for live item monitoring, and more. A fully rewritten Auto-Play system with support for ExAutoPlaySetting, while still using the Auto-Play UI wheel, featuring: Debuff Efficiency Party Leader Assist Respectful Hunting Healer AI Target Mode Range Mode Summoner buff support Dwarf mechanics Reworked EffectDispelEffects to restore buffs after Cancellation. Raid Bomb item support. Reworked CronZoneSwitcher. Prime Time Raid Respawn Service. Community Board features such as Top rankings and RB/Epic status. Custom systems for Noblesse, Subclasses, support-class rewards, and much more.   Depending on the deal, the project can include: The lineage2.gold domain The website built on the Laravel PHP framework The server’s Discord Client Interface source Server files and extender source The server database (excluding private data such as emails and passwords)   I’m primarily looking for a serious team to continue the project, as it would be a shame to see this work abandoned. This is not cheap. You can DM me with offers. If you’re wondering why I’m doing this: I’ve felt a clear lack of appreciation from the L2 community, and I’m not interested in doing charity work for people who don’t deserve it. I’m simply not someone who tolerates BS. Server Info: https://lineage2.gold/info Server for test: https://lineage2.gold/download Over 110 videos YouTube playlist: https://www.youtube.com/watch?v=HO7BZaxUv2U&list=PLD9WZ0Nj-zstZaYeWxAxTKbX7ia2M_DUu&index=113
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..

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