Jump to content
  • 0

Question

Posted (edited)

Gia sas simera evala tvt se jacis pack ola koble mia xara den m vgike kanena problem alla otan bika sto game kai arxise to registartion elege ayto

b6V9V2F.png

 

elege sto announcements ayto "Registrations for the TvT Event are opened for 2 minutes. Type /join to register and /leave to WITHDRAW"

alla otan to dokimasa na patiso /join den m elege tpt oute oti ekana register opos tin eikona edw 

thNPGwj.png

kanonika leei "You have registered successfully" otan patas /join emena den m elege tpt kai den ekane register sto event to idio kai me to /leave kanena apo ta dio den douleve kseri kanis ti fteei? i an einai anti gia /join na ta kano .join i .tvtjoin oti einai pio efkolo na gini pls :| 

Edited by Anuvor

Recommended Posts

  • 0
Posted

Νομίζω χρειάζεται να δηλώσεις τα Commands αν δε κάνω λάθος για να δουλέψουν...

Στείλε λίγο το link από το Event που θες...

  • 0
Posted

Νομίζω χρειάζεται να δηλώσεις τα Commands αν δε κάνω λάθος για να δουλέψουν...

Στείλε λίγο το link από το Event που θες...

apo jbrasil to vrika thes na s stilo to link apo ekei?

  • 0
Posted

Δεν με αφήνει να δω το topic.

Στείλε μου το περιεχόμενό του με


 
### Eclipse Workspace Patch 1.0

#P aCis_gameserver
Index: java/net/sf/l2j/gameserver/GameServer.java
===================================================================
--- java/net/sf/l2j/gameserver/GameServer.java (wersja 16)
+++ java/net/sf/l2j/gameserver/GameServer.java (kopia robocza)
@@ -58,6 +58,7 @@
import net.sf.l2j.gameserver.datatables.StaticObjects;
import net.sf.l2j.gameserver.datatables.SummonItemsData;
import net.sf.l2j.gameserver.datatables.TeleportLocationTable;
+import net.sf.l2j.gameserver.events.EventManager;
import net.sf.l2j.gameserver.handler.AdminCommandHandler;
import net.sf.l2j.gameserver.handler.ChatHandler;
import net.sf.l2j.gameserver.handler.ItemHandler;
@@ -290,6 +291,9 @@
if (Config.ALT_FISH_CHAMPIONSHIP_ENABLED)
FishingChampionshipManager.getInstance();

+ Util.printSection("Event Manager");
+ EventManager.getInstance();
+
Util.printSection("System");
TaskManager.getInstance();

Index: java/net/sf/l2j/Config.java
===================================================================
--- java/net/sf/l2j/Config.java (wersja 16)
+++ java/net/sf/l2j/Config.java (kopia robocza)
@@ -24,6 +24,7 @@
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.Arrays;
+import java.util.HashMap;
import java.util.List;
import java.util.Properties;
import java.util.StringTokenizer;
@@ -251,6 +252,14 @@
public static int ALT_FISH_CHAMPIONSHIP_REWARD_4;
public static int ALT_FISH_CHAMPIONSHIP_REWARD_5;

+ /** TvT Event */
+ public static boolean ALLOW_TVT_EVENT;
+ public static String TVT_EVENT_TIMES;
+ public static HashMap<Integer, Integer> TVT_EVENT_REWARDS = new HashMap<>();
+ public static HashMap<String, int[]> TVT_TEAMS_DATA = new HashMap<>();
+ public static int TVT_RES_SECONDS;
+ public static ArrayList<Integer> TVT_DOORS = new ArrayList<>();
+
// --------------------------------------------------
// HexID
// --------------------------------------------------
@@ -886,6 +895,38 @@
ALT_FISH_CHAMPIONSHIP_REWARD_4 = events.getProperty("AltFishChampionshipReward4", 200000);
ALT_FISH_CHAMPIONSHIP_REWARD_5 = events.getProperty("AltFishChampionshipReward5", 100000);

