Jump to content
  • 0

acis stuck character


Question

Posted (edited)

Hello , I have a serious problem that needs fixing but it's hard because it is a problem without any error in my gamserver console.

 

So, many times (random) when a character (tested with mage if that makes any sense) kills mobs , he gets stucked.

What that means?

He can see mobs moving and other characters. He can't write anything or do any action. Other players can see him (or kill him,etc).

The only way to unstuck is CTRL+ALT+DELETE.

 

No errors on gameserver , that's the worst.

version: 368

 

Any help please , to what can be the problem?

Edited by alcohol

Recommended Posts

  • 0
Posted
6 minutes ago, melron said:

when the player does NOT stuck, the drops when killing that mob, do they have some delay?

 

Just checked it and no it's normal , immediately loot normal. It is so strange and important as well. The bad is that I cannot test it because I don't even know when will I stuck , itslike random.

I tried a "debugging" now to see if character is movementDisabled or null , but I don't think so. I try everything , cant' come with a solution :(

  • 0
Posted (edited)

Try to open ur server in a different pc and tell me what will happen. You got a similar prob like one guy had today. Its like packet loss thing but you have to test it

Edited by melron
  • 0
Posted
1 minute ago, melron said:

Try to open ur server in a different pc and tell me what will happen. You got a similar prob like one guy had today. Its like packet loss thing but you have to test it

 

Server is hosted on VPS machine with excellent connection speed , so this is not the problem. So it is already on different computer. It was from the beginning. Packet loss yes maybe(?) but how can I test this to see wtf is going on?

  • 0
Posted

i didnt say anything related to connection speed. Can you check what i told you? just open your server from your pc . not ur vps. 

  • 0
Posted
3 minutes ago, melron said:

i didnt say anything related to connection speed. Can you check what i told you? just open your server from your pc . not ur vps. 

 

Ok i am going to do it now and I will give a feedback.

What should I see? if problem is happening (or not) in localhost?

  • 0
Posted
Just now, alcohol said:

 

Ok i am going to do it now and I will give a feedback.

What should I see? if problem is happening (or not) in localhost?

exactly

  • 0
Posted (edited)

You can try to dump ClientStats. I'm interested by your results. Do that on a saved project in order to be able to revert it.

 

You can also tweak MMO values under Config.java, search for keyword "hidden". Edit whatever based on packets count, until you find some good values.

 

### Eclipse Workspace Patch 1.0
#P aCis_gameserver
Index: java/net/sf/l2j/gameserver/network/ClientStats.java
===================================================================
--- java/net/sf/l2j/gameserver/network/ClientStats.java	(revision 1055)
+++ java/net/sf/l2j/gameserver/network/ClientStats.java	(nonexistent)
@@ -1,212 +0,0 @@
-package net.sf.l2j.gameserver.network;
-
-import net.sf.l2j.Config;
-
-public class ClientStats
-{
-	public int processedPackets = 0;
-	public int droppedPackets = 0;
-	public int unknownPackets = 0;
-	public int totalQueueSize = 0;
-	public int maxQueueSize = 0;
-	public int totalBursts = 0;
-	public int maxBurstSize = 0;
-	public int shortFloods = 0;
-	public int longFloods = 0;
-	public int totalQueueOverflows = 0;
-	public int totalUnderflowExceptions = 0;
-	
-	private final int[] _packetsInSecond;
-	private long _packetCountStartTick = 0;
-	private int _head;
-	private int _totalCount = 0;
-	
-	private int _floodsInMin = 0;
-	private long _floodStartTick = 0;
-	private int _unknownPacketsInMin = 0;
-	private long _unknownPacketStartTick = 0;
-	private int _overflowsInMin = 0;
-	private long _overflowStartTick = 0;
-	private int _underflowReadsInMin = 0;
-	private long _underflowReadStartTick = 0;
-	
-	private volatile boolean _floodDetected = false;
-	private volatile boolean _queueOverflowDetected = false;
-	
-	private final int BUFFER_SIZE;
-	
-	public ClientStats()
-	{
-		BUFFER_SIZE = Config.CLIENT_PACKET_QUEUE_MEASURE_INTERVAL;
-		_packetsInSecond = new int[BUFFER_SIZE];
-		_head = BUFFER_SIZE - 1;
-	}
-	
-	/**
-	 * @return true if incoming packet need to be dropped.
-	 */
-	protected final boolean dropPacket()
-	{
-		final boolean result = _floodDetected || _queueOverflowDetected;
-		if (result)
-			droppedPackets++;
-		return result;
-	}
-	
-	/**
-	 * @param queueSize
-	 * @return true if flood detected first and ActionFailed packet need to be sent. Later during flood returns true (and send ActionFailed) once per second.
-	 */
-	protected final boolean countPacket(int queueSize)
-	{
-		processedPackets++;
-		totalQueueSize += queueSize;
-		if (maxQueueSize < queueSize)
-			maxQueueSize = queueSize;
-		if (_queueOverflowDetected && queueSize < 2)
-			_queueOverflowDetected = false;
-		
-		return countPacket();
-	}
-	
-	/**
-	 * Counts unknown packets.
-	 * @return true if threshold is reached.
-	 */
-	protected final boolean countUnknownPacket()
-	{
-		unknownPackets++;
-		
-		final long tick = System.currentTimeMillis();
-		if (tick - _unknownPacketStartTick > 60000)
-		{
-			_unknownPacketStartTick = tick;
-			_unknownPacketsInMin = 1;
-			return false;
-		}
-		
-		_unknownPacketsInMin++;
-		return _unknownPacketsInMin > Config.CLIENT_PACKET_QUEUE_MAX_UNKNOWN_PER_MIN;
-	}
-	
-	/**
-	 * Counts burst length.
-	 * @param count - current number of processed packets in burst
-	 * @return true if execution of the queue need to be aborted.
-	 */
-	protected final boolean countBurst(int count)
-	{
-		if (count > maxBurstSize)
-			maxBurstSize = count;
-		
-		if (count < Config.CLIENT_PACKET_QUEUE_MAX_BURST_SIZE)
-			return false;
-		
-		totalBursts++;
-		return true;
-	}
-	
-	/**
-	 * Counts queue overflows.
-	 * @return true if threshold is reached.
-	 */
-	protected final boolean countQueueOverflow()
-	{
-		_queueOverflowDetected = true;
-		totalQueueOverflows++;
-		
-		final long tick = System.currentTimeMillis();
-		if (tick - _overflowStartTick > 60000)
-		{
-			_overflowStartTick = tick;
-			_overflowsInMin = 1;
-			return false;
-		}
-		
-		_overflowsInMin++;
-		return _overflowsInMin > Config.CLIENT_PACKET_QUEUE_MAX_OVERFLOWS_PER_MIN;
-	}
-	
-	/**
-	 * Counts underflow exceptions.
-	 * @return true if threshold is reached.
-	 */
-	protected final boolean countUnderflowException()
-	{
-		totalUnderflowExceptions++;
-		
-		final long tick = System.currentTimeMillis();
-		if (tick - _underflowReadStartTick > 60000)
-		{
-			_underflowReadStartTick = tick;
-			_underflowReadsInMin = 1;
-			return false;
-		}
-		
-		_underflowReadsInMin++;
-		return _underflowReadsInMin > Config.CLIENT_PACKET_QUEUE_MAX_UNDERFLOWS_PER_MIN;
-	}
-	
-	/**
-	 * @return true if maximum number of floods per minute is reached.
-	 */
-	protected final boolean countFloods()
-	{
-		return _floodsInMin > Config.CLIENT_PACKET_QUEUE_MAX_FLOODS_PER_MIN;
-	}
-	
-	private final boolean longFloodDetected()
-	{
-		return (_totalCount / BUFFER_SIZE) > Config.CLIENT_PACKET_QUEUE_MAX_AVERAGE_PACKETS_PER_SECOND;
-	}
-	
-	/**
-	 * @return true if flood detected first and ActionFailed packet need to be sent. Later during flood returns true (and send ActionFailed) once per second.
-	 */
-	private final synchronized boolean countPacket()
-	{
-		_totalCount++;
-		final long tick = System.currentTimeMillis();
-		if (tick - _packetCountStartTick > 1000)
-		{
-			_packetCountStartTick = tick;
-			
-			// clear flag if no more flooding during last seconds
-			if (_floodDetected && !longFloodDetected() && _packetsInSecond[_head] < Config.CLIENT_PACKET_QUEUE_MAX_PACKETS_PER_SECOND / 2)
-				_floodDetected = false;
-			
-			// wrap head of the buffer around the tail
-			if (_head <= 0)
-				_head = BUFFER_SIZE;
-			_head--;
-			
-			_totalCount -= _packetsInSecond[_head];
-			_packetsInSecond[_head] = 1;
-			return _floodDetected;
-		}
-		
-		final int count = ++_packetsInSecond[_head];
-		if (!_floodDetected)
-		{
-			if (count > Config.CLIENT_PACKET_QUEUE_MAX_PACKETS_PER_SECOND)
-				shortFloods++;
-			else if (longFloodDetected())
-				longFloods++;
-			else
-				return false;
-			
-			_floodDetected = true;
-			if (tick - _floodStartTick > 60000)
-			{
-				_floodStartTick = tick;
-				_floodsInMin = 1;
-			}
-			else
-				_floodsInMin++;
-			
-			return true; // Return true only in the beginning of the flood
-		}
-		
-		return false;
-	}
-}
\ No newline at end of file
Index: java/net/sf/l2j/gameserver/network/L2GameClient.java
===================================================================
--- java/net/sf/l2j/gameserver/network/L2GameClient.java	(revision 1055)
+++ java/net/sf/l2j/gameserver/network/L2GameClient.java	(working copy)
@@ -67,7 +67,6 @@
 	protected ScheduledFuture<?> _cleanupTask = null;
 	
 	public GameCrypt _crypt;
-	private final ClientStats _stats;
 	
 	private boolean _isDetached = false;
 	
@@ -80,7 +79,6 @@
 		_state = GameClientState.CONNECTED;
 		_connectionStartTime = System.currentTimeMillis();
 		_crypt = new GameCrypt();
-		_stats = new ClientStats();
 		_packetQueue = new ArrayBlockingQueue<>(Config.CLIENT_PACKET_QUEUE_SIZE);
 		
 		_autoSaveInDB = ThreadPool.scheduleAtFixedRate(new AutoSaveTask(), 300000L, 900000L);
@@ -107,11 +105,6 @@
 		}
 	}
 	
