Jump to content

Recommended Posts

Posted (edited)

I think I've fixed it  :) https://bitbucket.org/l2shrine/extender-public/commits/b52a4a15ebcab4567312b262f9518d42f796691f

 

EDIT: I've fixed last second of skill reuse time https://bitbucket.org/l2shrine/extender-public/commits/fc75623fc1c9a85d7d183f53098d8a4e99e1f53d

 

So what next?  :)

Edited by eressea
Posted

Checked over a few of my exts to see if there's any other bugs and came across 2 more, exploits more than bugs really as both require l2phx or the like (not sure if you've fixed these yet or not didn't check)

 

AppearingPacket sent before EnterWorldPacket (causes all kinds of havoc including a few dupes)

MultisellChoosePacket doesn't check whether you were ever sent the multisell id which you're trying to buy from, so you can buy from multisells which aren't in any npcs (debug/test multisells are the usual target) as well as quest multisells which require quests to access

Posted (edited)

Checked over a few of my exts to see if there's any other bugs and came across 2 more, exploits more than bugs really as both require l2phx or the like (not sure if you've fixed these yet or not didn't check)

 

AppearingPacket sent before EnterWorldPacket (causes all kinds of havoc including a few dupes)

MultisellChoosePacket doesn't check whether you were ever sent the multisell id which you're trying to buy from, so you can buy from multisells which aren't in any npcs (debug/test multisells are the usual target) as well as quest multisells which require quests to access

 

Thanks for info, I've fixed both already :)

So are you sure there is no other dupe/exploit/hack/server crashing packet? For example if client sends enchantType > 3, server crashes (already fixed this one, but I'm not sure whether there isn't something similar somewhere).

 

There was for example skill enchant exploit (race condition), when you drop book and immediatelly send RequestExEnchantSkill (via l2ph), it sometimes proceeds with enchant and still keeps the book on the ground so you can pick it back. So I've added some delays (for example you can't enchant skill 2 seconds after you drop item to ground - nothing that would affect normal playing but stops players from exploiting this). It's not perfect (2 second lag of server and you can still use it) but I still don't know how to fix it better.

 

Someone told me about some item dupe involving sin eater, someone told me about some fishing exploit - do you have any info on these?

 

Thanks a lot!

Edited by eressea
Posted

I tried to fish exploit with mac, no luck at all.

 

It was way too unreliable (we didnt manage it once)

 

I dont remember the steps well, but one would spam the fishing skill while the other drop/pick items to try to dupe or something close to it (only sure about the fishing skill part). Even setting the delay to 0 didnt make it happen.

Posted (edited)

Thanks for info, I've fixed both already :)

So are you sure there is no other dupe/exploit/hack/server crashing packet? For example if client sends enchantType > 3, server crashes (already fixed this one, but I'm not sure whether there isn't something similar somewhere).

 

There was for example skill enchant exploit (race condition), when you drop book and immediatelly send RequestExEnchantSkill (via l2ph), it sometimes proceeds with enchant and still keeps the book on the ground so you can pick it back. So I've added some delays (for example you can't enchant skill 2 seconds after you drop item to ground - nothing that would affect normal playing but stops players from exploiting this). It's not perfect (2 second lag of server and you can still use it) but I still don't know how to fix it better.

 

Someone told me about some item dupe involving sin eater, someone told me about some fishing exploit - do you have any info on these?

 

Thanks a lot!

Don't know anything about those but pretty much any npc interaction is one giant race condition because the AI relies on the inventory being valid which relies on the cached returning in a timely manner, but if you induce server lag and spam pretty much any npc function which does OwnItemCount-AddItem-DeleteItem the AI will think the item hasn't been deleted until the cached returns saying it has so you can get repeat rewards from an npc this way, there's a few l2server systems which are vulnerable to this issue also and the easiest solution is to prevent any methods of inducing server lag by players, the main one is packet delay filtering as spamming use/drop/delete/anything with items will hang the server pretty hard and make those kinda dupes as simple as spam clicking an html link

 

A better fix for RequestExEnchantSkill dupe would be to use a cached function to delete the book first and do the actual enchant on the cached reply packet once it's 100% known that the book is deleted

Edited by Anarchy
Posted

A better fix for RequestExEnchantSkill dupe would be to use a cached function to delete the book first and do the actual enchant on the cached reply packet once it's 100% known that the book is deleted

 

I'll have a look at it, thanks again! :)

Posted

with fishing it was some kind of trade (or drop) with -1 (or +1) count value (of bait i think) while guy was fishing (?), some kind of overflow i guess

there was youtube video with proof of concept and they hot fixed it on rpg, but can't really remember anything more

 

sin eater had something to do with pet inventory, but also don't remember more (it was discovered way later than GF leak)