+ ALLOW_TVT_EVENT = events.getProperty("AllowTvtEvent", false);
+ TVT_EVENT_TIMES = events.getProperty("TvtEventTimes", "12:00,14:00,16:00");
+ String TVT_EVENT_REWARDS_VALUE = events.getProperty("TvtEventRewards", "57,1;");
+ String[] tvt_event_rewards_splitted_1 = TVT_EVENT_REWARDS_VALUE.split(";");
+ for (String i : tvt_event_rewards_splitted_1)
+ {
+ String[] tvt_event_rewards_splitted_2 = i.split(",");
+ TVT_EVENT_REWARDS.put(Integer.parseInt(tvt_event_rewards_splitted_2[0]),
+	 Integer.parseInt(tvt_event_rewards_splitted_2[1]));
+ }
+ String tvt_teams_data = events.getProperty("TvtTeamsData", "Good_0,0,0;Evil_0,0,0");
+ String[] ttd_splitted = tvt_teams_data.split(";");
+ for (String s : ttd_splitted)
+ {
+ String[] ss = s.split("_");
+ String name = ss[0];
+ String[] sss = ss[1].split(",");
+ int x = Integer.parseInt(sss[0]);
+ int y = Integer.parseInt(sss[1]);
+ int z = Integer.parseInt(sss[2]);
+
+ TVT_TEAMS_DATA.put(name, new int[] { x, y, z });
+ }
+ TVT_RES_SECONDS = events.getProperty("TvtResSeconds", 10);
+ String tvt_doors = events.getProperty("TvtDoors", "24190001,24190002,24190003,24190004");
+ String[] tvt_doors_split = tvt_doors.split(",");
+ for (String s : tvt_doors_split)
+ {
+ int i = Integer.parseInt(s);
+ TVT_DOORS.add(i);
+ }
+
// FloodProtector
ExProperties security = load(FLOOD_PROTECTOR_FILE);
loadFloodProtectorConfig(security, FLOOD_PROTECTOR_ROLL_DICE, "RollDice", "42");
Index: java/net/sf/l2j/gameserver/events/TvTEvent.java
===================================================================
--- java/net/sf/l2j/gameserver/events/TvTEvent.java (wersja 0)
+++ java/net/sf/l2j/gameserver/events/TvTEvent.java (wersja 0)
@@ -0,0 +1,239 @@
+/*
+ * 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
+ */
+package net.sf.l2j.gameserver.events;
+
+import java.util.ArrayList;
+import java.util.LinkedList;
+
+import net.sf.l2j.Config;
+import net.sf.l2j.gameserver.Announcements;
+import net.sf.l2j.gameserver.datatables.DoorTable;
+import net.sf.l2j.gameserver.model.actor.instance.L2DoorInstance;
+import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
+
+/**
+ * @author Anarchy
+ */
+public class TvTEvent implements IEvent
+{
+ public ArrayList<L2PcInstance> _players;
+ private EventState _state = EventState.INACTIVE;
+ private final ArrayList<EventTeam> _teams;
+ private final ArrayList<L2DoorInstance> _doors;
+
+ public TvTEvent()
+ {
+ _players = new ArrayList<>();
+ _teams = new ArrayList<>();
+ _doors = new ArrayList<>();
+ }
+
+ @Override
+ public void runEvent()
+ {
+ if (EventManager.getInstance().getCurrentEvent() != null)
+ {
+ return;
+ }
+
+ EventManager.getInstance().setCurrentEvent(this);
+
+ Announcements.announceToAll("Registrations for the TvT Event are opened for 2 minutes. Type /join to register and /leave to withdraw.");
+ _state = EventState.REGISTERING;
+
+ sleep(120);
+
+ if (!check())
+ {
+ EventManager.getInstance().setCurrentEvent(null);
+ return;
+ }
+
+ Announcements.announceToAll("Registrations for the TvT Event are closed. Teams will be teleported in 10 seconds.");
+ _state = EventState.RUNNING;
+
+ sleep(10);
+
+ split();
+
+ for (EventTeam et : _teams)
+ {
+ et.teleportTeam(Config.TVT_TEAMS_DATA.get(et.getName())[0], Config.TVT_TEAMS_DATA.get(et.getName())[1], Config.TVT_TEAMS_DATA.get(et.getName())[2], true);
+
+ et.paralize(true);
+ }
+ closeDoors();
+ Announcements.announceToAll("Teams have been teleported. Fight begins in 5 seconds.");
+
+ sleep(5);
+
+ for (EventTeam et : _teams)
+ {
+ et.paralize(false);
+ }
+ Announcements.announceToAll("The fight has started!");
+ Announcements.announceToAll("The event will last for 1 minute(s).");
+
+ sleep(60); // tvt time in sec
+
+ rewardAndClear();
+ openDoors();
+ _state = EventState.INACTIVE;
+
+ EventManager.getInstance().setCurrentEvent(null);
+ }
+
+ private void openDoors()
+ {
+ if (_doors.isEmpty())
+ {
+ for (int i : Config.TVT_DOORS)
+ {
+ L2DoorInstance door = DoorTable.getInstance().getDoor(i);
+ door.openMe();
+ }
+ }
+ else
+ {
+ for (L2DoorInstance door : _doors)
+ {
+ door.deleteMe();
+ }
+ }
+ }
+
+ private static void closeDoors()
+ {
+ for (int i : Config.TVT_DOORS)
+ {
+ L2DoorInstance door = DoorTable.getInstance().getDoor(i);
+ door.closeMe();
+ }
+ }
+
+ public void rewardAndClear()
+ {
+ int i = 0;
+ EventTeam WINNER = null;
+
+ for (EventTeam et : _teams)
+ {
+ et.teleportTeam(82698, 148638, -3473, true);
+
+ for (L2PcInstance p : et.getPlayers())
+ {
+ EventCommons.getInstance().removePlayer(p);
+ }
+
+ if (et.getPoints() > i)
+ {
+ i = et.getPoints();
+ winner = et;
+ }
+ }
+
+ if (winner != null)
+ {
+ for (int ii : Config.TVT_EVENT_REWARDS.keySet())
+ {
+ winner.rewardTeam(ii, Config.TVT_EVENT_REWARDS.get(ii));
+ }
+
+ Announcements.announceToAll(winner.getName() + " team has won the event.");
+ }
+ else
+ Announcements.announceToAll("Event ended with no winner.");
+ return;
+ }
+
+ public boolean check()
+ {
+ if (EventCommons.getInstance().getRegisteredPlayersSize(TvTEvent.class) < Config.TVT_TEAMS_DATA.size() * 1)
+ {
+ Announcements.announceToAll("The event has been canceled due to lack of participants.");
+ EventCommons.getInstance().removeRegisteredPlayers(TvTEvent.class);
+ _state = EventState.INACTIVE;
+ return false;
+ }
+
+ return true;
+ }
+
+ public void split()
+ {
+ int i = Config.TVT_TEAMS_DATA.size() - 1;
+ LinkedList<LinkedList<L2PcInstance>> temp = new LinkedList<>();
+
+ for (int ii = Config.TVT_TEAMS_DATA.size(); ii > 0; ii--)
+ {
+ LinkedList<L2PcInstance> t = new LinkedList<>();
+ temp.add(t);
+ }
+
+ for (L2PcInstance p : EventCommons.getInstance().getRegisteredPlayers(TvTEvent.class))
+ {
+ temp.get(i).add(p);
+ i--;
+
+ if (i == -1)
+ {
+ i = Config.TVT_TEAMS_DATA.size();
+ }
+
+ EventCommons.getInstance().addPlayer(p, this);
+ }
+
+ for (String s : Config.TVT_TEAMS_DATA.keySet())
+ {
+ EventTeam et = new EventTeam(temp.getLast(), s, 0, new int[]
+ {
+ Config.TVT_TEAMS_DATA.get(s)[0], Config.TVT_TEAMS_DATA.get(s)[1], Config.TVT_TEAMS_DATA.get(s)[2]
+ });
+ temp.remove(temp.getLast());
+
+ _teams.add(et);
+ }
+ }
+
+ private static void sleep(int seconds)
+ {
+ try
+ {
+ Thread.sleep(seconds * 1000);
+ }
+ catch (InterruptedException e)
+ {
+ e.printStackTrace();
+ }
+ }
+
+ @Override
+ public EventState getState()
+ {
+ return _state;
+ }
+
+ @Override
+ public String getTimes()
+ {
+ return Config.TVT_EVENT_TIMES;
+ }
+
+ @Override
+ public int getId()
+ {
+ return 1;
+ }
+}
Index: config/events.properties
===================================================================
--- config/events.properties (wersja 16)
+++ config/events.properties (kopia robocza)
@@ -251,4 +251,22 @@
AltFishChampionshipReward2 = 500000
AltFishChampionshipReward3 = 300000
AltFishChampionshipReward4 = 200000
-AltFishChampionshipReward5 = 100000
\ No newline at end of file
+AltFishChampionshipReward5 = 100000
+
+#=============================================================
+#					 TvT Event
+#=============================================================
+# Enable or disable the TvT Event.
+AllowTvtEvent = True
+# Times of day that the event will take place.
+TvtEventTimes = 12:00,14:00,16:00
+# Rewards.
+TvtEventRewards = 57,1000;
+# Team data. Should be like this: teamname_x,y,z;teamname_x,y,z.
+# Note: You can add as many teams as you like.
+TvtTeamsData = Angels_148404,46718,-3414;Demons_150545,46718,-3414
+# Time to res after death.
+TvtResSeconds = 5
+# Doors to close when event starts.
+# Default doors: Coliseum
+TvtDoors = 24190001,24190002,24190003,24190004
\ No newline at end of file
Index: java/net/sf/l2j/gameserver/network/serverpackets/Die.java
===================================================================
--- java/net/sf/l2j/gameserver/network/serverpackets/Die.java (wersja 16)
+++ java/net/sf/l2j/gameserver/network/serverpackets/Die.java (kopia robocza)
@@ -15,6 +15,7 @@
package net.sf.l2j.gameserver.network.serverpackets;

