Jump to content
  • 0

[Help]Anti Captcha System


Question

Posted

Hello MXC

 

 

I am Working with L2 j Freya chronicle .....

 

 

I succesfully added this share from Mxc     http://maxcheaters.com/forum/index.php?topic=162861.0  

 

and Works perfect for me....! dfnb.png

 ( I want to protect my server good and avoid users Using L2 Net/walker etc etc ..... So that is why i trying this ) ;)

 

 

That Is why i am warned about this  ---> check it ---->  http://insane-gamers.com/showthread.php?7515-SOLVED-L2-The-Sacred-Metal-Captcha-Protection

 

 

I want to know how to make it more SECURE ...! I was player in a server and HAd the same protection (but no1 can bypass it )

 

Here is their Work .... dsfre.pngewrgfw.png

 

 

I want to make something similar.... Is this possible ? :O

 

 

Thanks in advance

 

Listening all opinions / advises ...!

Recommended Posts

  • 0
Posted

If you used integrated images from client, such as numbers 1 to 9, basically the system would be easily bypassed, as phx could sniff the name of images, then doing a script you enter it automatically.

 

The only possible way is to get the full image to be generated randomly, such as catpcha. So external to the client.

 

After the protection comes only about the captcha system itself. Use another system.

 

-----

 

General discussion :

 

What the point about capcha, it's good only to spot a "bot", so in a pvp server, it's totally useless.

 

You stay out of your computer to go shit, you're banned because you weren't at time xx to enter a popup ? Clearly, stupid system.

 

 

I know That images from client can be byssed really easy... Also This can be done with pioupiou's code because in order to work his system u must add into your sytextures folder a UTX file withthe CAPTCHA's , so any1 can open it and fine the names of the images :S ..!

 

 

That is why i want to make it like that picture...

 

To be more specific i want to Use Captha images from the core of the server like Crests ;) ...! In that way players will never know the name of the captca;) So it will never bypassed..! The problem is that i dont know how to make it ;S...! I had try it but without any result until now..!

 

 

 

As far as General discussion :

 

I Think that it is no so law for some1 who spends a lot of time to a server to farm items/ etc and some1 else boting all the night and have the same items ;) (if you understand me)

 

I dont know any other way to proteck the server from boting ....

 

 

As i said to main Post i am listening ideas/opinion's  ( I have time and desire to work)

 

 

 

Thanks for ryplies ^^

  • 0
Posted

i have a idea make pictures with 10+9 as example and let the player add answer but the picture will be not 10+9

 

he need just other names :P ^^

 

 

 

 

hmm that is not a bad idea.. ;) But and with this way i need to add the pictures into the core of the server ;) ...! So that is why i am asking help here... I will try another time to make it alone later and i will edit results....But without suport of some1 who are pro it will be really dificult for me ;) ...!

  • 0
Posted

the images in core dont work.

 

just add in client systemtextures

 

 

I want to add them like crests...! ;) ..! I play on 3-4 Server and Have CAPTCHA IMAGES without use .UTX file into sytextures folder :S

  • 0
Posted

hmm... okay need tests where server will save crest if maybe npcs use it in town.

 

so i dont know to i just use the old version of captcha.

so i try to loop if he dont enter in 30sec he will jailed and if more than 1 time he will baned.

 

 

  • 0
Posted

hmm... okay need tests where server will save crest if maybe npcs use it in town.

 

so i dont know to i just use the old version of captcha.

so i try to loop if he dont enter in 30sec he will jailed and if more than 1 time he will baned.

 

 

 

Yes I Will Check How Crests Works and i will try it ...! ;) ... I am not good Java Coder so if you fins anything .... Post it here :S ...! Thanks

  • 0
Posted

Btw, you can make more methods, not only the "CAPTCHA" one, you can make new voiced command handlers, too much of them (i know its hard :P), so the user cant see them, so he will not make a patch like this that it uses the script (.CAPTCHA LOL LOL), i mean for example make a html that needs to write ".CAPTCHA LOL LOL", one that needs to write ".123 BLA BLA ALALA BLABLABLA" etc, i think it looks good enough.

  • 0
Posted

Btw, you can make more methods, not only the "CAPTCHA" one, you can make new voiced command handlers, too much of them (i know its hard :P), so the user cant see them, so he will not make a patch like this that it uses the script (.CAPTCHA LOL LOL), i mean for example make a html that needs to write ".CAPTCHA LOL LOL", one that needs to write ".123 BLA BLA ALALA BLABLABLA" etc, i think it looks good enough.

 

 

Yeah I know this is a Good Idea... ;) But do you know if there is any way to use the captcha images not from systextures folder us UTX file ?But like crest.crest0985432 ??? ?  ...!

