Jump to content
  • 0

Question

Posted

Hello everybody...

 

I need a help about my new instance. I need to join in this instance every 2 (24hours reuse) day's but now i can join every 2,5 day's (60 hours reuse)..

Where i can change it?

thanks guys..

7 answers to this question

Recommended Posts

  • 0
Posted

 

InstanceManager.getInstance().setInstanceTime(ptm.getAccountName(), INSTANCEID, getNextInstanceTime(ONEDAY));
  • 0
Posted
{

ptm.sendMessage("You can only enter this instance once every day, wait until the next 12AM");

canEnter = false;

}

 

and when i join in instance and i leave i check time and he say 60hours ....

  • 0
Posted

In the script of the instance, you can find the method used for applying instance re-enter time.

 

It's originally located under the finishInstance  part of the script. Study and understand how that method works, and you will be able to add any kind of re-enter penalty you want.

 

You have to look for something like this. Tho it may be slightly different, in the original l2j files, or in earlier revisions:

if (world instanceof KamaWorld)
		{
			Calendar reenter = Calendar.getInstance();
			reenter.set(Calendar.MINUTE, RESET_MIN);
			if (reenter.get(Calendar.HOUR_OF_DAY) >= RESET_HOUR)
			{
				reenter.add(Calendar.DATE, 1);
			}
			reenter.set(Calendar.HOUR_OF_DAY, RESET_HOUR);
			
			SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.INSTANT_ZONE_FROM_HERE_S1_S_ENTRY_HAS_BEEN_RESTRICTED);
			sm.addInstanceName(world.getTemplateId());
			
			for (int objectId : world.getAllowed())
			{
				L2PcInstance obj = L2World.getInstance().getPlayer(objectId);
				if ((obj != null) && obj.isOnline())
				{
					InstanceManager.getInstance().setInstanceTime(objectId, world.getTemplateId(), reenter.getTimeInMillis());
					obj.sendPacket(sm);
				}
			}
		}
  • 0
Posted

This is all the script.. Where i can change the time?

package instances.Kamaloka;

import net.sf.l2j.gameserver.instancemanager.InstanceManager;
import net.sf.l2j.gameserver.instancemanager.InstanceManager.InstanceWorld;
import net.sf.l2j.gameserver.model.L2Party;
import net.sf.l2j.gameserver.model.actor.L2Npc;
import net.sf.l2j.gameserver.model.actor.L2Summon;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.model.olympiad.Olympiad;
import net.sf.l2j.gameserver.model.quest.Quest;
import net.sf.l2j.gameserver.model.quest.QuestState;
import net.sf.l2j.gameserver.network.SystemMessageId;
import net.sf.l2j.gameserver.network.serverpackets.ExShowScreenMessage;
import net.sf.l2j.gameserver.network.serverpackets.SystemMessage;
import net.sf.l2j.util.Rnd;