import net.sf.l2j.gameserver.datatables.AccessLevels;
+import net.sf.l2j.gameserver.events.EventCommons;
import net.sf.l2j.gameserver.instancemanager.CastleManager;
import net.sf.l2j.gameserver.model.L2AccessLevel;
import net.sf.l2j.gameserver.model.L2Clan;
@@ -58,7 +59,14 @@

writeC(0x06);
writeD(_charObjId);
- writeD(0x01); // to nearest village
+ if (_activeChar instanceof L2PcInstance && EventCommons.getInstance().showDiePacket((L2PcInstance)_activeChar))
+ {
+ writeD(0x01); // to nearest village
+ }
+ else
+ {
+ writeD(0x00);
+ }

if (_clan != null)
{
Index: java/net/sf/l2j/gameserver/events/EventCommons.java
===================================================================
--- java/net/sf/l2j/gameserver/events/EventCommons.java (wersja 0)
+++ java/net/sf/l2j/gameserver/events/EventCommons.java (wersja 0)
@@ -0,0 +1,274 @@
+/*
+ * 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
+ */
+package net.sf.l2j.gameserver.events;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+
+import net.sf.l2j.Config;
+import net.sf.l2j.gameserver.ThreadPoolManager;
+import net.sf.l2j.gameserver.model.actor.L2Character;
+import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
+import net.sf.l2j.gameserver.network.serverpackets.ActionFailed;
+
+/**
+ * @author Anarchy
+ *
+ *This class contains restrictions and general methods for all events.
+ */
+public final class EventCommons
+{
+ public final HashMap<L2PcInstance, IEvent> _players;
+ private final HashMap<L2PcInstance, Class<?>> _registeredPlayers;
+
+ public static EventCommons getInstance()
+ {
+ return SingletonHolder._instance;
+ }
+
+ protected EventCommons()
+ {
+ _players = new HashMap<>();
+ _registeredPlayers = new HashMap<>();
+ }
+
+ public void registerPlayer(L2PcInstance player, Class<?> c)
+ {
+ if (_registeredPlayers.containsKey(player))
+ {
+ player.sendMessage("You have already registered for the event.");
+ return;
+ }
+
+ _registeredPlayers.put(player, c);
+ }
+
+ public void unregisterPlayer(L2PcInstance player, Class<?> c)
+ {
+ if (!_registeredPlayers.containsKey(player))
+ {
+ player.sendMessage("You have not registered for the event.");
+ return;
+ }
+
+ _registeredPlayers.remove(player);
+ }
+
+ public boolean showDiePacket(L2PcInstance player)
+ {
+ if (_players.containsKey(player))
+ {
+ if (_players.get(player) instanceof TvTEvent)
+ {
+ return false;
+ }
+ }
+
+ return true;
+ }
+
+ public boolean canUnstuck(L2PcInstance player)
+ {
+ if (_players.containsKey(player))
+ {
+ return false;
+ }
+
+ return true;
+ }
+
+ public boolean canRes(L2PcInstance victim)
+ {
+ if (_players.containsKey(victim))
+ {
+ return false;
+ }
+
+ return true;
+ }
+
+ public boolean canRecall(L2PcInstance victim)
+ {
+ if (_players.containsKey(victim))
+ {
+ return false;
+ }
+
+ return true;
+ }
+
+ public void doDie(L2Character killer, L2PcInstance victim)
+ {
+ if (_players.containsKey(victim))
+ {
+ if (killer != null && killer instanceof L2PcInstance)
+ {
+ L2PcInstance kl = (L2PcInstance)killer;
+
+ if (_players.containsKey(kl))
+ {
+	 if (_players.get(victim) == _players.get(kl))
+	 {
+	 // TvT event kills.
+	 if (_players.get(victim) instanceof TvTEvent)
+	 {
+	 if (kl.getEventTeam() != victim.getEventTeam())
+	 {
+	 kl.getEventTeam().addPoints(1);
+	 }
+	
+	 ThreadPoolManager.getInstance().scheduleGeneral(new ResTask(victim.getEventTeam().getRespawnX(), victim.getEventTeam().getRespawnY(), victim.getEventTeam().getRespawnZ(), victim, true),Config.TVT_RES_SECONDS * 1000);
+	 }
+	 }
+ }
+ }
+ }
+ }
+
+ public boolean canTarget(L2PcInstance player, L2PcInstance target)
+ {
+ if ((!_players.containsKey(player) && _players.containsKey(target))
+ || (_players.containsKey(player) && !_players.containsKey(target)))
+ {
+ player.setTarget(null);
+ player.sendPacket(ActionFailed.STATIC_PACKET);
+ return false;
+ }
+
+ if (_players.get(player) != _players.get(target))
+ {
+ player.setTarget(null);
+ player.sendPacket(ActionFailed.STATIC_PACKET);
+ return false;
+ }
+
+ if ((target.getEventTeam() != null && player.getEventTeam() == null))
+ {
+ player.setTarget(null);
+ player.sendPacket(ActionFailed.STATIC_PACKET);
+ return false;
+ }
+
+ if (target.getEventTeam() == null && player.getEventTeam() != null)
+ {
+ player.setTarget(null);
+ player.sendPacket(ActionFailed.STATIC_PACKET);
+ return false;
+ }
+
+ return true;
+ }
+
+ public void addPlayer(L2PcInstance player, IEvent event)
+ {
+ if (!_players.containsKey(player))
+ {
+ _players.put(player, event);
+ }
+ }
+
+ public void removePlayer(L2PcInstance player)
+ {
+ if (_players.containsKey(player))
+ {
+ _players.remove(player);
+ }
+ }
+
+ public int getRegisteredPlayersSize(Class<?> c)
+ {
+ int i = 0;
+ for (L2PcInstance p : _registeredPlayers.keySet())
+ {
+ if (_registeredPlayers.get(p) == c)
+ {
+ i++;
+ }
+ }
+
+ return i;
+ }
+
+ public void removeRegisteredPlayers(Class<?> c)
+ {
+ ArrayList<L2PcInstance> temp = new ArrayList<>();
+
+ for (L2PcInstance p : _registeredPlayers.keySet())
+ {
+ if (_registeredPlayers.get(p) == c)
+ {
+ temp.add(p);
+ }
+ }
+
+ for (L2PcInstance p : temp)
+ {
+ _registeredPlayers.remove(p);
+ }
+ }
+
+ public HashMap<L2PcInstance, Class<?>> getRegisteredPlayers()
+ {
+ return _registeredPlayers;
+ }
+
+ public ArrayList<L2PcInstance> getRegisteredPlayers(Class<?> c)
+ {
+ ArrayList<L2PcInstance> temp = new ArrayList<>();
+
+ for (L2PcInstance p : _registeredPlayers.keySet())
+ {
+ if (_registeredPlayers.get(p) == c)
+ {
+ temp.add(p);
+ }
+ }
+
+ return temp;
+ }
+
+ public class ResTask implements Runnable
+ {
+ private final int _x, _y, _z;
+ private final L2PcInstance _player;
+ private final boolean _heal;
+
+ public ResTask(int x, int y, int z, L2PcInstance player, boolean heal)
+ {
+ _x = x;
+ _y = y;
+ _z = z;
+ _player = player;
+ _heal = heal;
+ }
+
+ @Override
+ public void run()
+ {
+ _player.doRevive();
+ _player.teleToLocation(_x, _y, _z, 0);
+ if (_heal)
+ {
+ _player.setCurrentHpMp(_player.getMaxHp(), _player.getMaxMp());
+ _player.setCurrentCp(_player.getMaxCp());
+ }
+ }
+ }
+
+ private static class SingletonHolder
+ {
+ protected static final EventCommons _instance = new EventCommons();
+ }
+}
Index: java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java
===================================================================
--- java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (wersja 16)
+++ java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (kopia robocza)
@@ -66,6 +66,8 @@
import net.sf.l2j.gameserver.datatables.SkillTable;
import net.sf.l2j.gameserver.datatables.SkillTable.FrequentSkill;
import net.sf.l2j.gameserver.datatables.SkillTreeTable;
+import net.sf.l2j.gameserver.events.EventCommons;
+import net.sf.l2j.gameserver.events.EventTeam;
import net.sf.l2j.gameserver.handler.IItemHandler;
import net.sf.l2j.gameserver.handler.ItemHandler;
import net.sf.l2j.gameserver.instancemanager.CastleManager;
@@ -250,6 +252,18 @@
*/
public final class L2PcInstance extends L2Playable
{
+ private EventTeam _eventTeam = null;
+
+ public EventTeam getEventTeam()
+ {
+ return _eventTeam;
+ }
+
+ public void setEventTeam(EventTeam val)
+ {
+ _eventTeam = val;
+ }
+
// Character Skill SQL String Definitions:
private static final String RESTORE_SKILLS_FOR_CHAR = "SELECT skill_id,skill_level FROM character_skills WHERE char_obj_id=? AND class_index=?";
private static final String ADD_NEW_SKILL = "INSERT INTO character_skills (char_obj_id,skill_id,skill_level,class_index) VALUES (?,?,?,?)";
@@ -3319,6 +3333,10 @@
@Override
public void onAction(L2PcInstance player)
{
+ if (!EventCommons.getInstance().canTarget(player, this))
+ {
+ return;
+ }
// Check if the player already target this L2PcInstance
if (player.getTarget() != this)
{
@@ -4078,6 +4096,8 @@
	 stopFakeDeath(true);
}

+ EventCommons.getInstance().doDie(killer, this);
+
if (killer != null)
{
L2PcInstance pk = killer.getActingPlayer();
Index: java/net/sf/l2j/gameserver/events/IEvent.java
===================================================================
--- java/net/sf/l2j/gameserver/events/IEvent.java (wersja 0)
+++ java/net/sf/l2j/gameserver/events/IEvent.java (wersja 0)
@@ -0,0 +1,29 @@
+/*
+ * 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
+ */
+package net.sf.l2j.gameserver.events;
+
+/**
+ * @author Anarchy
+ */
+public interface IEvent
+{
+ public void runEvent();
+
+ public EventState getState();
+
+ public String getTimes();
+
+ public int getId();
+}
Index: java/net/sf/l2j/gameserver/events/EventState.java
===================================================================
--- java/net/sf/l2j/gameserver/events/EventState.java (wersja 0)
+++ java/net/sf/l2j/gameserver/events/EventState.java (wersja 0)
@@ -0,0 +1,27 @@
+/*
+ * 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
+ */
+package net.sf.l2j.gameserver.events;
+
+/**
+ * @author Anarchy
+ *
+ * This class should contain all the necessary states for an event.
+ */
+public enum EventState
+{
+ INACTIVE,
+ REGISTERING,
+ RUNNING
+}
Index: java/net/sf/l2j/gameserver/handler/skillhandlers/Resurrect.java
===================================================================
--- java/net/sf/l2j/gameserver/handler/skillhandlers/Resurrect.java (wersja 16)
+++ java/net/sf/l2j/gameserver/handler/skillhandlers/Resurrect.java (kopia robocza)
@@ -17,6 +17,7 @@
import java.util.ArrayList;
import java.util.List;

+import net.sf.l2j.gameserver.events.EventCommons;
import net.sf.l2j.gameserver.handler.ISkillHandler;
import net.sf.l2j.gameserver.model.L2Object;
import net.sf.l2j.gameserver.model.L2Skill;
@@ -56,6 +57,9 @@
	 if (player.getClanId() != ((L2PcInstance) target).getClanId())
	 continue;
	 }
+
+ if (!EventCommons.getInstance().canRes((L2PcInstance)target))
+	 continue;
}

if (target.isVisible())
Index: java/net/sf/l2j/gameserver/handler/usercommandhandlers/EventCommands.java
===================================================================
--- java/net/sf/l2j/gameserver/handler/usercommandhandlers/EventCommands.java (wersja 0)
+++ java/net/sf/l2j/gameserver/handler/usercommandhandlers/EventCommands.java (wersja 0)
@@ -0,0 +1,67 @@
+/*
+ * 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
+ */
+package net.sf.l2j.gameserver.handler.usercommandhandlers;
+
+import net.sf.l2j.gameserver.events.EventCommons;
+import net.sf.l2j.gameserver.events.EventManager;
+import net.sf.l2j.gameserver.events.EventState;
+import net.sf.l2j.gameserver.events.TvTEvent;
+import net.sf.l2j.gameserver.handler.IUserCommandHandler;
+import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
+
+/**
+ * @author Anarchy
+ */
+public class EventCommands implements IUserCommandHandler
+{
+ private static final int[] COMMAND_IDS =
+ {
+ 114, 115
+ };
+
+ @Override
+ public boolean useUserCommand(int id, L2PcInstance activeChar)
+ {
+ if (activeChar.isInOlympiadMode())
+ {
+ return false;
+ }
+
+ if (id == 114)
+ {
+ if (EventManager.getInstance().getCurrentEvent() == null || EventManager.getInstance().getCurrentEvent().getState() != EventState.REGISTERING)
+ return false;
+
+ EventCommons.getInstance().registerPlayer(activeChar, TvTEvent.class);
+ activeChar.sendMessage("You have registered successfully.");
+
+ }
+ else if (id == 115)
+ {
+ if (EventCommons.getInstance().getRegisteredPlayers().containsKey(activeChar))
+ EventCommons.getInstance().unregisterPlayer(activeChar,EventCommons.getInstance().getRegisteredPlayers().get(activeChar));
+
+ activeChar.sendMessage("You have canceled your registration.");
+ }
+
+ return true;
+ }
+
+ @Override
+ public int[] getUserCommandList()
+ {
+ return COMMAND_IDS;
+ }
+}
Index: java/net/sf/l2j/gameserver/events/EventTeam.java
===================================================================
--- java/net/sf/l2j/gameserver/events/EventTeam.java (wersja 0)
+++ java/net/sf/l2j/gameserver/events/EventTeam.java (wersja 0)
@@ -0,0 +1,128 @@
+/*
+ * 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
+ */
+package net.sf.l2j.gameserver.events;
+
+import java.util.List;
+
+import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
+import net.sf.l2j.gameserver.skills.AbnormalEffect;
+
+/**
+ * @author Anarchy
+ *
+ */
+public class EventTeam
+{
+ private final List<L2PcInstance> _players;
+ private final String _name;
+ private int _points;
+ private final int[] _respawnLoc;
+
+ public EventTeam(List<L2PcInstance> players, String name, int points, int[] respawnLoc)
+ {
+ _players = players;
+ _name = name;
+ _points = points;
+ _respawnLoc = respawnLoc;
+
+ for (L2PcInstance p : _players)
+ {
+ p.setEventTeam(this);
+ }
+ }
+
+ public void teleportTeam(int x, int y, int z, boolean sendMessage)
+ {
+ for (L2PcInstance p : _players)
+ {
+ p.teleToLocation(x, y, z, 1);
+ if (sendMessage)
+ p.sendMessage("You have been teleported.");
+ }
+ }
+
+ public void paralize(boolean val)
+ {
+ if (val)
+ {
+ for (L2PcInstance p : _players)
+ {
+ p.startAbnormalEffect(AbnormalEffect.ROOT);
+ p.setIsParalyzed(true);
+ }
+ }
+ else
+ {
+ for (L2PcInstance p : _players)
+ {
+ p.stopAbnormalEffect(AbnormalEffect.ROOT);
+ p.setIsParalyzed(false);
+ }
+ }
+ }
+
+ public void rewardTeam(int itemId, int count)
+ {
+ for (L2PcInstance p : _players)
+ {
+ p.addItem("Event Reward", itemId, count, null, true);
+ }
+ }
+
+ public void addPoints(int val)
+ {
+ _points += val;
+ }
+
+ public void removePoints(int val)
+ {
+ _points -= val;
+ }
+
+ public int getPoints()
+ {
+ return _points;
+ }
+
+ public int getRespawnX()
+ {
+ return _respawnLoc[0];
+ }
+
+ public int getRespawnY()
+ {
+ return _respawnLoc[1];
+ }
+
+ public int getRespawnZ()
+ {
+ return _respawnLoc[2];
+ }
+
+ public String getName()
+ {
+ return _name;
+ }
+
+ public List<L2PcInstance> getPlayers()
+ {
+ return _players;
+ }
+
+ public boolean containsPlayer(L2PcInstance p)
+ {
+ return _players.contains(p);
+ }
+}
Index: java/net/sf/l2j/gameserver/handler/usercommandhandlers/Escape.java
===================================================================
--- java/net/sf/l2j/gameserver/handler/usercommandhandlers/Escape.java (wersja 16)
+++ java/net/sf/l2j/gameserver/handler/usercommandhandlers/Escape.java (kopia robocza)
@@ -15,6 +15,7 @@
package net.sf.l2j.gameserver.handler.usercommandhandlers;

import net.sf.l2j.gameserver.datatables.SkillTable;
+import net.sf.l2j.gameserver.events.EventCommons;
import net.sf.l2j.gameserver.handler.IUserCommandHandler;
import net.sf.l2j.gameserver.instancemanager.GrandBossManager;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
@@ -31,7 +32,7 @@
@Override
public boolean useUserCommand(int id, L2PcInstance activeChar)
{
- if (activeChar.isCastingNow() || activeChar.isSitting() || activeChar.isMovementDisabled() || activeChar.isOutOfControl() || activeChar.isInOlympiadMode() || activeChar.inObserverMode() || activeChar.isFestivalParticipant() || activeChar.isInJail() || GrandBossManager.isInBossZone(activeChar))
+ if (activeChar.isCastingNow() || activeChar.isSitting() || activeChar.isMovementDisabled() || activeChar.isOutOfControl() || activeChar.isInOlympiadMode() || activeChar.inObserverMode() || activeChar.isFestivalParticipant() || activeChar.isInJail() || GrandBossManager.isInBossZone(activeChar)|| !EventCommons.getInstance().canUnstuck(activeChar))
{
activeChar.sendMessage("Your current state doesn't allow you to use the /unstuck command.");
return false;
Index: java/net/sf/l2j/gameserver/events/EventManager.java
===================================================================
--- java/net/sf/l2j/gameserver/events/EventManager.java (wersja 0)
+++ java/net/sf/l2j/gameserver/events/EventManager.java (wersja 0)
@@ -0,0 +1,144 @@
+/*
+ * 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
+ */
+package net.sf.l2j.gameserver.events;
+
+import java.util.Calendar;
+import java.util.HashMap;
+import java.util.logging.Logger;
+
+import net.sf.l2j.Config;
+import net.sf.l2j.gameserver.ThreadPoolManager;
+
+/**
+ * @author Anarchy
+ *
+ * Just a class that will handle the registering and loading of events.
+ */
+public final class EventManager
+{
+ private static final Logger _log = Logger.getLogger(EventManager.class.getName());
+
+ public static int TVT = 1;
+
+ private int _events = 0;
+ public HashMap<IEvent, Integer> _eventsTasks;
+ private IEvent _currentEvent = null;
+
+ public static EventManager getInstance()
+ {
+ return SingletonHolder._instance;
+ }
+
+ protected EventManager()
+ {
+ _eventsTasks = new HashMap<>();
+
+ if (Config.ALLOW_TVT_EVENT)
+ registerEvent(Config.TVT_EVENT_TIMES, TvTEvent.class);
+
+ _log.info("Loaded " + _events + " events.");
+ }
+
+ public void registerEvent(final String times, final Class<?> type)
+ {
+ _events++;
+
+ int i = 0;
+
+ for (String time : times.split(","))
+ {
+ final IEvent event;
+
+ try
+ {
+ event = (IEvent)type.newInstance();
+ }
+ catch (InstantiationException | IllegalAccessException ea)
+ {
+ ea.printStackTrace();
+ return;
+ }
+
+ String[] timeArray = time.split(":");
+ int hours = Integer.parseInt(timeArray[0]);
+ int minutes = Integer.parseInt(timeArray[1]);
+
+ Calendar cld = Calendar.getInstance();
+
+ cld.set(Calendar.HOUR_OF_DAY, hours);
+ cld.set(Calendar.MINUTE, minutes);
+ cld.set(Calendar.SECOND, 0);
+
+ if (cld.getTimeInMillis() - System.currentTimeMillis() < 0)
+ {
+ cld.set(Calendar.DAY_OF_MONTH, cld.get(Calendar.DAY_OF_MONTH) + 1);
+ cld.set(Calendar.HOUR_OF_DAY, hours);
+ cld.set(Calendar.MINUTE, minutes);
+ cld.set(Calendar.SECOND, 0);
+ }
+
+ if (cld.getTimeInMillis() - System.currentTimeMillis() > 0)
+ {
+ i++;
+
+ if (_eventsTasks.containsKey(event))
+ {
+	 _eventsTasks.remove(event);
+	 _eventsTasks.put(event, i);
+ }
+ else
+ {
+	 _eventsTasks.put(event, i);
+ }
+
+ ThreadPoolManager.getInstance().scheduleGeneral(new Runnable()
+ {
+	 @Override
+	 public void run()
+	 {
+	 if (_eventsTasks.get(event) == 1)
+	 {
+	 _eventsTasks.remove(event);
+	 registerEvent(times, type);
+	 }
+	 else
+	 {
+	 int t = _eventsTasks.get(event);
+	 _eventsTasks.remove(event);
+	 _eventsTasks.put(event, t--);
+	 }
+	
+	 event.runEvent();
+	 }
+ }, cld.getTimeInMillis() - System.currentTimeMillis());
+ }
+ }
+ }
+
+ public IEvent getCurrentEvent()
+ {
+ return _currentEvent;
+ }
+
+ public void setCurrentEvent(IEvent event)
+ {
+ _currentEvent = event;
+ }
+
+ private static class SingletonHolder
+ {
+ protected static final EventManager _instance = new EventManager();
+ }
+}
Index: java/net/sf/l2j/gameserver/handler/UserCommandHandler.java
===================================================================
--- java/net/sf/l2j/gameserver/handler/UserCommandHandler.java (wersja 16)
+++ java/net/sf/l2j/gameserver/handler/UserCommandHandler.java (kopia robocza)
@@ -26,6 +26,7 @@
import net.sf.l2j.gameserver.handler.usercommandhandlers.ClanWarsList;
import net.sf.l2j.gameserver.handler.usercommandhandlers.DisMount;
import net.sf.l2j.gameserver.handler.usercommandhandlers.Escape;
+import net.sf.l2j.gameserver.handler.usercommandhandlers.EventCommands;
import net.sf.l2j.gameserver.handler.usercommandhandlers.Loc;
import net.sf.l2j.gameserver.handler.usercommandhandlers.Mount;
import net.sf.l2j.gameserver.handler.usercommandhandlers.OlympiadStat;
@@ -58,6 +59,7 @@
registerUserCommandHandler(new ChannelLeave());
registerUserCommandHandler(new ChannelDelete());
registerUserCommandHandler(new ChannelListUpdate());
+ registerUserCommandHandler(new EventCommands());
}

public void registerUserCommandHandler(IUserCommandHandler handler)
Index: java/net/sf/l2j/gameserver/handler/skillhandlers/GetPlayer.java
===================================================================
--- java/net/sf/l2j/gameserver/handler/skillhandlers/GetPlayer.java (wersja 16)
+++ java/net/sf/l2j/gameserver/handler/skillhandlers/GetPlayer.java (kopia robocza)
@@ -14,6 +14,7 @@
*/
package net.sf.l2j.gameserver.handler.skillhandlers;

+import net.sf.l2j.gameserver.events.EventCommons;
import net.sf.l2j.gameserver.handler.ISkillHandler;
import net.sf.l2j.gameserver.model.L2Object;
import net.sf.l2j.gameserver.model.L2Skill;
@@ -43,6 +44,9 @@
if (victim == null || victim.isAlikeDead())
	 continue;

+ if (!EventCommons.getInstance().canRecall(victim))
+ continue;
+
victim.teleToLocation(activeChar.getX(), activeChar.getY(), activeChar.getZ(), 0);
}
}
[*]

  • 0
Posted (edited)

Αυτό το κομμάτι το έχεις κάνει?

 

Index: java/net/sf/l2j/gameserver/handler/UserCommandHandler.java
===================================================================
--- java/net/sf/l2j/gameserver/handler/UserCommandHandler.java (wersja 16)
+++ java/net/sf/l2j/gameserver/handler/UserCommandHandler.java (kopia robocza)
@@ -26,6 +26,7 @@
import net.sf.l2j.gameserver.handler.usercommandhandlers.ClanWarsList;
import net.sf.l2j.gameserver.handler.usercommandhandlers.DisMount;
import net.sf.l2j.gameserver.handler.usercommandhandlers.Escape;
+import net.sf.l2j.gameserver.handler.usercommandhandlers.EventCommands;
import net.sf.l2j.gameserver.handler.usercommandhandlers.Loc;
import net.sf.l2j.gameserver.handler.usercommandhandlers.Mount;
import net.sf.l2j.gameserver.handler.usercommandhandlers.OlympiadStat;
@@ -58,6 +59,7 @@
registerUserCommandHandler(new ChannelLeave());
registerUserCommandHandler(new ChannelDelete());
registerUserCommandHandler(new ChannelListUpdate());
+ registerUserCommandHandler(new EventCommands());
}
Edited by 'Baggos'
  • 0
