Jump to content

Enchant Hack work 100%


Recommended Posts

Ena Hack pou vrika katalathos ston l2 Dubai....kai to testara se para pola server

otan pas na xosis 1 S grade oplo p.x. DB agorase kai ena Pole S grade

Agorase kai 20 scrolls

Vale ta weap dld to bow kai to pole.. i oti allo thes.... S grade kai ta 2 .... diaforetika

stin bara sto f1 kai f2... kai fora to bow ....(i oti allo thes...) kai pata sto scroll kai pata grigora to bow na enchant kai me to pou patisis kateuthias pata to f2 na vali to pole KLASMATA DEPTEROLEPTOU ... PRIN AKOUSTI O  IXOS POU TO EXOSES...

dld patas na enchant to bow kai me to pou patisis na enchant alazis kateuthias oplo kai vazis to polekai tha akousti meta o ixos... kai paei 100%!!!

 

 

AMAN TO EXEI POSTARI KAPIOS POU TO VRIKE KAI AFTOS SORRY KATALATHOS TO VRIKA

 

proti foto 4 meres sto game... to weap to eftiaxa tin proti!! mesa se 10 lepta

 

Shot00042.jpg?t=1245917057

 

 

 

meta apo 1 mina mou klepsan ton pexti me +25 valakas kai antharas... kai 2 weap +25 kai ftiaxno pali 1 forgotten... se kenourgio pexti mesa se 10 lepta pali

 

 

width=1009 height=768http://i1006.photobucket.com/albums/af181/eleousiatis11/Shot00052.jpg?t=1245917513[/img]

 

 

NA ENA VIDEO OTI PERASA:)ME FOTO

http://www.youtube.com/watch?v=E5FitbTaDlE&eurl=http%3A%2F%2Fwww.youtube.com%2Fuser%2Farchonserver&feature=player_profilepage

 

 

Link to comment
Share on other sites

kai afto legete bug? opws o alos p eipe na kounas to parathiro tou augment gia na anevei to chance? i o alos na anoigokleineis to arcane power gia na anevei to chance? afta den yparxoun. apla tyxh

Link to comment
Share on other sites

kai afto legete bug? opws o alos p eipe na kounas to parathiro tou augment gia na anevei to chance? i o alos na anoigokleineis to arcane power gia na anevei to chance? afta den yparxoun. apla tyxh

re file ma  ton theo to dokimasa se para pola server l2 core l2 ancient l2 dubai l2 greek hero se ola ta ekana max!!

dokimase to! kai meta ela pes mou

Link to comment
Share on other sites

re file ma  ton theo to dokimasa se para pola server l2 core l2 ancient l2 dubai l2 greek hero se ola ta ekana max!!

dokimase to! kai meta ela pes mou

 

Nai mwre sovaroi servers, dokimase to se kana Elixir, Azure, tote 8a einai bug twra einai apla tixi :O

Link to comment
Share on other sites

Auta pou les den uparxei stamata na to isxirizese htan aplws tixi, allios ama htan etsi se ka8e server pou 8a empenes 8a evlepes enchanted gear sto max alla mpalec, "bug" enchant douleuei mono me phx so stamatiste na postarete anousia pragmata an kai se pollous L2J server einai ftiaxmeno.

Link to comment
Share on other sites

e kala kai seis re paides nomizete oti ayta dn petyxainoun k oti einai apla tyxi...einai kati san adynamies twn srvr kai leitourgoun mexri na ta fixaroun... egw symfwnw me ton yourmothrt

Link to comment
Share on other sites

Epidei, o ka8enas leei oti 8elei! paw na to dokimasw ston Dubai pou leei kai o Topic Starter. Kai 8a post kai ScreenShot!

kai nomizeis oti kai ston dubai 8a piasei? afou tous katebainei sto myalo kai to lene xwris na to kseroun... LoL einai
Link to comment
Share on other sites

kai nomizeis oti kai ston dubai 8a piasei? afou tous katebainei sto myalo kai to lene xwris na to kseroun... LoL einai

Oxi tipota allo, alla gia na sigoureutoume, giati epemene kiolas pws pianei.

Kai nai pragmati @@! To "Bug" sou den pianei itan apli tixi, re xwris pareksigisi, mipws to ekanes ta 100% scrolls? gt exei kai tetia sto GM Shop.....  ::)

Link to comment
Share on other sites

