Jump to content

All Activity

This stream auto-updates

  1. Today
  2. Yesterday
  3. Last week
  4. Maybe the serverlist for your bot is a txt and have been changed from retail? We are not sending the actual name to the client. Auth server tells the client there are 3 servers online with ids 1, 3, and 5 <server id="1" name="Bartz" /> <server id="2" name="Sieghardt" /> <server id="3" name="Kain" /> <server id="4" name="Lionna" /> <server id="5" name="Erica" />
  5. What does this mean, effectively, if you had a ton of toons on Idle? Did you get the database(s) or?
  6. I'm not sure how to say that the message would get through -> Results will be cleaned of malice attempts <- So how about just don't do it? A nice way to get blocked from forum, if you'd ask me.
  7. There have been suggestions circulating that were gaining traction, so we've decided to explore what the community would consider implementing. Please note that the results will be scraped for misuse before a decision is made. Catch up on drama and continue discussions regarding suggested changes for Kain on the Lineage2 Toggle Discord #suggestions channel.
  8. hm weird. can you point me to the individual rates of each server?
  9. Earlier
  10. Hmm, the link on the website was working fine for me. https://discord.gg/XaW2SfkArg
  11. can u send me a discord invite?
  12. Verit

    Alt+B Buffs Bypasses

    uses SysUtils, Classes; var SafePoint: array of integer = [147064, 25816, -2016]; // "безопасная" точка - куда отбегать для ребафа BuffID: integer = 1388; // ID бафа, по которому проверять необходимость ребафа 1388-Greater Might RebuffTime: cardinal = 60000; // время до окончания бафа для ребафа (в мс) AltB: array of string = ['_bbshome', '11', '17', '16']; // байпасы для бафа 17-voin 16-me procedure AltB_Rebuff_Thread(); var X, Y, Z: integer; begin while delay(555) do begin if (BuffTime(BuffID) < RebuffTime) then begin Engine.Msg('[Rebuff]', 'Пора ребафаться, отхожу в безопасное место', 0); // предпринимаем необходимые действия, например тормозим другие потоки или что-то еще // если хотите чтобы бот сначала добил всех агро мобов, которые висят на нем, // прежде чем бежать в безопасную точку, то раскоментируйте код ниже {if (HaveAgroMobs) then begin Engine.Msg('[Rebuff]', 'Отбиваюсь от мобов', 128); while (HaveAgroMobs) do delay(555); Engine.FaceControl(1, true); end; } X:= User.X; Y:= User.Y; Z:= User.Z; Engine.FaceControl(1, false); Engine.Msg('[Rebuff]', 'Запомнил свои координаты: ['+IntToStr(X)+', '+IntToStr(Y)+', '+IntToStr(Z)+']', 0); while (User.DistTo(SafePoint[0], SafePoint[1], SafePoint[2]) > 222) do // если нужно, то if Engine.MoveTo(SafePoint[0], SafePoint[1], SafePoint[2]) then delay(555); // бежим в безопасную точку Delay(1000); if (HaveAgroMobs) then begin // если на нас висят агро мобы, то Engine.Msg('[Rebuff]', 'Отбиваюсь от мобов', 128); Engine.FaceControl(1, true); // включаем интерфейс while (HaveAgroMobs) do delay(555); // пока есть агро мобы - ждем Engine.FaceControl(1, false); // выключаем интерфейс while (User.InCombat) do delay(555); // ждем выхода из боя end; repeat BuffAltB(); // ребафаемся до тех пор until (BuffTime(BuffID) > RebuffTime); // пока время бафа не станет больше требуемого Engine.MoveTo(X, Y, Z); // возвращаемся в координаты, которые запомнили перед бафом Engine.FaceControl(1, true); // включаем обратно интерфейс и продолжаем фарм end; end; end; // https://adrenalinebot.com/ru/api/example/buff-time-check function BuffTime(ID: integer): cardinal; var i: integer; begin result:= 0; for i:= 0 to User.Buffs.Count-1 do begin // пробегаем по списку своих бафов if (User.Buffs.Items(i).id = ID) then begin // если ID совпал, то result:= User.Buffs.Items(i).EndTime; // записываем в результат время до окончания бафа break; end; end; end; procedure BuffAltB(); var i: integer; begin for i:= Low(AltB) to High(AltB) do if Engine.BypassToServer(AltB[i]) then delay(555); end; function HaveAgroMobs(): boolean; // функция проверяет, висят ли на нас агромобы var i: integer; begin result:= false; for i:= 0 to NpcList.Count-1 do begin if (IsAgr(NpcList(i))) then begin result:= true; break; end; end; end; function IsAgr(Mob: TL2Npc): boolean; begin result:= (Mob.AtkOID = User.OID) and (not Mob.Dead); end; begin Script.NewThread(@AltB_Rebuff_Thread); // тут может быть дополнительный код если что Delay(-1); end.
  13. + Added/Enabled - Removed/Disabled * Fixed/Edited * Reduced the minimum required players to start Olympiad matches back to 6 * Fixed XP loss multiplier formula (ty @Myli) * Fixed Tutorial giving incorrect instructions and shots to Orcs (ty @nixelent) * Continue Dragon Valley spawn zone improvements * Removed low-value rewards from the L2Day Letters Event (ty @all)
  14. Hello, It seems like the Tanta Lizardman quest "Figuring it Out!" asking requiring to farm "Vial of Tanta Blood" on Lizardmans dont give the right rewards. It only gives leather and jewels rec/parts. Happened on more than 30 tries with STH1 on Kain at around 14:30 GMT+1 (Paris Time). It is meant to give any kind of part/recipes, not only leather and jewels. Thanks !
  15. Version 1.0.0

    24 downloads

    FIRST. I just want to be VERY upfront that I received this interface from someone else, and while I and a few others, have tested it (for 2 months now) I can't promise anything but wanted to make it available. First impressions so far are pretty good. That said... 1. Windows Defender detected a virus in the following file. I DID NOT install that file and the interface seems to work fine without it. You might want to vet the file prior to use. More than likely it's a false positive but If there is a virus here, PLEASE LET ME KNOW ASAP so I can remove this post. To be clear, I am NOT trying to spread a virus here. Thus, I'm being upfront about this. 2. The memory cleaner is at the bottom of the client window Save your thanks to Jukon for sharing to me, and thus, (after asking) the rest of the L2Toggle Community!
  16. Arthose

    L2Project

    Join the L2Toggle Discord, check the 'pinned messages' in the #L2Project section for the IP/Port info
  17. Dorian

    L2Project

    hi everyone. i hard tryed but nothing work for me 20:28:21: Connecting to login server at 45.235.99.142:2106 20:28:21: Connected to Login server. 20:28:22: Server protocol version 0x21C6 20:28:22: Successfully logged in. 20:28:22: Connecting to game server at 45.235.99.142:7777 20:28:22: Closing connection to login server 20:28:22: Disconnected 20:28:22: Unexpected Logout l2project highfive v2.4.2.0
  18. Many of us are waiting on the next server launch which happens in 12 hours from now. Ask in game in !Shout (Global) what is a free castle.
  19. Yes. I haven't fixed the issue yet. Meanwhile, please contact me in PM here or on Discord.
  20. this issue is still ongoing. wanted to reset my password for the master acc and it's not working, just redirects to blank screen. Tried diff browsers just in case, same issue.
  21. Guys, seems there not much alive players Which castle I can (and which I shouldn't) take next siege?
  22. That's because you reused a password that was already leaked by someone else.
  23. Eek, First hearing about that. I'd change your password (And any other sites that you use the same email/password combo for!)
  24. When I logged into my account on the forum, I received a notification from the password manager in Google Chrome about a data leak and that my password was disclosed?
  25. after reading update section on forum found interesting changes(which I wish to know from day one): - l2day event conbinations only worth to play - LineageIi and LIIToggle (they has chance for epic jewels) - safe enchant for all gear is +4 - fishing contest give you small FA reward - there not one auction, but 3 different in rune, aden, giran in different days (not that I have billions to buy anything...yet) - increased mob spawn and rate some changes probably not related to erica (like craftbook seems still default size), but still I'm surprised by amout of work done for server, seems game much better and stable than was at start
  26. Our next easy-botting project, Kain, is right around the corner! It launches this Saturday, April 26th at 9:00 ET (UTC -4)! Kain is another iteration on the Lineage 2 Bot-Allowed concept - a low rate progression server packed with QoL features! There is almost no GM Shop, just good old drops, spoils, and crafts! Alt+B (in-game community board) has nearly all buffs (excluding Prophesy-class buffs and more). You still have time until April 25th to experience it for yourself on the Kain Open Beta Test server! If you haven’t yet, check out the Features and join our Discord to catch up on the latest drama. See you very soon!
  27. Hello. Thank you for providing so much information. I believe you were hitting the crit damage multiplier limit. Adjustments were deployed for testing to Kain PTS.
  28. luxor shop have low/mid A weapons, but missing these 2 low A weapons: Infernal Master, Dasparion Staff its bug or feature?
  1. Load more activity
×
×
  • Create New...