Posted (edited)

http://www.maxcheaters.com/topic/172697-tvt-event/

 

I have no idea what did you said, but client part probably.. :D

Do not work the /join or /leave.

Everything is ok but this commands no. :P

 

This one(SweeTs code) is better code Anuvor... Give a try here...

Edited by 'Baggos'
  • 0
Posted

 

Αυτό το κομμάτι το έχεις κάνει?

Index: java/net/sf/l2j/gameserver/handler/UserCommandHandler.java
===================================================================
--- java/net/sf/l2j/gameserver/handler/UserCommandHandler.java (wersja 16)
+++ java/net/sf/l2j/gameserver/handler/UserCommandHandler.java (kopia robocza)
@@ -26,6 +26,7 @@
import net.sf.l2j.gameserver.handler.usercommandhandlers.ClanWarsList;
import net.sf.l2j.gameserver.handler.usercommandhandlers.DisMount;
import net.sf.l2j.gameserver.handler.usercommandhandlers.Escape;
+import net.sf.l2j.gameserver.handler.usercommandhandlers.EventCommands;
import net.sf.l2j.gameserver.handler.usercommandhandlers.Loc;
import net.sf.l2j.gameserver.handler.usercommandhandlers.Mount;
import net.sf.l2j.gameserver.handler.usercommandhandlers.OlympiadStat;
@@ -58,6 +59,7 @@
registerUserCommandHandler(new ChannelLeave());
registerUserCommandHandler(new ChannelDelete());
registerUserCommandHandler(new ChannelListUpdate());
+ registerUserCommandHandler(new EventCommands());
}

