Jump to content
  • 0

Spawn Cordenadas Code


Question

Posted
 

Could someone create the code for the char to be born in the same area without changing the respawns?

Example, I hedge an area and in the .properties file I edit the coordinates of when the players die inside it ..

Could someone please do?

Recommended Posts

  • 0
Posted
default:
if (activeChar.getKarma() > 0 && Config.ALT_KARMA_TELEPORT_TO_FLORAN)
{
  loc = new Location(17836, 170178, -3507);// Floran Village
  break;
}
if (activeChar.isInsideZone(L2Character.ZONE_FLAG))
{
  Location[] flagLocations =
  {
   new Location(1,2,3),
   new Location(1,2,3),
   new Location(1,2,3),
   new Location(1,2,3),
   new Location(1,2,3)
   };
   loc = flagLocations[Rnd.get(5)];
   break;
}
loc = MapRegionData.getInstance().getTeleToLocation(activeChar, MapRegionData.TeleportWhereType.Town);
break;
}

Replace L2Character.ZONE_FLAG with the correct field name of the flag zone. (Just go to L2Character and see how FlagZone is named).

 

Or

write into the parenthesis L2Character. and press control + Space to see available zones.

  • 0
Posted

To make this straight, you want the following:

 

I die into flagzone, i click "To Village" and i respawn again into flag zone?

  • 0
Posted (edited)

To make this straight, you want the following:

 

I die into flagzone, i click "To Village" and i respawn again into flag zone?

Yes man,  again into flag zone.

Edited by nortim
  • 0
Posted (edited)

You could tell us what pack are you using...

 

RequestRestartPoint.java

 

find the line for the loc when pressing to vilage and add a check if is inside your zone and change the XYZ

				if (_player.isInsideZone(ZoneId.FLAG))
					loc = new Location(1,2,3);
				else
					loc = MapRegionTable.getInstance().getLocationToTeleport(_player, TeleportType.TOWN);

You can add also random spawns 

				if (_player.isInsideZone(ZoneId.FLAG))
				{
					Location[] flagLocations =
					{
						new Location(1,2,3),
						new Location(1,2,3),
						new Location(1,2,3),
						new Location(1,2,3),
						new Location(1,2,3)
					};
					loc = flagLocations[Rnd.get(5)];
				}
				else
					loc = MapRegionTable.getInstance().getLocationToTeleport(_player, TeleportType.TOWN);
Edited by melron
  • 0
Posted

 

You could tell us what pack are you using...

 

RequestRestartPoint.java

 

find the line for the loc when pressing to vilage and add a check if is inside your zone and change the XYZ

				if (_player.isInsideZone(ZoneId.FLAG))
					loc = new Location(1,2,3);
				else
					loc = MapRegionTable.getInstance().getLocationToTeleport(_player, TeleportType.TOWN);

You can add also random spawns 

				if (_player.isInsideZone(ZoneId.PVP))
				{
					Location[] flagLocations =
					{
						new Location(1,2,3),
						new Location(1,2,3),
						new Location(1,2,3),
						new Location(1,2,3),
						new Location(1,2,3)
					};
					loc = flagLocations[Rnd.get(5)];
				}
				else
					loc = MapRegionTable.getInstance().getLocationToTeleport(_player, TeleportType.TOWN);

I using jfrozen.

  • 0
Posted

 

You could tell us what pack are you using...

 

RequestRestartPoint.java

 

find the line for the loc when pressing to vilage and add a check if is inside your zone and change the XYZ

				if (_player.isInsideZone(ZoneId.FLAG))
					loc = new Location(1,2,3);
				else
					loc = MapRegionTable.getInstance().getLocationToTeleport(_player, TeleportType.TOWN);

You can add also random spawns 

				if (_player.isInsideZone(ZoneId.FLAG))
				{
					Location[] flagLocations =
					{
						new Location(1,2,3),
						new Location(1,2,3),
						new Location(1,2,3),
						new Location(1,2,3),
						new Location(1,2,3)
					};
					loc = flagLocations[Rnd.get(5)];
				}
				else
					loc = MapRegionTable.getInstance().getLocationToTeleport(_player, TeleportType.TOWN);
 
Could you tell me where to add and the line references?
  • 0