public class Kamaloka extends Quest
{
//NPCs
private static int SABRIEL = 90006;
private static int TELEPORTER = 90007;
private static int TELEPORTER2 = 90012;
private static int SQUASH = 90008;

//BOSSES
private static final int[] BOSSES = {22503,18554,22493,18564,25597};
private static final int FARIS = 95616;

//final bosses
private static final int[] GRAND_BOSSES = {95657,95658};

//MOBS
private static final int[] MOBS   = {22485,22490,22491,22497,22488,18558,18559,22494,22499,22500,22502};

//stronger MOBS
private static final int[] MOBS_STRONGER   = {18562,18555,22487,25617,25621,22505,25616};

private static String qn = "Kamaloka";
private static final int INSTANCEID = 2000;

private static boolean debug = false;
private static int levelReq = 86;
private static int pvpReq = 25;
/*
	//coords
	private static int[] INITIAL_SPAWN_POINT = {-76435, -185543, -11003};
	private static int[] BOSS_ROOM_SPAWN_POINT = {-55580, -219857, -8117};*/

private class teleCoord {int instanceId; int x; int y; int z;}

public class KamalokaWorld extends InstanceWorld
{
private int stage = 0;
private int liveMobs = 0;

public void incStage()
{
	stage++;
}

public int getStage()
{
	return stage;
}

public void incLiveMobs()
{
	liveMobs++;
}

public void decLiveMobs()
{
	liveMobs--;
	
	if (liveMobs < 0)
	{
		_log.warning("WTF KAMALOKA declivemobs went into negatives ");
	}
}

public int getLiveMobs()
{
	return liveMobs;
}

public KamalokaWorld()
{
	InstanceManager.getInstance().super();
}
}

public Kamaloka(int questId, String name, String descr)
{
	super(questId, name, descr);
	
	addStartNpc(SABRIEL);
	addTalkId(SABRIEL);
	addTalkId(TELEPORTER);
	addTalkId(TELEPORTER2);
	
	for (int boss : BOSSES)
		addKillId(boss);
	
	for (int mob : MOBS)
		addKillId(mob);
	
	for (int mob : MOBS_STRONGER)
		addKillId(mob);
	
	addKillId(FARIS);
	
	for (int mob : GRAND_BOSSES)
		addKillId(mob);
}

public static void main(String[] args)
{
	new Kamaloka(-1, qn, "instances");
}

private boolean checkConditions(L2PcInstance player, boolean single)
{
	if (debug)
		return true;
	else
	{
		final L2Party party = player.getParty();
		
		if (!single && party != null)
		{
			if (party.getMemberCount() > 3)
			{
				player.sendMessage("This is a 3 player instance; you cannot enter with a party size > 3 people");
				return false;
			}
			
			if (party.getMemberCount() < 3)
			{
				player.sendMessage("This is a 3 player instance; you cannot enter with a party size < 3 people");
				return false;
			}
			
			if (player.getObjectId() != party.getPartyLeaderOID())
			{
				player.sendPacket(new SystemMessage(2185));
				return false;
			}
			
			if (!checkIPs(party))
				return false;
			
			boolean canEnter = true;
			
			for (L2PcInstance ptm : party.getPartyMembers())
			{
				if (ptm == null) return false;
				
				if (System.currentTimeMillis() < InstanceManager.getInstance().getInstanceTime(ptm.getAccountName(), INSTANCEID))
				{
					ptm.sendMessage("You can only enter this instance once every day, wait until the next 12AM");
					canEnter = false;
				}
				else if (ptm.getLevel() < levelReq)
				{
					ptm.sendMessage("You must be level "+levelReq+" to enter this instance");
					canEnter = false;
				}
				else if (ptm.getPvpKills() < pvpReq)
				{
					ptm.sendMessage("You must have "+pvpReq+" PvPs to enter this instance");
					canEnter = false;
				}
				else if (ptm.getPvpFlag() != 0 || ptm.getKarma() > 0)
				{
					ptm.sendMessage("You can't enter the instance while in PVP mode or have karma");
					canEnter = false;
				}
				else if (ptm.isInFunEvent())
				{
					ptm.sendMessage("You can't enter the instance while in an event");
					canEnter = false;
				}
				else if (ptm.isInDuel() || ptm.isInOlympiadMode() || Olympiad.getInstance().isRegistered(ptm))
				{
					ptm.sendMessage("You can't enter the instance while in duel/oly");
					canEnter = false;
				}
				else if (!ptm.isInsideRadius(player, 500, true, false))
				{
					ptm.sendMessage("One of your party members is too far away");
					canEnter = false;
				}
				else
				{
					final InstanceWorld world = InstanceManager.getInstance().getPlayerWorld(player);
					
					if (world != null)
					{
						ptm.sendMessage("You can't enter because you have entered into another instance that hasn't expired yet, try waiting 5 min");
						canEnter = false;
					}
				}
				
				if (!canEnter)
				{
					ptm.sendMessage("You're preventing your party from entering an instance");
					if (ptm != player)
						player.sendMessage(ptm.getName()+" is preventing you from entering the instance");
					return false;
				}
			}
		}
		else
		{
			if (!single)
			{
				player.sendMessage("This is a 3 player instance; you cannot enter with a party size < 3 people");
				return false;
			}
			
			/*if (!single && party == null && System.currentTimeMillis() < InstanceManager.getInstance().getInstanceTime(player.getAccountName(), INSTANCEID))
			{
				player.sendMessage("You can only enter this instance once every day, wait until the next 12AM");
				return false;
			}
			else if (player.getLevel() < levelReq)
			{
				player.sendMessage("You must be level "+levelReq+" to enter this instance");
				return false;
			}
			else if (player.getPvpKills() < pvpReq)
			{
				player.sendMessage("You must have "+pvpReq+" PvPs to enter this instance");
				return false;
			}
			else if (player.getPvpFlag() != 0 || player.getKarma() > 0)
			{
				player.sendMessage("You can't enter the instance while in PVP mode or have karma");
				return false;
			}
			else if (player.isInFunEvent())
			{
				player.sendMessage("You can't enter the instance while in an event");
				return false;
			}
			else if (player.isInDuel() || player.isInOlympiadMode() || Olympiad.getInstance().isRegistered(player))
			{
				player.sendMessage("You can't enter the instance while in duel/oly");
				return false;
			}*/
		}
		
		return true;
	}
}

private void teleportplayer(L2PcInstance player, teleCoord teleto)
{
	player.setInstanceId(teleto.instanceId);
	player.teleToLocation(teleto.x, teleto.y, teleto.z);
	L2Summon pet = player.getPet();
	if (pet != null)
	{
		pet.setInstanceId(teleto.instanceId);
		pet.teleToLocation(teleto.x, teleto.y, teleto.z);
	}
	return;
}

protected int enterInstance(L2PcInstance player, String template, teleCoord teleto)
{
	int instanceId = 0;
	//check for existing instances for this player
	InstanceWorld world = InstanceManager.getInstance().getPlayerWorld(player);
	//existing instance
	if (world != null)
	{
		if (world.templateId != INSTANCEID)
		{
			player.sendPacket(new SystemMessage(SystemMessageId.ALREADY_ENTERED_ANOTHER_INSTANCE_CANT_ENTER));
			return 0;
		}
		
		if (!checkConditions(player, true))
			return 0;
		
		teleto.instanceId = world.instanceId;
		teleportplayer(player,teleto);
		return instanceId;
	}
	else  //New instance
	{
		if (!checkConditions(player, false))
			return 0;
		
		instanceId = InstanceManager.getInstance().createDynamicInstance(template);
		world = new KamalokaWorld();
		world.instanceId = instanceId;
		world.templateId = INSTANCEID;
		InstanceManager.getInstance().addWorld(world);
		_log.info("Kamaloka: new " + template + " Instance: " + instanceId + " created by player: " + player.getName());
		
		final L2Party party = player.getParty();
		
		if (party != null)
		{
			for (L2PcInstance ptm : party.getPartyMembers())
			{
				if (ptm == null) continue;
				
				InstanceManager.getInstance().setInstanceTime(ptm.getAccountName(), INSTANCEID, getNextInstanceTime(ONEDAY));
				
				// teleport players
				teleto.instanceId = instanceId;
				
				world.allowed.add(ptm.getObjectId());
				auditInstances(ptm, template, instanceId);
				teleportplayer(ptm,teleto);
			}
		}
		else
		{
			InstanceManager.getInstance().setInstanceTime(player.getAccountName(), INSTANCEID, getNextInstanceTime(ONEDAY));
			
			// teleport players
			teleto.instanceId = instanceId;
			
			world.allowed.add(player.getObjectId());
			auditInstances(player, template, instanceId);
			teleportplayer(player,teleto);
		}
		
		spawn1stMobs((KamalokaWorld) world, player);
		
		return instanceId;
	}
}

protected void exitInstance(L2PcInstance player, teleCoord tele)
{
	player.setInstanceId(0);
	player.teleToLocation(tele.x, tele.y, tele.z);
	
	L2Summon pet = player.getPet();
	if (pet != null)
	{
		pet.setInstanceId(0);
		pet.teleToLocation(tele.x, tele.y, tele.z);
	}
}

@Override
public String onTalk(L2Npc npc, L2PcInstance player)
{
	final int npcId = npc.getNpcId();
	
	QuestState st = player.getQuestState(qn);
	
	if (st == null)
		st = newQuestState(player);
	
	if (npcId == SABRIEL)
	{
		teleCoord teleto = new teleCoord();
		teleto.x = -76435;
		teleto.y = -185543;
		teleto.z = -11008;
		enterInstance(player, "Kamaloka.xml", teleto);
	}
	else if (npcId == TELEPORTER)
	{
		final InstanceWorld world = InstanceManager.getInstance().getPlayerWorld(player);
		
		if (world == null || !(world instanceof KamalokaWorld))
			return null;
		
		final L2Party party = player.getParty();
		
		final KamalokaWorld kamWorld = (KamalokaWorld)world;
		
		if (kamWorld.getStage() == 4)
		{
			if (party != null)
			{
				for (L2PcInstance ptm : party.getPartyMembers())
				{
					if (ptm == null) continue;
					ptm.teleToLocation(-76435, -185543, -11003, false);
				}
			}
			else
			{
				player.teleToLocation(-76435, -185543, -11003, false);
			}
			npc.deleteMe();
			spawn1stMobs(kamWorld, player);
		}
		else if (kamWorld.getStage() == 9)
		{
			if (party != null)
			{
				for (L2PcInstance ptm : party.getPartyMembers())
				{
					if (ptm == null) continue;
					ptm.teleToLocation(-55580, -219857, -8117, false);
					ptm.sendPacket(new ExShowScreenMessage("The Boss of Kamaloka has Appeared!", 6000));
				}
			}
			else
			{
				player.teleToLocation(-55580, -219857, -8117, false);
				player.sendPacket(new ExShowScreenMessage("The Boss of Kamaloka has Appeared!", 6000));
			}
			/*npc.deleteMe();*/
		}
		else if (kamWorld.getStage() == 10)
		{
			teleCoord teleto = new teleCoord();
			teleto.x = -82993;
			teleto.y = 150860;
			teleto.z = -3129;
			
			if (player.getParty() == null)
			{
				exitInstance(player, teleto);
				player.sendPacket(new ExShowScreenMessage("You have completed the Kamaloka instance", 6000));
			}
			else
			{
				for (L2PcInstance ptm : player.getParty().getPartyMembers())
				{
					exitInstance(ptm, teleto);
					ptm.sendPacket(new ExShowScreenMessage("You have completed the Kamaloka instance", 6000));
				}
			}
			
			st.exitQuest(true);
		}
		else
		{
			_log.warning("LOL wtf kamworld stage is fucked up!");
		}
	}
	else if (npcId == TELEPORTER2)
	{
		final InstanceWorld world = InstanceManager.getInstance().getPlayerWorld(player);
		
		if (world == null || !(world instanceof KamalokaWorld))
			return null;
		
		final KamalokaWorld kamWorld = (KamalokaWorld)world;
		
		if (kamWorld.getStage() == 10)
		{
			teleCoord teleto = new teleCoord();
			teleto.x = -82993;
			teleto.y = 150860;
			teleto.z = -3129;
			
			if (player.getParty() == null)
			{
				exitInstance(player, teleto);
				player.sendPacket(new ExShowScreenMessage("You have completed the Kamaloka instance", 6000));
			}
			else
			{
				for (L2PcInstance ptm : player.getParty().getPartyMembers())
				{
					exitInstance(ptm, teleto);
					ptm.sendPacket(new ExShowScreenMessage("You have completed the Kamaloka instance", 6000));
				}
			}
		}
		else
		{
			_log.warning("LOL wtf kamworld stage is fucked up!");
		}
		
		st.exitQuest(true);
	}
	
	return null;
}

@Override
public String onKill(L2Npc npc, L2PcInstance killer, boolean isPet)
{
	final InstanceWorld world = InstanceManager.getInstance().getPlayerWorld(killer);
	
	if (world == null || !(world instanceof KamalokaWorld))
		return null;
	
	final KamalokaWorld kamWorld = (KamalokaWorld)world;
	
	kamWorld.decLiveMobs();
	
	if (kamWorld.getLiveMobs() <= 0)
	{
		kamWorld.liveMobs = 0;
		
		for (int id : GRAND_BOSSES)
		{
			if (id == npc.getNpcId())
			{
				kamWorld.incStage();
				addSpawn(TELEPORTER2, -55580, -219857, -8117, 0, false, 0, false, world.instanceId);
				return null;
			}
		}
		
		final int stage = kamWorld.getStage();
		
		switch (stage)
		{
		case 0: //shouldn't happen
			spawn1stMobs(kamWorld, killer);
			break;
		case 4:
			spawnGK(kamWorld, killer);
			break;
		case 1:
		case 5:
			spawn2ndMobs(kamWorld, killer);
			break;
		case 2:
		case 6:
			spawn3rdMobs(kamWorld, killer);
			break;
		case 3:
		case 7:
			spawnSubBoss(kamWorld, killer);
			break;
		case 8:
			spawnGrandBoss(kamWorld, killer);
			spawnGK(kamWorld, killer);
			spawnSquash(kamWorld, killer);
			break;
		}
	}
	
	return null;
}

public void spawnGK(KamalokaWorld world, L2PcInstance player)
{
	addSpawn(TELEPORTER, -86602, -185545, -10059, 0, false, 0, false, world.instanceId);
}

public void spawnSquash(KamalokaWorld world, L2PcInstance player)
{
	addSpawn(SQUASH, -76435, -185543, -11003, 0, false, 0, false, world.instanceId);
}

public void spawn1stMobs(KamalokaWorld world, L2PcInstance player)
{
	if (world.getStage() == 0)
	{
		addSpawn(MOBS[Rnd.get(MOBS.length)], -77776, -185543, -11014, 0, false, 0, false, world.instanceId);
		world.incLiveMobs();
		addSpawn(MOBS[Rnd.get(MOBS.length)], -77776, -185543, -11014, 0, false, 0, false, world.instanceId);
		world.incLiveMobs();
		world.incStage();
	}
	else
	{
		addSpawn(MOBS[Rnd.get(MOBS.length)], -77776, -185543, -11014, 0, false, 0, false, world.instanceId);
		world.incLiveMobs();
		addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -77776, -185543, -11014, 0, false, 0, false, world.instanceId);
		world.incLiveMobs();
		addSpawn(MOBS[Rnd.get(MOBS.length)], -77776, -185543, -11014, 0, false, 0, false, world.instanceId);
		world.incLiveMobs();
		world.incStage();
	}
}