Posted (edited)

Yep, overflow flooding, thanks! Tho, even setting the fishing skill to 0 delay didnt make it happen when testing.

 

Sin Eater was related to enchanting http://www.elitepvpers.com/forum/lin2-exploits-hacks-bots-tools-macros/455783-l2-enchant-bug-gracia-final.html

Edited by ericvini
Posted (edited)

Yep, overflow flooding, thanks! Tho, even setting the fishing skill to 0 delay didnt make it happen when testing.

 

Sin Eater was related to enchanting http://www.elitepvpers.com/forum/lin2-exploits-hacks-bots-tools-macros/455783-l2-enchant-bug-gracia-final.html

 

Can't reproduce / find anything...

 

Btw I've added autoloot system (needs testing!) https://bitbucket.org/l2shrine/extender-public/commits/487de8a1a97963156009f20f951f1a3cc48175bc

 

EDIT: Autoloot seems working fine for solo player. When in party, it doesn't work at all, I'll have to fix it

Edited by eressea
Posted

Keep up the good job eressea you are making progress. I wish I could help you aswell but i'm not good at coding :(

Posted (edited)

Keep up the good job eressea you are making progress. I wish I could help you aswell but i'm not good at coding :(

 

Thanks! You can help by testing it and/or giving ideas what to fix/change/add next... :)

Edited by eressea
Posted

well first should come the basic... meaning fixing any bugs and exploits...  offline shop would be a plus... aswell :D I will install gracia this weekend and try and help you :)

Posted

well first should come the basic... meaning fixing any bugs and exploits...  offline shop would be a plus... aswell :D I will install gracia this weekend and try and help you :)

 

All well-known exploits should be fixed. Offline shop seems working fine :) Try and let me know :)

 

 

NPC.exe no open for extend, l2server is closed ? error to fix ? 

 

have remendo for protocolo vesion 83 ? testing 87? 

 

I'm not sure if I understand what you mean.

NPC doesn't connect to l2server?

I don't have client for protocol 87 but it should work somehow (I've remapped some packets etc.) but it needs testing.

Posted (edited)

All well-known exploits should be fixed. Offline shop seems working fine :) Try and let me know :)

 

 

 

I'm not sure if I understand what you mean.

NPC doesn't connect to l2server?

I don't have client for protocol 87 but it should work somehow (I've remapped some packets etc.) but it needs testing.

Do not worry with gta2, he did not know what you're talking about kk it is br, confused as I .

