Jump to content

Recommended Posts

Posted

Hey guys whats up, I've been working for months at this project and this is a beta release of PacketX

 

 

Features:

Patched the lineage2 encrypt/decrypt, no encrypted traffic going to my PacketX

Plugin Support (There are going to be alot of functions so u can have some fun or make a bot or whatever u like to do ingame)

Modify incoming packets from the server using breakpoints

Fixed the Player/Npc information

Set a breakpoint at the game or server side

Removed the message at login if u want to breakpoint the Key Packet (the message was useless anyways)

No encrypted traffic is going to PacketX it can be directly being read

Fixed some game errors that PacketX caused

Realtime Server/Game key updates

Custom commands starts with '??', Example how to use a command: ??say test

Plugins are having ther own logs

 

It's able to decrypt the polymorphism encryption

PacketX can listen at any port... as default it's 555

It's able to bypass some tricks people use to get rid of those people who are using L2Phx

Bypass the login/game server ports, PacketX will detect automatically if your ingame or just about to login

Debug the packets

Breakpoints - This is 1 of the most powerful features of PacketX, It's able to modify any packet before a packet has been send to the game server or lineage2 client

So we are able to change anything in the game, and modifying whats in our path

When a breakpoint is triggered your able to modify any data what was about to send/receive

Using the breakpoints could be really fun to play with because any data that was about to send to the server/client

We are able to catch it before it was even send/received

Log players - Your able to get the Object id, name, title, x, y, z, Heading, verhicle Id and much more

Log Npc's - Your able to get the Object Id, Npc Id, Name, Title, X, Y, Z, Heading and much more

Decrypt the packets at native mode - This will decrypt the packets in C++ instead of using the .net framework, It's much faster

Realtime server/client debugging - Your able to see everything what is happening

realtime encryption/decryption log

Redirect the connection of lineage2

Supports multiple clients

Inject packets to the Game or Server, Your able to sent any data to the game/server, you can enable/disable the encryption and header size (Also comes with a auto packet sender)

Make your own plugins in the .NET Framework for PacketX for your own needs what to do ingame

Works at Lineage2 Official servers (L2Off), L2J

and much more...

 

This version of PacketX is very stable and your able to packet flood at 0msec

 

It also comes with:

L2Crypt.dll - Native Encrypt/Decrypt

WinsockRedirect.dll - Redirects the connection to the proxy server for packet hacking

xBot.dll - A simple plugin I made which can do some funny stuff :)

 

 

xBot source code:

using System;
using System.Collections.Generic;
using System.Text;
using L2PacketX.src.Lineage2.Packets;
using L2PacketX.src.Lineage2;

namespace xBot
{
    public class xBot : L2PacketX.src.PluginSystem.PacketXPlugin
    {
        Random rnd = new Random();

        public override string PluginName
        {
            get
            {
                return "xBot";
            }
        }

        public override void EntryPoint()
        {
            AddLog("xBot Plugin is loaded!", true);
        }

        public override void onEnterWorld(L2PacketX.src.ConnectedClient client)
        {
            AddLog("Entering world", true);
        }

        public override void onLogout(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
            L2Say say = new L2Say();
            say.Message = "Bye bye world...";
            Say(say, client, TargetHost.Server);
            AddLog("Logging out", true);
        }

        public override void onValidatePosition(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
            AddLog("Validating Position", true);
        }