public void spawn2ndMobs(KamalokaWorld world, L2PcInstance player)
{
	if (world.getStage() == 1)
	{
		addSpawn(MOBS[Rnd.get(MOBS.length)], -80108, -185543, -10749, 0, true, 0, false, world.instanceId);
		world.incLiveMobs();
		addSpawn(MOBS[Rnd.get(MOBS.length)], -80108, -185543, -10749, 0, true, 0, false, world.instanceId);
		world.incLiveMobs();
		addSpawn(MOBS[Rnd.get(MOBS.length)], -80108, -185543, -10749, 0, true, 0, false, world.instanceId);
		world.incLiveMobs();
		world.incStage();
	}
	else
	{
		addSpawn(MOBS[Rnd.get(MOBS.length)], -80108, -185543, -10749, 0, true, 0, false, world.instanceId);
		world.incLiveMobs();
		addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -80108, -185543, -10749, 0, true, 0, false, world.instanceId);
		world.incLiveMobs();
		addSpawn(MOBS[Rnd.get(MOBS.length)], -80108, -185543, -10749, 0, true, 0, false, world.instanceId);
		world.incLiveMobs();
		addSpawn(MOBS[Rnd.get(MOBS.length)], -80108, -185543, -10749, 0, true, 0, false, world.instanceId);
		world.incLiveMobs();
		world.incStage();
	}
}