Posted

 

 
Could you tell me where to add and the line references?

 

Post here requestrestartpoint.java and we will make it for you. However, dont wait everything ready from us, you should try to do them by yourself...Especially when melron explained you exactly how u could do it.

  • 0
Posted (edited)

i im not using frozen but it should be in clientpackets with name RequestRestartPoint.java

 

search something similar to

loc = MapRegionTable.getInstance().getLocationToTeleport(_player, TeleportType.Town);

Edit:

 

its in line 210..

Edited by melron
  • 0
Posted (edited)

i im not using frozen but it should be in clientpackets with name RequestRestartPoint.java

 

search something similar to

loc = MapRegionTable.getInstance().getLocationToTeleport(_player, TeleportType.Town);

Edit:

 

its in line 210..

 

Sorry for the lack of wisdom, I'm starting now, and thank you very much for the attention! I'm going to study java from now on.

I am adding but I am with the following error (from the photo), I will post my request restart and if possible show me how to add.

20qci89.png

 

 

/*

 * L2jProject x - www.l2jprojectx.com 
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 *
 */
package net.l2jpx.gameserver.network.clientpackets;
 
import org.apache.log4j.Logger;
 
import net.l2jpx.Config;
import net.l2jpx.gameserver.datatables.xml.MapRegionData;
import net.l2jpx.gameserver.managers.CastleManager;
import net.l2jpx.gameserver.managers.ClanHallManager;
import net.l2jpx.gameserver.managers.FortManager;
import net.l2jpx.gameserver.model.L2SiegeClan;
import net.l2jpx.gameserver.model.Location;
import net.l2jpx.gameserver.model.actor.instance.L2PcInstance;
import net.l2jpx.gameserver.model.entity.ClanHall;
import net.l2jpx.gameserver.model.entity.event.CTF;
import net.l2jpx.gameserver.model.entity.event.DM;
import net.l2jpx.gameserver.model.entity.event.TvT;
import net.l2jpx.gameserver.model.entity.siege.Castle;
import net.l2jpx.gameserver.model.entity.siege.Fort;
import net.l2jpx.gameserver.network.serverpackets.Revive;
import net.l2jpx.gameserver.thread.ThreadPoolManager;
import net.l2jpx.gameserver.util.IllegalPlayerAction;
import net.l2jpx.gameserver.util.Util;
 
/**
 * @author programmos
 */