nai to exo 

  • 0
Posted (edited)

nai to exo 

Πήγαινε στο System σου, κάνε edit με το FileEdit το αρχείο commandname-e.dat και βάλε 2 νέες γραμμές με τα ID:

114 115

Edited by 'Baggos'
  • 0
Posted

Πήγαινε στο System σου, κάνε edit με το FileEdit το αρχείο commandname-e.dat και βάλε 2 νέες γραμμές με τα ID:

114 115

 

yparxoun idi ti na kano?7fSj4Rg.png

  • 0
Posted

Πήγαινε στον κώδικα EventCommands.java και κάνε αλλαγή στα παρακάτω:

 

public class EventCommands implements IUserCommandHandler
{
       private static final int[] COMMAND_IDS =
       {
-               114, 115
+               115, 116
       };
 
 
-               if (id == 114)
+               if (id == 115)
               {
                       if (EventManager.getInstance().getCurrentEvent() == null || EventManager.getInstance().getCurrentEvent().getState() != EventState.REGISTERING)
                               return false;
                    
                       EventCommons.getInstance().registerPlayer(activeChar, TvTEvent.class);
                       activeChar.sendMessage("You have registered successfully.");

               }
-               else if (id == 115)
+               else if (id == 116)
               {
                       if (EventCommons.getInstance().getRegisteredPlayers().containsKey(activeChar))

 

Και στο commandname-e.dat σου να γίνει έτσι:

 

116 115 join
117 116 leave

 

Για δοκίμασε...

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

    • who have this files? or info about cached packets?
    • Hi maxcheaters, i am trying to bring back an old server ( L2Revenge) but with my own ideas, i only liked how it was and made the gameplay based on that just putting my own ideas.   So practicly is a PTS C6 with an extender that i work lately    Exp / SP is x45 adena is x200 and drops x5  so safe is +3 , max is unlimited and rate is 65% for both mage and fighter weapons I created a system that you can get on the levels the gear you need based on farm but for S grade theres a little farm to get some armor Tokens to unseal them. As you remember L2Revenge had olympiad / Tournament gear. So people abused them and had S grades that way just couldnt enchant them. So i made to be wearable only if u are nobless. That way i cancel this "exploit".  The server gives opportunity to solo and clans , epic gear ( epic weapons) or armors can be bought with raid tokens and you can craft them or get them with various ways Regarding Buffs: 24 buff slots no changes asked. Cov/Pony/Cat , siren - renewal - champion out of buffer , if u make the char as main roll u can use them or use the offline buffer system to sell them and get adenas. their time is 20 mins so that way we see again the " 1kk for rene/siren" or rec = song  Regarding armors: they are dropped ( parts ) from 3 only raids , rest lvl 76+ raids drop recipes , so crafting takes place (so if u are solo u can craft them )  there are 3 armors each armor have its purpose: Revenge Armors - Example for light ( its a glass cannon , high damage , less atk speed and less pdef ) - they mostly modify your base stats, so useable on sieges or off tank chars Titanium Armors - A little bit of balanced of all  Epic Armor - Daggers/Enchanters/Healers mostly but u can always combine your build    Regarding weapons: can be dropped from Monastery of Silence monsters or get them from NPC with Raid Tokens its like a 5% better than S grades and the S/A Activates at +4  Regarding retail gear: you need to unseal only S grades for a great amount of armor tokens all weapons on any grade need Soul crystals that are sold for adenas  stage 13 crystals are expensive or dropped from raids Regarding fun: There is a squash event a Fortress vs Fortress pvp event an RB Event at weekends and from Monday - Wednesday Tournament ( Olympiad is closed monday/tuesday/wednesday)  at tournament you can practice 1vs1 like olympiad but pots/ss allowed , gear allowed is only olympiad or tournament , each win of match gives u 5 glits at 100 glits u can be hero till restart Olympiad works the same way regarding gear allowance but works only thursday to friday and you win monthly hero Auction with Raid Tokens is activated Event medals from events can be exchanged for various items i try to make the oldschool with a little bit of new school systems Not planing to open it anytime soon as i still develop and make corrections to extender , looking forward to meet people that actually played this and are hyped to help on testing / development   P.S is c5 into interlude ( theres no akamanah / nor PI aswell , no lifestones) forgot to mention
    • Announcement – L2 Relic Server Opening Soon! We’re excited to share some great news! Our team has been working hard behind the scenes, and we’re nearly ready to launch our brand-new Lineage server this winter. The journey is just about to begin – so prepare yourselves! Gather your friends, sharpen your skills, and get ready to experience an epic adventure. Stay tuned for more details, updates, and the official beta-opening date. This winter, history will be written once again… are you ready?   Developed by https://dailyhost.eu/
    • 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:
  • 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