        public override void onPacketXCommand(L2PacketX.src.ConnectedClient client, string cmd, PlayerInfo player)
        {
            AddLog("Executing command: " + cmd, true);

            if (cmd.StartsWith("say "))
            {
                L2Say say = new L2Say();
                say.Message = cmd.Substring(4);
                Say(say, client, TargetHost.Server);
            }
            else if (cmd.StartsWith("rndwalk"))
            {
                L2Position pos = new L2Position();
                pos.TargetX = (client.playerInfo.X + rnd.Next(-100, 100));
                pos.TargetY = (client.playerInfo.Y + rnd.Next(-100, 100));
                pos.TargetZ = client.playerInfo.Z;
                pos.CurX = client.playerInfo.X;
                pos.CurY = client.playerInfo.Y;
                pos.CurZ = client.playerInfo.Z;
                MoveToPosition(pos, client, TargetHost.Server);
            }
            else if (cmd.StartsWith("kill_all"))
            {
                for (int i = 0; i < client.Npcs.Count; i++)
                {
                    L2Die die = new L2Die();
                    die.ObjectId = client.Npcs.Values[i].ObjectId;
                    this.Die(die, client);
                }
                for (int i = 0; i < client.Players.Count; i++)
                {
                    if (client.playerInfo.ObjectId == client.Players.Values[i].ObjectId)
                        continue; //don't kill ourself

                    L2Die die = new L2Die();
                    die.ObjectId = client.Players.Values[i].ObjectId;
                    this.Die(die, client);
                }
            }
            else if (cmd.StartsWith("clean"))
            {
                for (int i = 0; i < client.Npcs.Count; i++)
                {
                    this.DeleteObject(client.Npcs.Values[i].ObjectId, client);
                }
                for (int i = 0; i < client.Players.Count; i++)
                {
                    if (client.playerInfo.ObjectId == client.Players.Values[i].ObjectId)
                        continue; //don't kill ourself
                    this.DeleteObject(client.Players.Values[i].ObjectId, client);
                }
            }
            else if (cmd.StartsWith("lvlup"))
            {
                L2SocialAction action = new L2SocialAction();
                action.ActionId = (int)SocialActions.Hello;
                action.ObjectId = player.ObjectId;
                SocialAction(action, client, TargetHost.Server);
            }
            else if (cmd.StartsWith("injectgame "))
            {
                List<Byte> bytes = new List<Byte>();
                string byteStr = cmd.Substring(11);
                for (int i = 0; i < byteStr.Length / 3; i++)
                    bytes.Add(Byte.Parse(byteStr[i * 3].ToString() + byteStr[(i * 3) + 1].ToString(), System.Globalization.NumberStyles.HexNumber));
                InjectPayload(bytes.ToArray(), client, TargetHost.Game, true);
            }
        }

        public override void onRequestAttack(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
            AddLog("Requestion to attack", true);
        }