public void spawn3rdMobs(KamalokaWorld world, L2PcInstance player)
{
	if (world.getStage() == 2)
	{
		addSpawn(MOBS[Rnd.get(MOBS.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId);
		world.incLiveMobs();
		addSpawn(MOBS[Rnd.get(MOBS.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId);
		world.incLiveMobs();
		addSpawn(MOBS[Rnd.get(MOBS.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId);
		world.incLiveMobs();
		addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId);
		world.incLiveMobs();
		addSpawn(MOBS[Rnd.get(MOBS.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId);
		world.incLiveMobs();
		world.incStage();
	}
	else
	{
		addSpawn(MOBS[Rnd.get(MOBS.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId);
		world.incLiveMobs();
		addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId);
		world.incLiveMobs();
		addSpawn(MOBS[Rnd.get(MOBS.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId);
		world.incLiveMobs();
		addSpawn(MOBS[Rnd.get(MOBS.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId);
		world.incLiveMobs();
		addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId);
		world.incLiveMobs();
		addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -82438, -185543, -10486, 0, true, 0, false, world.instanceId);
		world.incLiveMobs();
		world.incStage();
	}
}

public void spawnSubBoss(KamalokaWorld world, L2PcInstance player)
{
	if (world.getStage() == 3)
	{
		addSpawn(BOSSES[Rnd.get(BOSSES.length)], -86217, -185543, -10042, 0, true, 0, false, world.instanceId);
		world.incLiveMobs();
		world.incStage();
	}
	else
	{
		if (Rnd.get(100) < 98)
		{
			addSpawn(BOSSES[Rnd.get(BOSSES.length)], -86217, -185543, -10042, 0, true, 0, false, world.instanceId);
			world.incLiveMobs();
			
			if (Rnd.get(100)> 85)
				addSpawn(BOSSES[Rnd.get(BOSSES.length)], -86217, -185543, -10042, 0, true, 0, false, world.instanceId);
			else
				addSpawn(MOBS_STRONGER[Rnd.get(MOBS_STRONGER.length)], -86217, -185543, -10042, 0, true, 0, false, world.instanceId);
			
			world.incLiveMobs();
		}
		else
		{
			addSpawn(FARIS, -86217, -185543, -10042, 0, true, 0, false, world.instanceId);
			world.incLiveMobs();
		}
		
		world.incStage();
	}
}

public void spawnGrandBoss(KamalokaWorld world, L2PcInstance player)
{
	if (world.getStage() >= 8)
	{
		addSpawn(GRAND_BOSSES[Rnd.get(GRAND_BOSSES.length)], -56284, -219858, -8120, 0, false, 0, false, world.instanceId);
		world.incLiveMobs();
		world.incStage();
	}
	else
	{
		_log.warning("lol wtf kamaloka spawning grand boss w/o stage being >= 8");
	}
}
}
  • 0
Posted
InstanceManager.getInstance().setInstanceTime(ptm.getAccountName(), INSTANCEID, getNextInstanceTime(ONEDAY));

Thnx for helping. Lock it :)

Guest
This topic is now closed to further replies.


  • Posts

    • https://www.4shared.com/s/fyGGySJVvfa  
    • PAYPAL& BINANCE PAYPAL& BINANCE
    • SOCNET STORE — is a unique place where you can find everything you need for your work on the Internet!   We offer the following range of products and services: Verified accounts with blue tick marks and confirmed documents in Instagram, Facebook, Twitter (X), LinkedIn; Gift cards and premium subscriptions for your services (Instagram Meta, Facebook Meta, Discord Nitro, Telegram Premium, YouTube Premium, Spotify Premium, ChatGPT, Netflix Premium, LinkedIn Premium, Twitter Premium, etc.); Telegram bot for purchasing Telegram Stars with a minimum markup with automatic delivery; Replenishment of your advertising accounts (in TikTok ADS, Facebook ADS, Google ADS, Bing ADS) + linking a bank card; Payment for any other service or subscription with a markup from 5 to 25% (depending on the cost of the subscription) Available payment methods: via PayPal, any cryptocurrency (+Binance Pay), Telegram Stars, Cash App, or any bank card.    Our online store  SOCNET.STORE  Our Telegram Stars Bot  SOCNET.CC  Our SMM-Panel for social media promotion  SOCNET.PRO  Telegram store  SOCNET.SHOP    News:  ➡ Telegram channel ➡ WhatsApp channel ➡ Discord server  Contacts and support:  ➡ Telegram support ➡ WhatsApp support ➡ Discord support: socnet_support ➡ Email support: solomonbog@socnet.store We have been operating for a long time and have gathered a huge list of reviews about our work! Our large list of positive and honest reviews is presented on our website!   VERIFIED ACCOUNTS    Verified old Instagram Meta account (2010-2020) with an active blue checkmark | Subscription has already been paid for 1 month in advance, account confirmed by documents: from $70 Verified old Facebook Meta account (2010-2023) with an active blue checkmark | Subscription has already been paid for 1 month in advance, account confirmed by documents: from $70 Verified Linkedin account (2010-2024) with an active checkmark and confirmed documents | Checkmark does not require renewal: from $80 Verified old Twitter (X) account (2010-2022) with an active blue checkmark | GEO: Tier 1-3 (your choice) | Subscription has already been paid for 1 month in advance: from $16    TELEGRAM STARS    Telegram Stars | 1 star from $0.0175 | Discounts for bulk orders | Delivery within 1-2 minutes automatically    GIFT SERVICES & PREMIUM SUBSCRIPTIONS  DISCORD NITRO Discord Nitro Classic (Basic) GIFT | 1/12 MONTHS | NO LOGIN OR PASSWORD NEEDED | Full subscription guarantee | Price from: $3.15 Discord Nitro FULL | 1/12 MONTHS | NO LOGIN OR PASSWORD NEEDED | Full subscription guarantee | Price from: $6.8 SPOTIFY PREMIUM Individual Spotify Premium plan for 1 month ON YOUR ACCOUNT | Available worldwide | Price from: $2.49 Family Spotify Premium plan for 1 month ON YOUR ACCOUNT | Works in any country | Price from: $3.75 Personal YouTube Premium Music on your account | 1 month | Ad-free YouTube | Price from: $3.75 Family YouTube Premium Music on your account | 1 month | Ad-free YouTube | Price from: $4.35 TELEGRAM PREMIUM Telegram Premium subscription for 1 month on your account | Authorization required (via TDATA or phone number) | Price from: $6 Telegram Premium subscription for 3 months on your account | No account authorization required | Guaranteed for full period | Price from: $17 Telegram Premium subscription for 6 months on your account | No account authorization required | Guaranteed for full period | Price from: $22 Telegram Premium subscription for 12 months on your account | No account authorization required | Guaranteed for full period | Price from: $37 GOOGLE VOICE • Google Voice Accounts (GMAIL US NEW) | Age/Year: Random 2024 | Phone Verified: Yes | Price from: $13 TWITTER(X) PREMIUM • Twitter Premium X subscription on your Twitter account for 1 month/1 year (your choice). Authorization in your Twitter account is required. Price from: $13 per month • Twitter X Premium Plus subscription with GROK AI on your Twitter account for 1 month/1 year (your choice). Authorization in your Twitter account is required. Price from: $55 NETFLIX PREMIUM • Netflix Premium subscription for 1 month on your personal account for any country, renewable after expiration | Price from: $10 CANVA PRO • CANVA PRO subscription for 1 month via invitation to your email | Price from: $1 CHATGPT 5 • Shared ChatGPT 5 Plus account FOR 2/5 USERS | Price from: $5 / $10 • Group ChatGPT 5 Plus subscription on your own email address for 1 month | Price from: $5 • Personal ChatGPT 5 Plus account FOR 1 USER or CHAT GPT PLUS subscription on your own account | Price from: $18 • ChatGPT 5 PRO account with UNLIMITED REQUESTS | Dedicated personal account FOR 1 USER ONLY or ON YOUR ACCOUNT | Works in any country or region | Price from: $220 Payment for any other subscription and replenishment of advertising accounts: Additional 5–20% to the cost of the subscription on the site or to the replenishment amount depending on the total purchase amount.   Attention: This text block does not represent our full product range; for more details, please visit the relevant links below! If you have any questions, our support team is always ready to help!       Our online store  SOCNET.STORE  Our Telegram Stars Bot  SOCNET.CC  Our SMM-Panel for social media promotion  SOCNET.PRO  Telegram store  SOCNET.SHOP    News:  ➡ Telegram channel ➡ WhatsApp channel ➡ Discord server  Contacts and support:  ➡ Telegram support ➡ WhatsApp support ➡ Discord support: socnet_support ➡ Email support: solomonbog@socnet.store We have been operating for a long time and have gathered a huge list of reviews about our work! Our large list of positive and honest reviews is presented on our website!  10% – 20% Discount or $1 BONUS for your registration  If you’d like to receive a $1 BONUS for your registration OR a DISCOUNT of 10% – 20% on your first purchase, simply leave a comment: "SEND ME MY BONUS, MY USERNAME IS..." You can also use the ready promo code across all our stores: "SOCNET" (15% discount!)  We invite you to COOPERATE and EARN with us  Want to sell your product or service in our stores and earn money? Want to become our partner or propose a mutually beneficial collaboration? You can contact us through the CONTACTS listed in this thread. Frequently Asked Questions and Refund Policy If you have any questions or issues, our fast customer support is always ready to respond to your requests! Refunds for services that do not fully meet the stated requirements or quality will only be issued if a guarantee and duration are explicitly mentioned in the product description. In all other cases, refunds will not be fully processed! By purchasing such services, you automatically agree to our refund policy for non-provided services. We currently accept CRYPTOMUS, Payeer, NotPayments, Perfect Money, Russian and Ukrainian bank cards, AliPay, BinancePay, CryptoBot, credit cards, and PayPal. The $1 registration bonus can only be used for purchases and only once after your first registration in any SOCNET project. We value every customer and provide replacements in case of invalid accounts through our contact methods! p.s.: Purchase bonuses can be used across any SOCNET projects: web store or Telegram bots.
  • 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