Edited by Jamba

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

    • ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 🔥 𝐆𝐗-𝐄𝐗𝐓 𝐒𝐕𝐍 𝐔𝐩𝐝𝐚𝐭𝐞𝐝 𝐍𝐞𝐰 𝐑𝐞𝐯𝐢𝐬𝐢𝐨𝐧 𝐀𝐯𝐚𝐢𝐥𝐚𝐛𝐥𝐞 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Hello everyone, A new 𝐆𝐗-𝐄𝐗𝐓 update is now available in the SVN. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ⚙️ 𝐔𝐩𝐝𝐚𝐭𝐞 𝐇𝐢𝐠𝐡𝐥𝐢𝐠𝐡𝐭𝐬 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 🔹 𝐓𝐫𝐚𝐢𝐭𝐒𝐲𝐬𝐭𝐞𝐦 An important fix has been made in the TraitSystem. 🔹 𝐒𝐤𝐢𝐥𝐥𝐬 New skill-related functions have been added. 🔹 𝐡𝐀𝐮𝐭𝐡𝐃 Several important changes have been made in hAuthD. 🔹 𝐀𝐧𝐭𝐢-𝐅𝐥𝐨𝐨𝐝 𝐏𝐫𝐨𝐭𝐞𝐜𝐭𝐢𝐨𝐧 A unique anti-flood system has been implemented to prevent massive connection floods. 🔹 𝐀𝐮𝐭𝐡 / 𝐆𝐚𝐦𝐞𝐒𝐞𝐫𝐯𝐞𝐫 𝐏𝐫𝐨𝐭𝐞𝐜𝐭𝐢𝐨𝐧 The GameServer port 7777 now only allows access to clients that have been correctly authenticated through Auth. 🔹 𝐂𝐨𝐦𝐩𝐥𝐞𝐭𝐞 𝐇𝟓 𝐏𝐫𝐨𝐭𝐨𝐜𝐨𝐥 𝐓𝐞𝐦𝐩𝐥𝐚𝐭𝐞 A complete H5 protocol template has been added. This is a very useful addition because the full H5 protocol can be uploaded to an AI together with, for example, any L2J pack from any chronicle. With this, it becomes much easier and faster to convert, adapt, and make different Lineage II protocols compatible. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ There are also several additional source code changes that can be reviewed by comparing this revision with the previous one. Thank you to everyone who continues to trust 𝐆𝐗-𝐄𝐗𝐓.   Best regards, 𝐆𝐮𝐲𝐭𝐢𝐬
    • Selling a heavily customized Lineage II Interlude C++ extender project, built for classic Interlude private server development. This is not a simple pack with a few edits. The project includes many custom systems, PvP features, event managers, security modules, HTML boards, configuration files, and stability/exploit-related improvements. The source is written in old-style C++ / pre-C++11 style, suitable for older Visual Studio extender environments. Project Overview Chronicle: Interlude Language: C++ Type: L2Ext / extender source project Style: Pre-C++11 compatible Focus: PvP, clan content, automation, protection, HTML systems, configurable gameplay Included: Source files, configs, HTML templates, custom managers, event systems, utility systems, and fixes This project is ideal for someone who wants to build a custom Interlude server with more unique systems than a standard pack. Main Custom Systems Included Newspaper System A custom in-game HTML newspaper / server chronicle system. Features: HTML-based newspaper interface Compact 260px layout for Interlude client windows No database required Rolling text-file storage Auto-limits old news entries Boss kill news Castle siege news Hero news PvP milestone news Enchant milestone news Bounty-related news Uses proper client/display boss names Excludes unwanted/custom bosses such as minions Configurable news limit and page size This makes the server feel alive by showing important server events in a newspaper-style board. Combat Contribution / DPS Meter System Advanced damage and contribution tracking system. Features: DPS meter Damage tracking by player Damage tracking by skill Skill icon support Compact HTML display Optional auto-refresh Raid boss tracking Grand boss tracking Clan dungeon tracking Clan Civil War tracking Manual session tracking Contribution tracking for PvE/PvP situations Also includes support-class contribution logic, making healers and support players more valuable. Support PvP Count System A custom system that can reward support classes for helping in real PvP. Features: Healers/support classes can receive PvP credit Configurable support class list Heal contribution checks Debuff contribution checks Minimum support score Distance check Alive support requirement Same victim reuse protection Max support credits per kill Same IP / HWID / clan / ally protections This is very useful for bishops, EE, SE, OL, WC, and other support classes. Clan Civil War Event A custom clan-vs-clan controlled PvP event. Features: Clan registration Leader start option Min/max player settings Registration phase Preparation phase Fight phase Finish phase Respawn support Weekly cooldown Arena empty check Optional blocked items Team visuals / client team types Optional aura skills Tournament-style buff support Winner reward Loser reward Draw reward Top killer reward Anti-AFK participation requirement Safer HTML/bypass handling patches included Designed for controlled clan PvP outside normal siege content. Clan Dungeon Raid System Custom clan PvE dungeon/raid system. Features: Clan-only dungeon registration Optional clan leader requirement Only clan members option Min/max players Multiple dungeon rooms Boss spawn configuration Boss spawn delay Event time limit Fail if all dead option Revive on exit Restore on enter Kick outsiders option Weekly cooldown Success reward Fail reward Per-boss reward configuration Server announcements for start/success/fail Good for giving clans weekly PvE objectives. Bounty Hunter System Custom PvP bounty/streak system. Features: Tournament Tournament Rank Auto Simon Says (can be started with GM command too) Auto Russian Roullete ( can be started with GM command too) Player bounty tracking Kill streak logic Bounty claim rewards Configurable reward item Base reward and scaling reward Minimum level Minimum streak PK inclusion option Battle zone inclusion option Top bounty ranking Announce streaks Announce bounty claims Anti-feed protections include: Same party block Same clan block Same alliance block Same IP block Same HWID block Repeat victim window Kill reuse protection Great for making open-world PvP more active. Contract Board System Custom HTML-based player contract board. Features: Players can create kill contracts File-backed storage No heavy DB dependency for the board itself Configurable reward item Open contract limit Contract expiration Refund percentage on cancel/expire My contracts page Online target listing Contract info page Anti-abuse protections include: IP check HWID check Same clan block Same alliance block Same party block Repeat kill cooldown Level difference checks Olympiad/event/town restrictions A unique PvP board system that gives players extra reasons to hunt each other. AutoFarm System Custom in-game autofarm module. Features: HTML menu Attack skill setup Chance skill setup Self skill setup Buff skill setup Radius configuration HP/MP stop conditions Session time limit Consumable cost option Peace zone restriction Boss restriction Z-range search Mage/range handling Geo checking Target blacklist Stuck recovery Temporarily blacklists unreachable mobs Includes a geodata/stuck recovery patch to prevent the autofarm from looping forever on impossible targets. Smart Captcha / Anti-Bot Systems Includes anti-bot and captcha-related systems. Features: Captcha module Smart visual captcha logic Icon-group captcha support Trap token protection Bypass validation HWID fail counters Two-step captcha flow AntiBot module Active Anticheat module Client extension security integration Useful for reducing basic bot abuse. Client Security / HWID / Box Limit Client and account protection systems are included. Features: CliExt version check Outdated client HTML MD5 checksum option HWID ban support HWID unban support Account lock by HWID Character lock by HWID Allowed HWID list Box limit by hardware ID Optional autoban on illegal app detection Character PIN system Character lock system Good base for servers that want stricter client/account control. Olympiad Improvements Custom Olympiad configuration and protections. Features: Winner reward Loser reward Fixed fight point option Hero chat delay Relogin fix Overweight fix Forbidden items Forbidden item grades Max weapon enchant check Max armor enchant check HWID check option Custom Olympiad schedule windows Stop action on fight start Class/free entry control Same-opponent anti-feed logic Auto-tie logic after repeated same opponent matches Cooldown-style protection for repeated feeding attempts Good for reducing Olympiad feeding and abuse. Raid Boss Systems Includes multiple raid boss utilities. Features: Raid boss status board Alive/dead coloring Refresh timeout Static respawn boss support Boss respawn announcements Boss HP announcement system Predicted incoming-hit HP threshold check Handles cases where boss jumps from above threshold directly to dead Raid boss include option Grand boss include option Excluded NPC list Additional custom boss ID support Personal boss notify support through config/sample mini-event files Useful for both PvE players and server activity. PvP / Ranking / Status Systems Included PvP-related systems: PvP announce system Kill streak announcements Daily PvP system Kill/death stat system PK/PvP status board Clan PvP status board Clan reputation rank Top PvP statue PvP title/name customization options Siege stat/report system Tournament system TvT system Faction/Fraction systems Bounty system Contract board system This gives the server several PvP progression and visibility systems. Economy / Donation / Utility Systems The project includes many server economy and service systems: Auction system Donate system Donate augment system Vote reward system L2Network vote reward system VIP system Item delivery system Gold bar exchange Offline shop Offline shop restore Offline buffer Offline socket DB support Private store restrictions Auto loot Drop list viewer Drop viewer Multisell stat support Item reuse manager Skill reuse manager Custom enchant system Stackable enchant scroll option Custom enchant scroll rates Augmentation configuration Blocked augmentation items/glows/options Character / Gameplay Systems Other gameplay systems included: Rebirth system SubStack system Class manager Auto learn AIO system Wedding system Visual armor Visual weapon Hair accessory / 2-slot hair systems Player customizer Armor penalty Grade penalty Death penalty Spawn protection Scheme buffer Infinity shots/arrows Champion NPC Mining system Fortune Cards Fortune Workshop Reputation NPC talk system Cursed weapon systems Era system Spirit system Hero reward system Party/duel/MPCC related extensions Recent Fixes / Improvements Included The source includes several fixes and patch files related to stability, HTML safety, event handling, boss systems, and gameplay issues. Examples: L2Exalta Newspaper added Newspaper enchant hook fixed for stackable scroll enchant path Newspaper boss names fixed to use client/display names Newspaper boss filter added for unwanted custom bosses Newspaper HTML resized for 260px client width DPS meter visual improvements DPS meter skill icon support DPS meter auto-refresh logic Combat contribution fixes Support PvP contribution checks Civil War safe HTML handling Civil War visual/buff patches Civil War preparation/tournament buff fixes Civil War prize patch Clan Dungeon Raid patch AutoFarm geodata/stuck recovery patch Boss HP announce threshold/predamage fix Boss client name packet fix Reputation NPC talk safe hook Removed unsafe generic HTML-send NPC reputation hook style Safer private NPC chat handling HTML cache/filter systems HTML filename/path validation style protections Socket limiter options Remote statistic packet block/safe list options Anti-DDoS module Log control system Call stack/error logging support Stat limiter options Item/skill reuse persistence support Inventory validation options Acquired skill validation options Stackable item validation options Offline shop restore support       I will not say the project is bug free or whatever but if you support me i will support you! You buy licence, i fix and add your requests Source will not be sold And monthly is 120 euro as a subscription That includes 24/7 support ( of course respect resting hours or health issues) In the price the setup is included. After payment you can delay the next monthly payment for 5-10 days, then your server becomes unaccessible! Soon i will provide a public discord! Right now i can say its the lightest extender and crash free!  My files arent the best as many claim for their files , but whatever you find i am capable of fixing it!   In case of interest!   Discord: banshee1019     
    • Lo vendes? necesito todo eso, esta super hermoso tu trabajo.
    • New discord: https://discord.gg/HttMqBBD4F
    • New discord: https://discord.gg/HttMqBBD4F
  • 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..