        public override void onRequestStartPledgeWar(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestReplyStartPledgeWar(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestStopPledgeWar(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestReplyStopPledgeWar(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestSurrenderPledgeWar(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestReplySurrenderPledgeWar(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestUnEquipItem(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestTrade(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onAddTradeItem(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onTradeDone(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestLinkHtml(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
            AddLog("Requesting html", true);
        }

        public override void onRequestBBSwrite(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestJoinPledge(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestAnswerJoinPledge(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestWithdrawalPledge(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestOustPledgeMember(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestGetItemFromPet(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestAllianceInformation(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestCrystallizeItem(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestPrivateStoreManageSell(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onSetPrivateStoreListSell(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestSellItem(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestMagicSkillList(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onAppearing(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
            AddLog("Appearing", true);
        }

        public override void onSendWareHouseDepositList(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onSendWareHouseWithDrawList(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestShortCutRegister(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestShortCutDelete(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestBuyItem(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestDismissPledge(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestJoinParty(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestAnswerJoinParty(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestWithDrawalParty(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestOustPartyMember(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onRequestDismissParty(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onCannotMoveAnymore(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
            AddLog("Cannot move anymore", true);
        }

        public override void onRequesTargetCancel(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
            AddLog("Cancelling target", true);
        }

        public override void onClanSetTitle(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onProtocolVersion(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
            AddLog("Sending protocol version", true);
        }

        public override void onMovingToPosition(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
            AddLog("Moving to position", true);
        }

        public override void onDismisspartyroom(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onCommunityBoard(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
            AddLog("Opening community board", true);
        }

        public override void onCharacterSelect(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
            AddLog("Selecting character", true);
        }

        public override void onNewCharacter(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
            AddLog("Creating character", true);
        }

        public override void onInventory(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
            AddLog("Opening inventory", true);
        }

        public override void onSelectTarget(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
            AddLog("Selecting target", true);
        }

        public override void onRequestDropItem(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
            AddLog("Dropping item", true);
        }

        public override void onRequestUseItem(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onBypassHandler(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onAuthLogin(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
            AddLog("Logging in", true);
        }

        public override void onRequestUseSkill(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }

        public override void onSay(L2PacketX.src.ConnectedClient client, PlayerInfo player)
        {
        }
    }
}

 

An old video of PacketX but it basicly shows what it can do

PacketX preview

 

capturezr.png

captureoj.png

capture2po.png

width=1024 height=644http://img638.imageshack.us/img638/5770/injectpacket.png[/img]

aaaaarf.png

 

Download: http://www.multiupload.com/81JWSYZLLF

Credits goes to DragonHunter

Project has been coded in C++/C#

 

How to use:

Start L2PacketX.exe

Go to the Server tab and press 'Listen Proxy'

Now press at the button '...' select the l2.exe

Press 'Start & Inject' the game should start now

Login and have fun packet hacking :)

 

Have fun and comment ;)

 

Getting a error when pressing 'Inject' or 'Start & Inject' ? this is how to fix it!

1. Download the msvcr100d.dll from http://www.dll-files.com/pop.php?dll=msvcr100d

2. Drag/Drop the file to: C:WindowsSystem

3. Try L2PacketX again ;)

Posted

it's something like hlapex but then more advanced

does it work on interlude server l2J ?

also can i summon some items ? if yes how

edit : when i inject and start i get an error  (l2crypt.dll not found)

Posted

does it work on interlude server l2J ?

also can i summon some items ? if yes how

edit : when i inject and start i get an error  (l2crypt.dll not found)

are you sure ur having the l2crypt.dll in the same directory as the l2packetx.exe ?

Posted

are you sure ur having the l2crypt.dll in the same directory as the l2packetx.exe ?

ofc i'll take a screen and send it to you asap

done ,http://imageshack.us/photo/my-images/802/unledtt.png/

 

Posted

ok I know why it's giving the error, .Net Framework is giving a error that hes not able to find L2Crypt.dll but what he really means is that ur missing a .dll in ur windows

 

The Fix:

1. Download the msvcr100d.dll from http://www.dll-files.com/pop.php?dll=msvcr100d

2. Drag/Drop the file to: C:\\Windows\\System

3. Try L2PacketX again ;)

Guest
This topic is now closed to further replies.



  • Posts

    • Yes I know that sounds hilarious, but I am looking for 1-2 passionate people that are down to team up on a project I wanted to "revive". We had a server up and running in 2023 and closed the same year due to the team splitting up for personal differences. However, thought of bringing it back.   What we have (In terms of infrastructure): - Website is up and running - Launcher is done - Dedicated server is up and running - Control Panel (Web) is in development, almost finished. We'll use my own one (https://nimeracp.com/)   What expansion did we pick? Well our project was based on Interlude, but we could expand anytime later with alternative servers/chronicles.   Who are we? Basically it's me and @protoftw at the moment. I've been dealing with the website + launcher and maybe java development (For now), proto with datapack/textures/htmls/npcs/zones etc.   What we're looking for: Just one or two people that love what they do and got the required expertise/skills to be a part of this. Whatever you're into, if you just want to be GM, Event GM, help with development or whatever, we look for any kind of addition to the team.   Reach out by adding me on discord. ID: splicho
    • General Trackers :   IPTorrents invite IPTorrents account 1 tb TorrentLeech invite Torrentleech account 1 tb buffer  InTheShaDow ( ITS ) account Acid-lounge invite Torrentday invite Crnaberza account Abn.Lol account Limit-of-eden account Norbits account Xspeeds account Xspeeds invite Bemaniso invite Wigornot account Bithumen invite Filelist account Funfile invite AvistaZ invite Potuk.net invite ResurrectThe.Net invite GrabThe.Info invite Greek-Team invite LinkoManija invite Fano.in account tracker.czech-server.com Speed.cd invite Arab-torrents.net account Arabscene.me account Scenetime account 4thd.xyz invite Btarg.com.ar account Dedbit invite Estone.cc account Speedapp invite Finvip invite Fluxzone account GigaTorrents account Gimmepeers account Haidan.video invite Mojblink account Mycarpathians invite Newinsane.info account Oscarworld.xyz account Peers.FM invite Pt.msg.vg account Ransackedcrew account Redemption invite Scene-rush account Seedfile.io invite Teracod invite Torrent.ai account Torrentmasters invite Ttsweb invite X-files invite X-ite invite Ncore account TorrentHR account Rptorrents account BwTorrents account Superbits invite Krazyzone account Immortalseed account Tntracker invite Pt.eastgame.org account Bitturk account Rstorrent account Tracker.btnext invite Torrent-turk.de account BeiTai.PT account Pt.keepfrds account 52pt.site account Pthome account Torrentseeds account Aystorrent account Blues-brothers.biz invite Divteam account Thesceneplace invite CinemaMovies.pl account Brasiltracker account Patiodebutacas account Newheaven.nl account  Swarmazon.club invite Bc-reloaded account Crazyspirits account Silentground invite Omg.wtftrackr invite Milkie.cc invite Breathetheword invite Madsrevolution account Chilebt account Yubraca account Uniongang.tv account Frboard account Exvagos account Diablotorrent account Microbit account Carp-hunter.hu account Majomparade.eu account Theshinning.me account Youiv.info account Dragonworld-reloaded account Sharewood.tv account Partis.si account Digitalcore.club invite Fuzer.me account R3vuk.wtf invite Ztracker account 1 tb buffer 3changtrai account Best-core.info account Bitsite.us account Eliteunitedcrew invite Exitorrent.org account Tophos invite Torrent.lt account Sktorrent.eu account Oshen account Blackhattorrent account Pirata.digital account Esharenet account Ohmenarikgi.la Pirate-share account Immortuos account Kiesbits account Cliente.amigos-share.club account Broadcity invite Ilovetorzz account Torrentbytes account Polishsource account Portugas invite Shareisland account ArabaFenice account Hudbt.hust.edu.cn account Audiences account Nanyangpt account Pt.sjtu.edu.cn account Pt.zhixing.bjtu.edu.cn account Byr.pt invite Ptfiles invite Red-bits account Pt.hdpost.top account Irrenhaus.dyndns.dk (NewPropaganda) account Mnvv2.info (MaxNewVision V2) account 1ptba.com account Spidertk.top account Film-paleis account Generation-free account Aftershock-tracker account Twilightsdreams account Back-ups.me invite Sor-next.tk ( Spirit Of Revolution ) account Tfa.tf ( The Falling Angels ) account Hdmayi account S-f-p.dyndns.dk ( Share Friends Projekt ) account Unlimitz.biz account Pttime account St-tracker.eu account New-retro.eu account Zbbit account Tigers-dl.net account Jptvts.us account Lat-team account Club.hares.top account Falkonvision-team account Concen account Drugari account T.ceskeforum account Peeratiko.org account Zamunda.se account Central-torrent.eu account h-o-d.org account Torrentleech.pl account Demonoid invite Lst.gg account Fakedoor.store account LaidBackManor account Vrbsharezone.co.uk invite Torrenteros account Arenaelite account Datascene account Tracker.0day.community Tapochek.net invite Ptchina invite Lesaloon account Exyusubs account Therebels.tv account Ubits.club invite Zmpt.cc account Turktorrent.us account Dasunerwarte account Hawke.uno account Monikadesign account Fearnopeer account Alpharatio account Wukongwendao.top account Chinapyg account Azusa.wiki account Yggtorrent.top account Torrentdd account Cyanbug.net invite Hhanclub.top account Wintersakura.net account Xthor account Tctg.pm account Finelite invite Agsvpt.com account Pt.0ff.cc invite Qingwapt.com account Xingtan.one account Ptcafe.club invite Theoldschool.cc account W-o-t.pro account Coastal-crew.bounceme.net account Darkpeers.org account Pianyuan.org account Seedpool.org  account Tempelbox account   Movies Trackers :   Anthelion account Pixelhd account Cinemageddon account DVDSeed account Cinemageddon account Cinemaz account Retroflix account Classix-unlimited - invite Movie-Torrentz (m2g.link) invite Punck-tracker.net account Tmghub account Tb-asian account Cathode-ray.tube account Greatposterwall account Telly account Arabicsource.net account Upload.cx account Crabpt.vip invite Onlyencodes.cc account   HD Trackers :   Hdf.world account Torrentland.li account HdSky account Hdchina account Chdbits account Totheglory account Hdroute account Hdhome account TorrentCCF aka et8.org account 3DTorrents invite HD-Torrents account Bit-HDTV account HDME.eu invite Hdarea.co account Asiancinema.me account JoyHD invite HDSpace invite CrazyHD invite Bluebird-hd invite Htpt.cc account Hdtime invite Ourbits.club account Hd4fans account Siambit account Privatehd account Springsunday account Tjupt account Hdcity.leniter invite Ccfbits account Discfan account Pt.btschool.club account Ptsbao.club invite Hdzone.me invite Danishbytes account Zonaq.pw account Tracker.tekno3d account Arabp2p account Hd-united account Reelflix.xyz account Hdatmos.club account Anasch.cc invite Tigris-t account Nethd.org account Hd.ai invite Hitpt.com account Hdmonkey account Dragonhd.xyz account Hdclub.eu account Forum.bluraycd.com account Carpt account Hdfun.me invite Pt.hdupt invite Puntotorrent account Ultrahd account Rousi.zip account Bearbit account Hdturk.club account Asiandvdclub account Star-space.net account   Music Trackers :   Dicmusic account Music-Vid account Open.cd account LzTr account ProAudioTorrents invite Jpopsuki invite TranceTraffic invite Audionews invite Kraytracker invite Libble.me invite Losslessclub invite Indietorrents.com invite Dimeadozen account Funkytorrents invite Karaokedl account zombtracker.the-zomb account Concertos account Sugoimusic account Satclubbing.club invite Metal.iplay invite Psyreactor invite Panda.cd account Adamsfile account Freehardmusic account Tracker.hqmusic.vn accouunt Twilightzoom account 3 tb buffer Hiresmusic account Metalguru account Musictorrents.org account   E-Learning Trackers :   BitSpyder invite Brsociety account Learnbits invite Myanonamouse account Libranet account 420Project account Learnflakes account Pt.soulvoice.club account P2pelite account Aaaaarg.fail invite Ebooks-shares.org account Abtorrents account Pt.tu88.men invite   TV-Trackers :   Skipthecommericals Cryptichaven account TV-Vault invite Shazbat.TV account Myspleen account Tasmanit.es invite Tvstore.me account Tvchaosuk account Jptv.club account Tvroad.info   XXX - Porn Trackers :   FemdomCult account Pornbay account Pussytorrents account Adult-cinema-network account Bootytape account 1 Tb buffer Exoticaz account Bitporn account Kufirc account Gaytorrent.ru invite Nicept account Gay-torrents.org invite Ourgtn account Pt.hdbd.us account BitSexy account Happyfappy.org account Kamept.com account   Gaming Trackers :   Mteam.fr account BitGamer invite Retrowithin invite Gamegamept account   Cartoon/Anime/Comic Trackers :   Animeworld account Oldtoons.world account U2.dmhy account CartoonChaos invite Animetorrents account Mononoke account Totallykids.tv account Bakabt.me invite Revanime account Ansktracker account Tracker.shakaw.com.br invite Bt.mdan.org account Skyey2.com account Animetracker.cc Adbt.it.cx invite   Sports Trackers :   MMA-Tracker invite T3nnis.tv invite AcrossTheTasman account RacingForMe invite Sportscult invite Ultimatewrestlingtorrents account Worldboxingvideoarchive invite CyclingTorrents account Xtremewrestlingtorrents account Tc-boxing invite Mma-torrents account Aussierul invite Xwt-classics account Racing4everyone account Talk.tenyardtracker account Stalker.societyglitch invite Extremebits invite   Software/Apps Trackers :   Brokenstones account Appzuniverse invite Teamos.xyz account Graphics Trackers: Forum.Cgpersia account Gfxpeers account Forum.gfxdomain account   Documentary Trackers:   Forums.mvgroup account   Others   Fora.snahp.eu account Board4all.biz account Filewarez.tv account Makingoff.org/forum account Xrel.to account Undergunz.su account Corebay account Endoftheinter.net ( EOTI ) account Thismight.be invite Skull.facefromouter.space account Avxhm.se (AvaxHome) account Ssdforum account Notfake.vip account Intotheinter.net account Tildes.net invite Thetoonz account Usinavirtual account Hdclasico invite HispaShare account Valentine.wtf account Adit-hd account Forum-andr.net account Warezforums account Justanothermusic.site account Forbiddenlibrary.moe account Senturion.to account Movieparadise account Militaryzone account Dcdnet.ru account Sftdevils.net account Heavy-r.com account New-team.org account Ddl.tv account Filewarez.club account Hispamula.org account Hubwarez.tv account   NZB :   Drunkenslug account Drunkenslug invite Usenet-4all account Brothers-of-Usenet account Dognzb.cr invite Kleverig account Nzb.cat account Nzbplanet.net invite Ng4you.com account Nzbsa.co.za account Bd25.eu account NZB.to account Samuraiplace account Tabula-rasa.pw account   Prices start from 3 $ to 100 $   Payment methods: Crypto, Neteller, Webmoney, Revolut   If you want to buy something send me a pm or contact me on:   Email: morrison2102@gmail.com   Discord: LFC4LIFE#4173   Telegram: https://t.me/LFC4LIFE4173   Skype: morrison2102@hotmail.com
    • hook kernel32 createfilew. example interlude client try load these dat files until login screen. CreateFileW("WarningNotice-e.dat") CreateFileW("EULA-e.dat") CreateFileW("Chargrp.dat") CreateFileW("Hairgrp.dat") CreateFileW("Helmetgrp.dat") CreateFileW("HairAccessarygrp.dat") CreateFileW("EtcItemgrp.dat") CreateFileW("Armorgrp.dat") CreateFileW("Weapongrp.dat") CreateFileW("ItemName-e.dat") CreateFileW("Npcgrp.dat") CreateFileW("NpcName-e.dat") CreateFileW("Skillgrp.dat") CreateFileW("SkillName-e.dat") CreateFileW("ActionName-e.dat") CreateFileW("QuestName-e.dat") CreateFileW("SystemMsg-e.dat") CreateFileW("ServerName-e.dat") CreateFileW("IDCName-e.dat") CreateFileW("Creditgrp-e.dat") CreateFileW("SysString-e.dat") CreateFileW("ClassInfo-e.dat") CreateFileW("Recipe-c.dat") CreateFileW("Hennagrp-e.dat") CreateFileW("SkillSoundgrp.dat") CreateFileW("CastleName-e.dat") CreateFileW("SymbolName-e.dat") CreateFileW("EnterEventgrp.dat") CreateFileW("CommandName-e.dat") CreateFileW("Obscene-e.dat") CreateFileW("MusicInfo.dat") CreateFileW("MobSkillAnimgrp.dat") CreateFileW("StaticObject-e.dat") CreateFileW("ZoneName-e.dat") CreateFileW("Logongrp.dat") CreateFileW("Hairaccessorylocgrp.dat") CreateFileW("RaidData-e.dat") CreateFileW("HuntingZone-e.dat") CreateFileW("GameTip-e.dat") CreateFileW("optiondata_client-e.dat") CreateFileW("variationeffectgrp-e.dat")  
    • For Premium Pack you need to pay 1000€   Yikes lol
  • 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