-	public ClientStats getStats()
-	{
-		return _stats;
-	}
-	
 	public long getConnectionStartTime()
 	{
 		return _connectionStartTime;
@@ -635,17 +628,7 @@
 	 */
 	public boolean dropPacket()
 	{
-		if (_isDetached) // detached clients can't receive any packets
-			return true;
-		
-		// flood protection
-		if (getStats().countPacket(_packetQueue.size()))
-		{
-			sendPacket(ActionFailed.STATIC_PACKET);
-			return true;
-		}
-		
-		return getStats().dropPacket();
+		return _isDetached;
 	}
 	
 	/**
@@ -653,12 +636,6 @@
 	 */
 	public void onBufferUnderflow()
 	{
-		if (getStats().countUnderflowException())
-		{
-			_log.severe("Client " + toString() + " - Disconnected: Too many buffer underflow exceptions.");
-			closeNow();
-			return;
-		}
 		if (_state == GameClientState.CONNECTED) // in CONNECTED state kick client immediately
 		{
 			if (Config.PACKET_HANDLER_DEBUG)
@@ -672,12 +649,6 @@
 	 */
 	public void onUnknownPacket()
 	{
-		if (getStats().countUnknownPacket())
-		{
-			_log.severe("Client " + toString() + " - Disconnected: Too many unknown packets.");
-			closeNow();
-			return;
-		}
 		if (_state == GameClientState.CONNECTED) // in CONNECTED state kick client immediately
 		{
 			if (Config.PACKET_HANDLER_DEBUG)
@@ -692,45 +663,16 @@
 	 */
 	public void execute(ReceivablePacket<L2GameClient> packet)
 	{
-		if (getStats().countFloods())
-		{
-			_log.severe("Client " + toString() + " - Disconnected, too many floods:" + getStats().longFloods + " long and " + getStats().shortFloods + " short.");
-			closeNow();
-			return;
-		}
-		
 		if (!_packetQueue.offer(packet))
 		{
-			if (getStats().countQueueOverflow())
-			{
-				_log.severe("Client " + toString() + " - Disconnected, too many queue overflows.");
-				closeNow();
-			}
-			else
-				sendPacket(ActionFailed.STATIC_PACKET);
-			
+			sendPacket(ActionFailed.STATIC_PACKET);
 			return;
 		}
 		
 		if (_queueLock.isLocked()) // already processing
 			return;
 		
-		try
-		{
-			if (_state == GameClientState.CONNECTED && getStats().processedPackets > 3)
-			{
-				if (Config.PACKET_HANDLER_DEBUG)
-					_log.severe("Client " + toString() + " - Disconnected, too many packets in non-authed state.");
-				
-				closeNow();
-				return;
-			}
-			
-			ThreadPool.execute(this);
-		}
-		catch (RejectedExecutionException e)
-		{
-		}
+		ThreadPool.execute(this);
 	}
 	
 	@Override
@@ -741,7 +683,6 @@
 		
 		try
 		{
-			int count = 0;
 			ReceivablePacket<L2GameClient> packet;
 			while (true)
 			{
@@ -763,10 +704,6 @@
 				{
 					_log.severe("Exception during execution " + packet.getClass().getSimpleName() + ", client: " + toString() + "," + e.getMessage());
 				}
-				
-				count++;
-				if (getStats().countBurst(count))
-					return;
 			}
 		}
 		finally

 

Edited by Tryskell
  • 0
Posted
1 hour ago, melron said:

Try to open ur server in a different pc and tell me what will happen. You got a similar prob like one guy had today. Its like packet loss thing but you have to test it

 

I hit mobs in localhost more than 15 minutes and nothing happened. Propably it's ok on local (even i am not sure, its so hard )

 

@Tryskell should i test it local , vps or it doesnt matter? what should i see?

 

PS: maybe movement is a part of this bug? because a friend stucked without even hitting a mob before some minutes. random stuck while running. (same bug , ctrl+alt+delete only way to exit)

  • 0
Posted (edited)

If things like chatting, playing with inventory items and other actions are frozen, it simply means packets are dropped, in one way or another (being client, or packets of the client).

 

Got nothing related to movement.

Edited by Tryskell
  • 0
Posted
6 minutes ago, Tryskell said:

If things like chatting, playing with inventory items and other actions are frozen, it simply means packets are dropped, in one way or another (being client, or packets of the client).

 

Got nothing related to movement.

 

Okay it is just strange because some stucks happened when even not hitting mobs.

 

What are the reccomendations for fixing the problem? (completely)

  • 0
Posted (edited)
29 minutes ago, alcohol said:

 

Okay it is just strange because some stucks happened when even not hitting mobs.

 

What are the reccomendations for fixing the problem? (completely)

 

- Don't use a customized pack, or review whatever you added. I'm not Harry Potter (even if I got black glasses and a scar on the fronthead IRL) and can't help you if you edited stuff.

- Don't use any Guard-like, they are mostly shitty.

- Drop ClientStats or tweak hidden Config related to MMOCore / ClientStats (see my previous post).

 

Nothing more. You can eventually test your pack on another OS environment to exclude Linux / Windows.

Edited by Tryskell
  • 0
Posted
4 minutes ago, Tryskell said:

 

- Don't use a customized pack, or review whatever you added. I'm not Harry Potter (even if I got black glasses and a scar on the fronthead IRL) and can't help you if you edited stuff.

- Don't use any Guard-like, they are mostly shitty.

- Drop ClientStats or tweak hidden Config related to MMOCore / ClientStats (see my previous post).

 

Nothing more. You can eventually test your pack on another OS environment to exclude Linux / Windows.

 

-Nothing custom yet , ONLY 2 mobs npcs xml.

-not using any guard now.

-Droping ClientStats will have any negative effect? Will it make the problem dissapear?

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

    • 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