public final class RequestRestartPoint extends L2GameClientPacket
{
private static Logger LOGGER = Logger.getLogger(RequestRestartPoint.class);
 
protected int _requestedPointType;
protected boolean _continuation;
 
@Override
protected void readImpl()
{
_requestedPointType = readD();
}
 
class DeathTask implements Runnable
{
L2PcInstance activeChar;
 
DeathTask(final L2PcInstance _activeChar)
{
activeChar = _activeChar;
}
 
@Override
public void run()
{
if ((activeChar._inEventTvT && TvT.is_started()) || (activeChar._inEventDM && DM.is_started()) || (activeChar._inEventCTF && CTF.is_started()))
{
activeChar.sendMessage("You can't restart in Event!");
return;
}
try
{
Location loc = null;
Castle castle = null;
Fort fort = null;
 
if (activeChar.isInJail())
{
_requestedPointType = 27;
}
else if (activeChar.isFestivalParticipant())
{
_requestedPointType = 4;
}
 
if (activeChar.isPhoenixBlessed())
activeChar.stopPhoenixBlessing(null);
 
switch (_requestedPointType)
{
case 1: // to clanhall
 
if (activeChar.getClan() != null)
{
 
if (activeChar.getClan().getHasHideout() == 0)
{
// cheater
activeChar.sendMessage("You may not use this respawn point!");
Util.handleIllegalPlayerAction(activeChar, "Player " + activeChar.getName() + " used respawn cheat.", IllegalPlayerAction.PUNISH_KICK);
return;
}
loc = MapRegionData.getInstance().getTeleToLocation(activeChar, MapRegionData.TeleportWhereType.ClanHall);
 
if (ClanHallManager.getInstance().getClanHallByOwner(activeChar.getClan()) != null && ClanHallManager.getInstance().getClanHallByOwner(activeChar.getClan()).getFunction(ClanHall.FUNC_RESTORE_EXP) != null)
{
activeChar.restoreExp(ClanHallManager.getInstance().getClanHallByOwner(activeChar.getClan()).getFunction(ClanHall.FUNC_RESTORE_EXP).getLvl());
}
 
break;
}
 
loc = MapRegionData.getInstance().getTeleToLocation(activeChar, MapRegionData.TeleportWhereType.Town);
break;
case 2: // to castle
Boolean isInDefense = false;
castle = CastleManager.getInstance().getCastle(activeChar);
fort = FortManager.getInstance().getFort(activeChar);
MapRegionData.TeleportWhereType teleportWhere = MapRegionData.TeleportWhereType.Town;
 
if (castle != null && castle.getSiege().getIsInProgress())
{
// siege in progress
if (castle.getSiege().checkIsDefender(activeChar.getClan()))
{
isInDefense = true;
}
}
 
if (fort != null && fort.getSiege().getIsInProgress())
{
// siege in progress
if (fort.getSiege().checkIsDefender(activeChar.getClan()))
{
isInDefense = true;
}
}
 
if (activeChar.getClan().getHasCastle() == 0 && activeChar.getClan().getHasFort() == 0 && !isInDefense)
{
// cheater
activeChar.sendMessage("You may not use this respawn point!");
Util.handleIllegalPlayerAction(activeChar, "Player " + activeChar.getName() + " used respawn cheat.", IllegalPlayerAction.PUNISH_KICK);
return;
}
 
if (CastleManager.getInstance().getCastleByOwner(activeChar.getClan()) != null)
teleportWhere = MapRegionData.TeleportWhereType.Castle;
else if (FortManager.getInstance().getFortByOwner(activeChar.getClan()) != null)
teleportWhere = MapRegionData.TeleportWhereType.Fortress;
 
loc = MapRegionData.getInstance().getTeleToLocation(activeChar, teleportWhere);
break;
 
case 3: // to siege HQ
L2SiegeClan siegeClan = null;
castle = CastleManager.getInstance().getCastle(activeChar);
fort = FortManager.getInstance().getFort(activeChar);
 
if (castle != null && castle.getSiege().getIsInProgress())
{
siegeClan = castle.getSiege().getAttackerClan(activeChar.getClan());
}
else if (fort != null && fort.getSiege().getIsInProgress())
{
siegeClan = fort.getSiege().getAttackerClan(activeChar.getClan());
}
 
if (siegeClan == null || siegeClan.getFlag().size() == 0)
{
// cheater
activeChar.sendMessage("You may not use this respawn point!");
Util.handleIllegalPlayerAction(activeChar, "Player " + activeChar.getName() + " used respawn cheat.", IllegalPlayerAction.PUNISH_KICK);
return;
}
 
loc = MapRegionData.getInstance().getTeleToLocation(activeChar, MapRegionData.TeleportWhereType.SiegeFlag);
break;
 
case 4: // Fixed or Player is a festival participant
if (!activeChar.isGM() && !activeChar.isFestivalParticipant())
{
// cheater
activeChar.sendMessage("You may not use this respawn point!");
Util.handleIllegalPlayerAction(activeChar, "Player " + activeChar.getName() + " used respawn cheat.", IllegalPlayerAction.PUNISH_KICK);
return;
}
 
loc = new Location(activeChar.getX(), activeChar.getY(), activeChar.getZ()); // spawn them where they died
break;
 
case 27: // to jail
if (!activeChar.isInJail())
return;
loc = new Location(-114356, -249645, -2984);
break;
 
default:
if (activeChar.getKarma() > 0 && Config.ALT_KARMA_TELEPORT_TO_FLORAN)
{
loc = new Location(17836, 170178, -3507);// Floran Village
break;
}
loc = MapRegionData.getInstance().getTeleToLocation(activeChar, MapRegionData.TeleportWhereType.Town);
break;
}
 
// Stand up and teleport, proof dvp video.
activeChar.setIsIn7sDungeon(false);
activeChar.setIsPendingRevive(true);
activeChar.teleToLocation(loc, true);
}
catch (final Throwable e)
{
e.printStackTrace();
// LOGGER.error( "", e);
}
}
}
 
@Override
protected void runImpl()
{
final L2PcInstance activeChar = getClient().getActiveChar();
 
if (activeChar == null)
return;
activeChar.setLastActionMillis(System.currentTimeMillis());
      
if (activeChar.isFakeDeath())
{
activeChar.stopFakeDeath(null);
activeChar.broadcastPacket(new Revive(activeChar));
return;
}
else if (!activeChar.isAlikeDead())
{
LOGGER.warn("Living player [" + activeChar.getName() + "] called RestartPointPacket! Ban this player!");
return;
}
 
final Castle castle = CastleManager.getInstance().getCastle(activeChar.getX(), activeChar.getY(), activeChar.getZ());
if (castle != null && castle.getSiege().getIsInProgress())
{
if (activeChar.getClan() != null && castle.getSiege().checkIsAttacker(activeChar.getClan()))
{
// Schedule respawn delay for attacker
ThreadPoolManager.getInstance().scheduleGeneral(new DeathTask(activeChar), castle.getSiege().getAttackerRespawnDelay());
activeChar.sendMessage("You will be re-spawned in " + castle.getSiege().getAttackerRespawnDelay() / 1000 + " seconds");
return;
}
}
// run immediately (no need to schedule)
new DeathTask(activeChar).run();
}
 
@Override
public String getType()
{
return "[C] 6d RequestRestartPoint";
}
}