Guest
This topic is now closed to further replies.



  • Posts

    • A simple script which randomizes your target from shortest -> furthest so you can farm with Rush Impact on your doombringer   Edit your skill id (Default 45179): SkillList.ByID(45159, sweep)   Edit your search range (Default 900):  Script.NewThread(@SweepThread, Pointer(900));     var bSweepFurthest: boolean; // Global state variable to track which mob to get next // This procedure now alternates between finding the furthest and nearest mob. procedure SweepThread(dist: integer); var sweep: TL2Skill; mob: TL2Npc; begin while Delay(100) do begin if (Engine.Status = lsOnline) and SkillList.ByID(45159, sweep) then begin // Decide which mob to find based on the bSweepFurthest state if (bSweepFurthest) then begin mob:= GetFurthestSweepableMob(dist); // Looking for the furthest mob end else begin mob:= GetNearestSweepableMob(dist); // Looking for the nearest mob end; if (mob <> nil) then begin if Engine.SetTarget(mob) then Delay(1); Engine.UseSkill(sweep) ; // Flip the state for the next loop iteration bSweepFurthest := not bSweepFurthest; end; end; end; end; // Corrected to check for dead mobs function GetNearestSweepableMob(dist: integer): TL2Npc; var i: integer; begin Result:= nil; for i:= 0 to NpcList.Count-1 do begin if (NpcList(i).Valid) and (User.DistTo(NpcList(i)) < dist) and not (NpcList(i).Dead) then begin // <<< Corrected: Sweepable mobs are dead Result:= NpcList(i); dist:= User.DistTo(NpcList(i)); end; end; end; // Modified to accept a distance parameter and corrected to check for dead mobs function GetFurthestSweepableMob(dist: integer): TL2Npc; var i: integer; max_dist: integer; begin Result:= nil; max_dist:= 0; for i:= 0 to NpcList.Count-1 do begin if (NpcList(i).Valid) and (User.DistTo(NpcList(i)) < dist) // <<< Changed from 400 to the 'dist' parameter and not (NpcList(i).Dead) // <<< Corrected: Sweepable mobs are dead and (User.DistTo(NpcList(i)) > max_dist) then begin Result:= NpcList(i); max_dist:= User.DistTo(NpcList(i)); end; end; end; // Main execution block begin // Initialize the state to start by finding the furthest mob first bSweepFurthest := true; // Start the thread, passing 300 as the max distance for both nearest and furthest searches Script.NewThread(@SweepThread, Pointer(900)); Delay(-1); end.  
    • 🔥 O servidor que vai mudar seu conceito de Lineage 2! ⚔️ https://L2Destruction.com.br | Chronicle C4 - Scion of Destiny Um clássico com alma moderna. Eventos inéditos, mecânicas revolucionárias e um PvP/PvE intenso como você nunca viu! ✅ Rates: XP 75 / SP 65 / Adena 75 ✅ Party Level Up ✅ Anti-bot, anti-pay-to-win ✅ Comunidade ativa e suporte dedicado 🎯 Se você busca emoção de verdade, este é o servidor! 🔗 Acesse: https://L2Destruction.com.br 🛡️ Prepare-se para o combate. O seu destino começa agora. 🔥 The server that will redefine your Lineage 2 experience! ⚔️ https://L2Destruction.com.br | Chronicle C4 - Scion of Destiny A classic reborn with modern systems. Unique events, custom mechanics, and non-stop PvP/PvE action await you! ✅ Rates: XP 75 / SP 65 / Adena 75 ✅ Party Level Up ✅ No bots, no pay-to-win ✅ Active community and dedicated support 🎯 If you want a real challenge — this is your server! 🔗 Visit: https://L2Destruction.com.br 🛡️ The battle begins now. Your destiny awaits. 🔥 ¡El servidor que va a revolucionar tu experiencia en Lineage 2! ⚔️ https://L2Destruction.com.br | Chronicle C4 - Scion of Destiny Un clásico con alma moderna. Eventos únicos, mecánicas avanzadas y acción PvP/PvE constante como nunca antes. ✅ Rates: XP 75 / SP 65 / Adena 75 ✅ Party Level Up ✅ Sin bots, sin pay-to-win ✅ Comunidad activa y soporte dedicado 🎯 Si buscas una experiencia real — este es tu servidor. 🔗 Ingresa a: https://L2Destruction.com.br 🛡️ Prepárate para la guerra. Tu destino comienza ahora!  
    • Dear friends! We are pleased to present our new Telegram bot for purchasing  Telegram Stars  Convenient and easy to use The best prices Fast, cheap, and safe Support for multiple payment methods ➡ Go to the bot to purchase Telegram Stars Useful links: Telegram bot for purchasing Telegram Stars: Go Digital goods store: Go Store’s Telegram bot: Go SMM Panel: Go Contacts and support: ➡ Telegram: https://t.me/socnet_support  ➡ Telegram channel: https://t.me/accsforyou_shop  ➡ WhatsApp: https://wa.me/79051904467  ➡ WhatsApp channel: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n  ➡ Discord: socnet_support  ➡ Discord server: https://discord.gg/y9AStFFsrh  ➡ ✉ Email: solomonbog@socnet.store  Through these contacts you can also: — get consultations on wholesale purchases — establish a partnership (current partners: https://socnet.bgng.io/partners ) — become our supplier SocNet — digital goods and premium subscriptions store 
    • Dear friends! We are pleased to present our new Telegram bot for purchasing  Telegram Stars  Convenient and easy to use The best prices Fast, cheap, and safe Support for multiple payment methods ➡ Go to the bot to purchase Telegram Stars Useful links: Telegram bot for purchasing Telegram Stars: Go Digital goods store: Go Store’s Telegram bot: Go SMM Panel: Go Contacts and support: ➡ Telegram: https://t.me/socnet_support  ➡ Telegram channel: https://t.me/accsforyou_shop  ➡ WhatsApp: https://wa.me/79051904467  ➡ WhatsApp channel: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n  ➡ Discord: socnet_support  ➡ Discord server: https://discord.gg/y9AStFFsrh  ➡ ✉ Email: solomonbog@socnet.store  Through these contacts you can also: — get consultations on wholesale purchases — establish a partnership (current partners: https://socnet.bgng.io/partners ) — become our supplier SocNet — digital goods and premium subscriptions store 
    • Great product, easy to install/handle and nice guy @Splicho! Amazing work mate.
  • 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