Oxi tipota allo, alla gia na sigoureutoume, giati epemene kiolas pws pianei.

Kai nai pragmati @@! To "Bug" sou den pianei itan apli tixi, re xwris pareksigisi, mipws to ekanes ta 100% scrolls? gt exei kai tetia sto GM Shop.....  ::)

oxi re si... exis ftiaxi pote 4 dragonic +25?? 1 piso apo to allo??kai sto l2 ancient 2 +35??? me rate 80% nomizo safe +7 max +35
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.



  • Posts

    • Will it work for GOD H5 Client Protocol 140??
    • 6.2K followers growth from 500K DMs campaign for Onlyfan niche 🚀 ⭐️ Instant Instagram followers growth & gain subscribers ⭐️ GO VIRAL easier with reels on IG ⭐️ Scraping & Sending in less than 24 hours For consulting contact us on telegram @igmassdm ✅
    • ANOTHER LOGO DESIGN FOR ANOTHER EPIC PROJECT 😎 Thank You for using my support 🙏    
    • In this guide we will cover how to understand and implement the packages belonging to the Lineage 2 UI. More specifically the Essence version UI. Required UTPT (Unreal Tournament Package Tool) : https://github.com/l2jsourcecode/ut-package-tool File : InterfaceClassic.U   The packages are embedded into the interface, specifically located in the InterfaceClassic.u file. Some key classes include: UIPacket.uc (defines package structure) UIProtocol.uc (defines package opcode)   The packages are split into two main types: Client to Server (prefix: C) Server to Client (prefix: S) For example, in the UIProtocol class:   const C_EX_COSTUME_LOCK = 573; // packet from client to server const S_EX_COSTUME_LOCK = 785; // packet from server to client   We’ll use this package as a case study to delve deeper. Understanding Client to Server Packets Let's examine a packet from the client with an opcode of 573. On the server side, opcodes are converted into hexadecimal values using a formula: opcode - C_MAX   where C_MAX is an opcode defined in UIProtocol. Recently, C_MAX has been set to 209. For instance: 573 - 209 = 364 364 -> hex = 16C This hexadecimal value (16C) corresponds to the opcode for the Java class. Understanding Server to Client Packets For server packets, we also use hexadecimal conversion but with a different opcode: S_MAX = 255 S_MAX is applied to packages with an opcode above 255. For values below this, simply convert the number to hex. For example: const S_EX_COSTUME_LOCK = 785; 785 - 255 = 530 530 -> hex = 212 = 0xFE:0x212 Here, 0xFE represents S_MAX. Packet Structure Finally, let’s look at the packet structure. Open UIPacket.uc and locate the C_EX_COSTUME_LOCK to examine its structure in detail.   struct _C_EX_COSTUME_LOCK { var int nCostumeId; var int nLockState; };   We observe two integer variables, representing the structure of the package transmitted to the server. By continuing our search within this file, we find the following code:   static function bool Encode_C_EX_COSTUME_LOCK(out array<byte> stream, _C_EX_COSTUME_LOCK packet) { if(!EncodeInt(stream, packet.nCostumeId)) { return false; } if(!EncodeChar(stream, packet.nLockState)) { return false; } return true; }   This function encodes the packet structure for transmission. As discussed earlier, the data types within the packet are crucial. Specifically:   EncodeInt corresponds to an integer. EncodeChar is treated as a short in Java, typically read using readC, while readD is used for EncodeInt. Having examined the client-to-server packet structure, let's now explore the structure expected by the client from the server. The process is similar. We locate _S_EX_COSTUME_LOCK within UIPacket:     struct _S_EX_COSTUME_LOCK { var byte bResult; var int nCostumeId; var int nLockState; };   Data Decryption The corresponding decryption function is:   static function bool Decode_S_EX_COSTUME_LOCK(out _S_EX_COSTUME_LOCK packet) { if(!DecodeBool(packet.bResult)) { return false; } if(!DecodeInt(packet.nCostumeId)) { return false; } if(!DecodeChar(packet.nLockState)) { return false; } return true; }   Here, the variables are decoded as follows:   bResult is decoded as a Bool. nCostumeId is decoded as an Int. nLockState is decoded as a Char.   This consistent approach to encoding and decoding ensures reliable data transmission between the client and server. Example usage :  https://imgur.com/a/zVZHVzq Credits : L2j West Coast Custom ( https://discord.gg/n2c8meMN )
  • Topics

×
×
  • Create New...