Edited by nortim
  • 0
Posted

1st. delete the L2Character _player since is null and take the player with the correct name (maybe activeChar?)

 

2nd i cannot help you in this case cause i dont have frozen sources to check how the functions are written..

  • 0
Posted

@Solomun 

 

add else before 

loc = MapRegionData.getInstance().getTeleToLocation(activeChar, MapRegionData.TeleportWhereType.Town);

cause it will get the 2nd tp anyway :p

  • 0
Posted

@Solomun 

 

add else before 

loc = MapRegionData.getInstance().getTeleToLocation(activeChar, MapRegionData.TeleportWhereType.Town);

cause it will get the 2nd tp anyway :P

 

That's why "break;" stands for? 

  • 0
Posted (edited)

That's why "break;" stands for? 

Oops xD didnt see that ... cause frozen take _requestType in case :P

Edited by melron
  • 0
Posted

You should take some times to learn Java basics, or you will have to ask everytime every single thing. On your previous topic, someone helped you but the answer wasn't even correct, temporary objects created for nothing.

  • 0
Posted
default:
if (activeChar.getKarma() > 0 && Config.ALT_KARMA_TELEPORT_TO_FLORAN)
{
  loc = new Location(17836, 170178, -3507);// Floran Village
  break;
}
if (activeChar.isInsideZone(L2Character.ZONE_FLAG))
{
  Location[] flagLocations =
  {
   new Location(1,2,3),
   new Location(1,2,3),
   new Location(1,2,3),
   new Location(1,2,3),
   new Location(1,2,3)
   };
   loc = flagLocations[Rnd.get(5)];
   break;
}
loc = MapRegionData.getInstance().getTeleToLocation(activeChar, MapRegionData.TeleportWhereType.Town);
break;
}

Replace L2Character.ZONE_FLAG with the correct field name of the flag zone. (Just go to L2Character and see how FlagZone is named).

 

Or

write into the parenthesis L2Character. and press control + Space to see available zones.

 

 

1st. delete the L2Character _player since is null and take the player with the correct name (maybe activeChar?)

 

2nd i cannot help you in this case cause i dont have frozen sources to check how the functions are written..

 
I want to thank you sincerely for all my goodwill and patience with me, it worked perfectly! Thank you very much!
 
;D  ;D  ;D  ;D  ;D  ;D  ;D  ;D
Guest
This topic is now closed to further replies.


  • Posts

    • 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 TreZzoR account 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 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   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   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 invite 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   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   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
    • always wondered by that, but we should not judge a book by the cover on this case     (i holded back enough) fuck i cant... !signature move:
    • Messed with configs for hours, but nothing changed until I tried splitting the slots differently and testing with just a few items first. Kind of like checking what actually works before going full scale. Came across https://www.mega888reviews.com/ while taking a break, and reading through their simple, clear tips made me think maybe less complicated approaches often work best.
  • 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