From 8fdb4899ac07289be52557680856e4e7a4c836b7 Mon Sep 17 00:00:00 2001
From: MobiusDevelopment <8391001+MobiusDevelopment@users.noreply.github.com>
Date: Thu, 28 Oct 2021 21:26:33 +0000
Subject: [PATCH] Removal of hardcoded events and addition of player
isOnCustomEvent methods.
---
.../dist/db_installer/sql/game/ctf.sql | 28 -
.../dist/db_installer/sql/game/ctf_teams.sql | 21 -
.../dist/db_installer/sql/game/custom_npc.sql | 7 +-
.../dist/db_installer/sql/game/dm.sql | 31 -
.../dist/db_installer/sql/game/pkkills.sql | 9 -
.../dist/db_installer/sql/game/tvt.sql | 30 -
.../dist/db_installer/sql/game/tvt_teams.sql | 21 -
.../dist/db_installer/sql/game/vip.sql | 20 -
.../dist/game/config/AdminCommands.xml | 136 -
.../dist/game/config/custom/Other.ini | 41 -
.../dist/game/config/events/CtF.ini | 51 -
.../dist/game/config/events/DM.ini | 52 -
.../dist/game/config/events/EventManager.ini | 19 -
.../dist/game/config/events/TW.ini | 48 -
.../dist/game/config/events/TvT.ini | 71 -
.../dist/game/config/main/General.ini | 12 -
.../dist/game/config/main/PvP.ini | 10 -
.../dist/game/data/html/admin/mods_menu.htm | 14 -
.../dist/game/data/html/custom/21042.htm | 20 -
.../dist/game/data/html/custom/bot.htm | 9 -
.../data/html/mods/TvTEventParticipation.htm | 7 -
.../html/mods/TvTEventRemoveParticipation.htm | 6 -
.../game/data/html/mods/TvTEventStatus.htm | 5 -
.../java/org/l2jmobius/Config.java | 204 -
.../org/l2jmobius/gameserver/GameServer.java | 24 -
.../handler/AdminCommandHandler.java | 12 -
.../handler/VoicedCommandHandler.java | 24 -
.../admincommandhandlers/AdminCTFEngine.java | 798 ----
.../admincommandhandlers/AdminDMEngine.java | 326 --
.../AdminEventEngine.java | 805 ----
.../admincommandhandlers/AdminTownWar.java | 197 -
.../admincommandhandlers/AdminTvTEngine.java | 474 ---
.../admincommandhandlers/AdminVIPEngine.java | 398 --
.../handler/itemhandlers/Potions.java | 43 +-
.../handler/itemhandlers/ScrollOfEscape.java | 26 +-
.../handler/itemhandlers/SummonItems.java | 23 +-
.../handler/skillhandlers/ClanGate.java | 2 +-
.../handler/skillhandlers/Recall.java | 8 +-
.../handler/skillhandlers/SummonFriend.java | 56 +-
.../handler/usercommandhandlers/Escape.java | 38 +-
.../usercommandhandlers/OfflineShop.java | 10 +-
.../handler/voicedcommandhandlers/CTFCmd.java | 174 -
.../handler/voicedcommandhandlers/DMCmd.java | 174 -
.../voicedcommandhandlers/FarmPvpCmd.java | 154 -
.../voicedcommandhandlers/OfflineShop.java | 10 +-
.../voicedcommandhandlers/StatsCmd.java | 8 +-
.../handler/voicedcommandhandlers/TvTCmd.java | 174 -
.../voicedcommandhandlers/Wedding.java | 41 +-
.../PrecautionaryRestartManager.java | 2 +-
.../instancemanager/events/CTF.java | 3283 ----------------
.../gameserver/instancemanager/events/DM.java | 2062 -----------
.../instancemanager/events/EventManager.java | 187 -
.../instancemanager/events/GameEvent.java | 358 --
.../instancemanager/events/TvT.java | 2777 --------------
.../instancemanager/events/VIP.java | 903 -----
.../org/l2jmobius/gameserver/model/Radar.java | 2 +-
.../org/l2jmobius/gameserver/model/Skill.java | 82 +-
.../gameserver/model/actor/Attackable.java | 5 -
.../gameserver/model/actor/Creature.java | 114 +-
.../gameserver/model/actor/Playable.java | 9 +-
.../gameserver/model/actor/Summon.java | 6 +
.../model/actor/instance/MonsterInstance.java | 8 +-
.../model/actor/instance/NpcInstance.java | 105 +-
.../actor/instance/ObservationInstance.java | 4 +-
.../instance/OlympiadManagerInstance.java | 8 +-
.../model/actor/instance/PlayerInstance.java | 699 +---
.../actor/instance/VillageMasterInstance.java | 31 +-
.../model/actor/stat/PlayerStat.java | 10 -
.../gameserver/model/olympiad/Olympiad.java | 5 +-
.../gameserver/network/GameClient.java | 53 -
.../network/clientpackets/AttackRequest.java | 42 +-
.../network/clientpackets/EnterWorld.java | 28 -
.../network/clientpackets/Logout.java | 10 +-
.../clientpackets/RequestActionUse.java | 7 +-
.../clientpackets/RequestBypassToServer.java | 98 -
.../clientpackets/RequestJoinParty.java | 17 +-
.../network/clientpackets/RequestRestart.java | 6 +-
.../clientpackets/RequestRestartPoint.java | 22 +-
.../clientpackets/RequestUnEquipItem.java | 6 -
.../network/clientpackets/TradeRequest.java | 14 -
.../network/clientpackets/UseItem.java | 11 +-
.../gameserver/network/serverpackets/Die.java | 5 +-
.../dist/db_installer/sql/game/ctf.sql | 28 -
.../dist/db_installer/sql/game/ctf_teams.sql | 21 -
.../dist/db_installer/sql/game/custom_npc.sql | 7 +-
.../dist/db_installer/sql/game/dm.sql | 31 -
.../dist/db_installer/sql/game/pkkills.sql | 9 -
.../dist/db_installer/sql/game/tvt.sql | 30 -
.../dist/db_installer/sql/game/tvt_teams.sql | 21 -
.../dist/db_installer/sql/game/vip.sql | 20 -
.../dist/game/config/AdminCommands.xml | 136 -
.../dist/game/config/custom/Other.ini | 41 -
.../dist/game/config/events/CtF.ini | 54 -
.../dist/game/config/events/DM.ini | 55 -
.../dist/game/config/events/EventManager.ini | 19 -
.../dist/game/config/events/TW.ini | 48 -
.../dist/game/config/events/TvT.ini | 74 -
.../dist/game/config/main/General.ini | 12 -
.../dist/game/config/main/PvP.ini | 10 -
.../dist/game/data/html/admin/mods_menu.htm | 14 -
.../dist/game/data/html/custom/21042.htm | 20 -
.../dist/game/data/html/custom/bot.htm | 9 -
.../data/html/mods/TvTEventParticipation.htm | 7 -
.../html/mods/TvTEventRemoveParticipation.htm | 6 -
.../game/data/html/mods/TvTEventStatus.htm | 5 -
.../java/org/l2jmobius/Config.java | 210 --
.../org/l2jmobius/gameserver/GameServer.java | 24 -
.../handler/AdminCommandHandler.java | 12 -
.../handler/VoicedCommandHandler.java | 24 -
.../admincommandhandlers/AdminCTFEngine.java | 798 ----
.../admincommandhandlers/AdminDMEngine.java | 326 --
.../AdminEventEngine.java | 805 ----
.../admincommandhandlers/AdminTownWar.java | 197 -
.../admincommandhandlers/AdminTvTEngine.java | 474 ---
.../admincommandhandlers/AdminVIPEngine.java | 398 --
.../handler/itemhandlers/Potions.java | 43 +-
.../handler/itemhandlers/ScrollOfEscape.java | 26 +-
.../handler/itemhandlers/SummonItems.java | 29 +-
.../handler/skillhandlers/ClanGate.java | 2 +-
.../handler/skillhandlers/Recall.java | 8 +-
.../handler/skillhandlers/SummonFriend.java | 56 +-
.../handler/usercommandhandlers/Escape.java | 38 +-
.../usercommandhandlers/OfflineShop.java | 10 +-
.../handler/voicedcommandhandlers/CTFCmd.java | 179 -
.../handler/voicedcommandhandlers/DMCmd.java | 179 -
.../voicedcommandhandlers/FarmPvpCmd.java | 159 -
.../voicedcommandhandlers/OfflineShop.java | 10 +-
.../voicedcommandhandlers/StatsCmd.java | 8 +-
.../handler/voicedcommandhandlers/TvTCmd.java | 179 -
.../voicedcommandhandlers/Wedding.java | 41 +-
.../PrecautionaryRestartManager.java | 2 +-
.../instancemanager/events/CTF.java | 3287 -----------------
.../gameserver/instancemanager/events/DM.java | 2066 -----------
.../instancemanager/events/EventManager.java | 187 -
.../instancemanager/events/GameEvent.java | 358 --
.../instancemanager/events/TvT.java | 2781 --------------
.../instancemanager/events/VIP.java | 903 -----
.../gameserver/model/CursedWeapon.java | 19 -
.../org/l2jmobius/gameserver/model/Radar.java | 2 +-
.../org/l2jmobius/gameserver/model/Skill.java | 82 +-
.../gameserver/model/actor/Attackable.java | 5 -
.../gameserver/model/actor/Creature.java | 114 +-
.../gameserver/model/actor/Playable.java | 9 +-
.../gameserver/model/actor/Summon.java | 6 +
.../model/actor/instance/MonsterInstance.java | 8 +-
.../model/actor/instance/NpcInstance.java | 105 +-
.../actor/instance/ObservationInstance.java | 4 +-
.../instance/OlympiadManagerInstance.java | 8 +-
.../model/actor/instance/PlayerInstance.java | 704 +---
.../actor/instance/VillageMasterInstance.java | 31 +-
.../model/actor/stat/PlayerStat.java | 10 -
.../gameserver/model/olympiad/Olympiad.java | 5 +-
.../gameserver/network/GameClient.java | 53 -
.../network/clientpackets/AttackRequest.java | 42 +-
.../network/clientpackets/EnterWorld.java | 28 -
.../network/clientpackets/Logout.java | 10 +-
.../clientpackets/RequestActionUse.java | 7 +-
.../clientpackets/RequestBypassToServer.java | 98 -
.../clientpackets/RequestJoinParty.java | 17 +-
.../network/clientpackets/RequestRestart.java | 6 +-
.../clientpackets/RequestRestartPoint.java | 22 +-
.../clientpackets/RequestUnEquipItem.java | 6 -
.../network/clientpackets/TradeRequest.java | 14 -
.../network/clientpackets/UseItem.java | 11 +-
.../gameserver/network/serverpackets/Die.java | 5 +-
.../dist/game/config/AdminCommands.xml | 31 -
.../game/config/Custom/TeamVersusTeam.ini | 116 -
.../game/data/html/admin/help/l2jmod/tvt.htm | 23 -
.../dist/game/data/html/admin/mods_menu.htm | 15 -
.../html/mods/EventEngine/Participating.htm | 14 -
.../html/mods/EventEngine/Participation.htm | 14 -
.../game/data/instances/custom/coliseum.xml | 10 -
.../Hellbound/AI/NPC/Warpgate/Warpgate.java | 2 +-
.../TvT/TvTManager/CursedWeaponEquipped.html | 8 -
.../events/TvT/TvTManager/IPRestriction.html | 8 -
.../custom/events/TvT/TvTManager/Karma.html | 8 -
.../custom/events/TvT/TvTManager/Level.html | 8 -
.../events/TvT/TvTManager/Olympiad.html | 8 -
.../events/TvT/TvTManager/Participation.html | 13 -
.../TvT/TvTManager/ParticipationFee.html | 8 -
.../events/TvT/TvTManager/Registered.html | 8 -
.../TvT/TvTManager/RemoveParticipation.html | 13 -
.../custom/events/TvT/TvTManager/Reward.html | 9 -
.../custom/events/TvT/TvTManager/Status.html | 12 -
.../events/TvT/TvTManager/TeamsFull.html | 8 -
.../events/TvT/TvTManager/TvTManager.java | 220 --
.../events/TvT/TvTManager/Unregistered.html | 8 -
.../data/scripts/handlers/MasterHandler.java | 6 -
.../handlers/actionhandlers/NpcAction.java | 23 +-
.../actionhandlers/PlayerInstanceAction.java | 7 -
.../AdminEventEngine.java | 556 ---
.../admincommandhandlers/AdminTvTEvent.java | 109 -
.../handlers/bypasshandlers/EventEngine.java | 67 -
.../handlers/bypasshandlers/Observation.java | 4 +-
.../handlers/communityboard/HomeBoard.java | 2 +-
.../handlers/effecthandlers/CallPc.java | 3 +-
.../itemhandlers/ItemSkillsTemplate.java | 3 +-
.../handlers/itemhandlers/SummonItems.java | 3 +-
.../punishmenthandlers/JailHandler.java | 6 -
.../scripts/handlers/targethandlers/Clan.java | 3 +-
.../handlers/targethandlers/CorpseClan.java | 3 +-
.../handlers/targethandlers/PartyClan.java | 3 +-
.../handlers/usercommandhandlers/Unstuck.java | 4 +-
.../voicedcommandhandlers/Wedding.java | 24 +-
.../game/data/stats/npcs/custom/custom.xml | 6 -
.../java/org/l2jmobius/Config.java | 237 --
.../org/l2jmobius/gameserver/GameServer.java | 3 -
.../HandysBlockCheckerManager.java | 4 +-
.../PrecautionaryRestartManager.java | 2 +-
.../instancemanager/SellBuffsManager.java | 2 +-
.../instancemanager/events/GameEvent.java | 544 ---
.../instancemanager/events/TvTEvent.java | 1097 ------
.../events/TvTEventListener.java | 63 -
.../events/TvTEventPlayer.java | 57 -
.../instancemanager/events/TvTEventTeam.java | 153 -
.../events/TvTEventTeleporter.java | 137 -
.../instancemanager/events/TvTManager.java | 288 --
.../gameserver/model/actor/Attackable.java | 5 -
.../gameserver/model/actor/Creature.java | 4 +-
.../l2jmobius/gameserver/model/actor/Npc.java | 11 -
.../gameserver/model/actor/Summon.java | 6 +
.../model/actor/instance/CubicInstance.java | 9 +-
.../model/actor/instance/MonsterInstance.java | 4 +-
.../model/actor/instance/PlayerInstance.java | 123 +-
.../conditions/ConditionPlayerCallPc.java | 3 +-
.../conditions/ConditionPlayerCanEscape.java | 3 +-
.../conditions/ConditionPlayerTvTEvent.java | 47 -
.../gameserver/model/events/EventType.java | 12 +-
.../events/impl/events/OnTvTEventFinish.java | 32 -
.../events/impl/events/OnTvTEventKill.java | 60 -
.../events/OnTvTEventRegistrationStart.java | 32 -
.../events/impl/events/OnTvTEventStart.java | 32 -
.../model/holders/PlayerEventHolder.java | 97 -
.../model/instancezone/Instance.java | 2 +-
.../model/interfaces/IEventListener.java | 5 -
.../gameserver/model/olympiad/Olympiad.java | 8 +-
.../gameserver/model/skills/Skill.java | 3 +-
.../network/clientpackets/EnterWorld.java | 9 -
.../network/clientpackets/RequestRestart.java | 7 -
.../clientpackets/RequestRestartPoint.java | 15 +
.../gameserver/network/serverpackets/Die.java | 2 +-
.../gameserver/util/DocumentBase.java | 7 -
.../gameserver/util/OfflineTradeUtil.java | 2 +-
.../dist/game/config/AdminCommands.xml | 31 -
.../game/config/Custom/TeamVersusTeam.ini | 116 -
.../game/data/html/admin/help/l2jmod/tvt.htm | 23 -
.../dist/game/data/html/admin/mods_menu.htm | 15 -
.../html/mods/EventEngine/Participating.htm | 14 -
.../html/mods/EventEngine/Participation.htm | 14 -
.../game/data/instances/custom/coliseum.xml | 10 -
.../Hellbound/AI/NPC/Warpgate/Warpgate.java | 2 +-
.../TvT/TvTManager/CursedWeaponEquipped.html | 8 -
.../events/TvT/TvTManager/IPRestriction.html | 8 -
.../custom/events/TvT/TvTManager/Karma.html | 8 -
.../custom/events/TvT/TvTManager/Level.html | 8 -
.../events/TvT/TvTManager/Olympiad.html | 8 -
.../events/TvT/TvTManager/Participation.html | 13 -
.../TvT/TvTManager/ParticipationFee.html | 8 -
.../events/TvT/TvTManager/Registered.html | 8 -
.../TvT/TvTManager/RemoveParticipation.html | 13 -
.../custom/events/TvT/TvTManager/Reward.html | 9 -
.../custom/events/TvT/TvTManager/Status.html | 12 -
.../events/TvT/TvTManager/TeamsFull.html | 8 -
.../events/TvT/TvTManager/TvTManager.java | 220 --
.../events/TvT/TvTManager/Unregistered.html | 8 -
.../data/scripts/handlers/MasterHandler.java | 6 -
.../handlers/actionhandlers/NpcAction.java | 23 +-
.../actionhandlers/PlayerInstanceAction.java | 7 -
.../AdminEventEngine.java | 556 ---
.../admincommandhandlers/AdminTvTEvent.java | 109 -
.../handlers/bypasshandlers/EventEngine.java | 67 -
.../handlers/bypasshandlers/Observation.java | 4 +-
.../bypasshandlers/OlympiadObservation.java | 2 +-
.../handlers/communityboard/HomeBoard.java | 2 +-
.../handlers/effecthandlers/CallPc.java | 3 +-
.../itemhandlers/ItemSkillsTemplate.java | 3 +-
.../handlers/itemhandlers/SummonItems.java | 3 +-
.../punishmenthandlers/JailHandler.java | 6 -
.../scripts/handlers/targethandlers/Clan.java | 3 +-
.../handlers/targethandlers/CorpseClan.java | 3 +-
.../handlers/targethandlers/PartyClan.java | 3 +-
.../handlers/usercommandhandlers/Unstuck.java | 4 +-
.../voicedcommandhandlers/Wedding.java | 24 +-
.../game/data/stats/npcs/custom/custom.xml | 6 -
.../java/org/l2jmobius/Config.java | 237 --
.../org/l2jmobius/gameserver/GameServer.java | 3 -
.../HandysBlockCheckerManager.java | 4 +-
.../PrecautionaryRestartManager.java | 2 +-
.../instancemanager/SellBuffsManager.java | 2 +-
.../instancemanager/events/GameEvent.java | 544 ---
.../instancemanager/events/TvTEvent.java | 1097 ------
.../events/TvTEventListener.java | 63 -
.../events/TvTEventPlayer.java | 57 -
.../instancemanager/events/TvTEventTeam.java | 153 -
.../events/TvTEventTeleporter.java | 137 -
.../instancemanager/events/TvTManager.java | 288 --
.../gameserver/model/actor/Attackable.java | 5 -
.../gameserver/model/actor/Creature.java | 4 +-
.../l2jmobius/gameserver/model/actor/Npc.java | 11 -
.../gameserver/model/actor/Summon.java | 6 +
.../model/actor/instance/CubicInstance.java | 9 +-
.../model/actor/instance/MonsterInstance.java | 4 +-
.../model/actor/instance/PlayerInstance.java | 124 +-
.../conditions/ConditionPlayerCallPc.java | 3 +-
.../conditions/ConditionPlayerCanEscape.java | 3 +-
.../conditions/ConditionPlayerTvTEvent.java | 47 -
.../gameserver/model/events/EventType.java | 12 +-
.../events/impl/events/OnTvTEventFinish.java | 32 -
.../events/impl/events/OnTvTEventKill.java | 60 -
.../events/OnTvTEventRegistrationStart.java | 32 -
.../events/impl/events/OnTvTEventStart.java | 32 -
.../model/holders/PlayerEventHolder.java | 97 -
.../model/instancezone/Instance.java | 2 +-
.../model/interfaces/IEventListener.java | 5 -
.../model/olympiad/AbstractOlympiadGame.java | 3 +-
.../model/olympiad/OlympiadManager.java | 4 +-
.../gameserver/model/skills/Skill.java | 3 +-
.../network/clientpackets/EnterWorld.java | 9 -
.../network/clientpackets/RequestRestart.java | 7 -
.../clientpackets/RequestRestartPoint.java | 15 +
.../gameserver/network/serverpackets/Die.java | 2 +-
.../gameserver/util/DocumentBase.java | 7 -
.../gameserver/util/OfflineTradeUtil.java | 2 +-
323 files changed, 580 insertions(+), 40245 deletions(-)
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/ctf.sql
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/ctf_teams.sql
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/dm.sql
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/pkkills.sql
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/tvt.sql
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/tvt_teams.sql
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/vip.sql
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/dist/game/config/events/CtF.ini
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/dist/game/config/events/DM.ini
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/dist/game/config/events/EventManager.ini
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/dist/game/config/events/TW.ini
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/dist/game/config/events/TvT.ini
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/dist/game/data/html/custom/21042.htm
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/dist/game/data/html/custom/bot.htm
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/dist/game/data/html/mods/TvTEventParticipation.htm
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/dist/game/data/html/mods/TvTEventRemoveParticipation.htm
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/dist/game/data/html/mods/TvTEventStatus.htm
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/handler/admincommandhandlers/AdminCTFEngine.java
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/handler/admincommandhandlers/AdminDMEngine.java
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/handler/admincommandhandlers/AdminEventEngine.java
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/handler/admincommandhandlers/AdminTownWar.java
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/handler/admincommandhandlers/AdminTvTEngine.java
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/handler/admincommandhandlers/AdminVIPEngine.java
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/handler/voicedcommandhandlers/CTFCmd.java
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/handler/voicedcommandhandlers/DMCmd.java
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/handler/voicedcommandhandlers/FarmPvpCmd.java
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/handler/voicedcommandhandlers/TvTCmd.java
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/instancemanager/events/CTF.java
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/instancemanager/events/DM.java
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/instancemanager/events/EventManager.java
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/instancemanager/events/GameEvent.java
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/instancemanager/events/TvT.java
delete mode 100644 L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/instancemanager/events/VIP.java
delete mode 100644 L2J_Mobius_C6_Interlude/dist/db_installer/sql/game/ctf.sql
delete mode 100644 L2J_Mobius_C6_Interlude/dist/db_installer/sql/game/ctf_teams.sql
delete mode 100644 L2J_Mobius_C6_Interlude/dist/db_installer/sql/game/dm.sql
delete mode 100644 L2J_Mobius_C6_Interlude/dist/db_installer/sql/game/pkkills.sql
delete mode 100644 L2J_Mobius_C6_Interlude/dist/db_installer/sql/game/tvt.sql
delete mode 100644 L2J_Mobius_C6_Interlude/dist/db_installer/sql/game/tvt_teams.sql
delete mode 100644 L2J_Mobius_C6_Interlude/dist/db_installer/sql/game/vip.sql
delete mode 100644 L2J_Mobius_C6_Interlude/dist/game/config/events/CtF.ini
delete mode 100644 L2J_Mobius_C6_Interlude/dist/game/config/events/DM.ini
delete mode 100644 L2J_Mobius_C6_Interlude/dist/game/config/events/EventManager.ini
delete mode 100644 L2J_Mobius_C6_Interlude/dist/game/config/events/TW.ini
delete mode 100644 L2J_Mobius_C6_Interlude/dist/game/config/events/TvT.ini
delete mode 100644 L2J_Mobius_C6_Interlude/dist/game/data/html/custom/21042.htm
delete mode 100644 L2J_Mobius_C6_Interlude/dist/game/data/html/custom/bot.htm
delete mode 100644 L2J_Mobius_C6_Interlude/dist/game/data/html/mods/TvTEventParticipation.htm
delete mode 100644 L2J_Mobius_C6_Interlude/dist/game/data/html/mods/TvTEventRemoveParticipation.htm
delete mode 100644 L2J_Mobius_C6_Interlude/dist/game/data/html/mods/TvTEventStatus.htm
delete mode 100644 L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/handler/admincommandhandlers/AdminCTFEngine.java
delete mode 100644 L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/handler/admincommandhandlers/AdminDMEngine.java
delete mode 100644 L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/handler/admincommandhandlers/AdminEventEngine.java
delete mode 100644 L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/handler/admincommandhandlers/AdminTownWar.java
delete mode 100644 L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/handler/admincommandhandlers/AdminTvTEngine.java
delete mode 100644 L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/handler/admincommandhandlers/AdminVIPEngine.java
delete mode 100644 L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/handler/voicedcommandhandlers/CTFCmd.java
delete mode 100644 L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/handler/voicedcommandhandlers/DMCmd.java
delete mode 100644 L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/handler/voicedcommandhandlers/FarmPvpCmd.java
delete mode 100644 L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/handler/voicedcommandhandlers/TvTCmd.java
delete mode 100644 L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/instancemanager/events/CTF.java
delete mode 100644 L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/instancemanager/events/DM.java
delete mode 100644 L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/instancemanager/events/EventManager.java
delete mode 100644 L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/instancemanager/events/GameEvent.java
delete mode 100644 L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/instancemanager/events/TvT.java
delete mode 100644 L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/instancemanager/events/VIP.java
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/config/Custom/TeamVersusTeam.ini
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/html/admin/help/l2jmod/tvt.htm
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/html/mods/EventEngine/Participating.htm
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/html/mods/EventEngine/Participation.htm
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/instances/custom/coliseum.xml
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/custom/events/TvT/TvTManager/CursedWeaponEquipped.html
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/custom/events/TvT/TvTManager/IPRestriction.html
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/custom/events/TvT/TvTManager/Karma.html
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/custom/events/TvT/TvTManager/Level.html
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/custom/events/TvT/TvTManager/Olympiad.html
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/custom/events/TvT/TvTManager/Participation.html
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/custom/events/TvT/TvTManager/ParticipationFee.html
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/custom/events/TvT/TvTManager/Registered.html
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/custom/events/TvT/TvTManager/RemoveParticipation.html
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/custom/events/TvT/TvTManager/Reward.html
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/custom/events/TvT/TvTManager/Status.html
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/custom/events/TvT/TvTManager/TeamsFull.html
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/custom/events/TvT/TvTManager/TvTManager.java
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/custom/events/TvT/TvTManager/Unregistered.html
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/handlers/admincommandhandlers/AdminEventEngine.java
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/handlers/admincommandhandlers/AdminTvTEvent.java
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/handlers/bypasshandlers/EventEngine.java
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/instancemanager/events/GameEvent.java
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/instancemanager/events/TvTEvent.java
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/instancemanager/events/TvTEventListener.java
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/instancemanager/events/TvTEventPlayer.java
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/instancemanager/events/TvTEventTeam.java
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/instancemanager/events/TvTEventTeleporter.java
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/instancemanager/events/TvTManager.java
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/model/conditions/ConditionPlayerTvTEvent.java
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/model/events/impl/events/OnTvTEventFinish.java
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/model/events/impl/events/OnTvTEventKill.java
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/model/events/impl/events/OnTvTEventRegistrationStart.java
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/model/events/impl/events/OnTvTEventStart.java
delete mode 100644 L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/model/holders/PlayerEventHolder.java
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/config/Custom/TeamVersusTeam.ini
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/html/admin/help/l2jmod/tvt.htm
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/html/mods/EventEngine/Participating.htm
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/html/mods/EventEngine/Participation.htm
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/instances/custom/coliseum.xml
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/custom/events/TvT/TvTManager/CursedWeaponEquipped.html
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/custom/events/TvT/TvTManager/IPRestriction.html
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/custom/events/TvT/TvTManager/Karma.html
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/custom/events/TvT/TvTManager/Level.html
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/custom/events/TvT/TvTManager/Olympiad.html
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/custom/events/TvT/TvTManager/Participation.html
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/custom/events/TvT/TvTManager/ParticipationFee.html
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/custom/events/TvT/TvTManager/Registered.html
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/custom/events/TvT/TvTManager/RemoveParticipation.html
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/custom/events/TvT/TvTManager/Reward.html
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/custom/events/TvT/TvTManager/Status.html
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/custom/events/TvT/TvTManager/TeamsFull.html
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/custom/events/TvT/TvTManager/TvTManager.java
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/custom/events/TvT/TvTManager/Unregistered.html
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/handlers/admincommandhandlers/AdminEventEngine.java
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/handlers/admincommandhandlers/AdminTvTEvent.java
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/handlers/bypasshandlers/EventEngine.java
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/instancemanager/events/GameEvent.java
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/instancemanager/events/TvTEvent.java
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/instancemanager/events/TvTEventListener.java
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/instancemanager/events/TvTEventPlayer.java
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/instancemanager/events/TvTEventTeam.java
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/instancemanager/events/TvTEventTeleporter.java
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/instancemanager/events/TvTManager.java
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/conditions/ConditionPlayerTvTEvent.java
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/events/impl/events/OnTvTEventFinish.java
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/events/impl/events/OnTvTEventKill.java
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/events/impl/events/OnTvTEventRegistrationStart.java
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/events/impl/events/OnTvTEventStart.java
delete mode 100644 L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/holders/PlayerEventHolder.java
diff --git a/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/ctf.sql b/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/ctf.sql
deleted file mode 100644
index 1af2299a2f..0000000000
--- a/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/ctf.sql
+++ /dev/null
@@ -1,28 +0,0 @@
--- --------------------------------
--- Table structure for table `ctf`
--- Created by SqueezeD & Serpent for l2jfree
--- --------------------------------
-DROP TABLE IF EXISTS `ctf`;
-CREATE TABLE `ctf` (
- `eventName` varchar(255) NOT NULL default '',
- `eventDesc` varchar(255) NOT NULL default '',
- `joiningLocation` varchar(255) NOT NULL default '',
- `minLevel` int(4) NOT NULL default '0',
- `maxLevel` int(4) NOT NULL default '0',
- `npcId` int(8) NOT NULL default '0',
- `npcX` int(11) NOT NULL default '0',
- `npcY` int(11) NOT NULL default '0',
- `npcZ` int(11) NOT NULL default '0',
- `npcHeading` int(11) NOT NULL default '0',
- `rewardId` int(11) NOT NULL default '0',
- `rewardAmount` int(11) NOT NULL default '0',
- `teamsCount` int(4) NOT NULL default '0',
- `joinTime` int(11) NOT NULL default '0',
- `eventTime` int(11) NOT NULL default '0',
- `minPlayers` int(4) NOT NULL default '0',
- `maxPlayers` int(4) NOT NULL default '0',
- `delayForNextEvent` BIGINT NOT NULL DEFAULT '0'
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-
-INSERT INTO `ctf` (`eventName`, `eventDesc`, `joiningLocation`, `minLevel`, `maxLevel`, `npcId`, `npcX`, `npcY`, `npcZ`, `npcHeading`, `rewardId`, `rewardAmount`, `teamsCount`, `joinTime`, `eventTime`, `minPlayers`, `maxPlayers`, `delayForNextEvent`) VALUES
-('Capture the flag', 'CTF', 'Giran', 1, 80, 70011, 82580, 148552, -3468, 16972, 8752, 1, 2, 5, 5, 2, 50, 300000);
\ No newline at end of file
diff --git a/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/ctf_teams.sql b/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/ctf_teams.sql
deleted file mode 100644
index 8bdd8c4022..0000000000
--- a/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/ctf_teams.sql
+++ /dev/null
@@ -1,21 +0,0 @@
--- --------------------------------
--- Table structure for ctf_teams
--- Created by SqueezeD & Serpent for l2jfree
--- --------------------------------
-DROP TABLE IF EXISTS `ctf_teams`;
-CREATE TABLE `ctf_teams` (
- `teamId` int(4) NOT NULL default '0',
- `teamName` varchar(255) NOT NULL default '',
- `teamX` int(11) NOT NULL default '0',
- `teamY` int(11) NOT NULL default '0',
- `teamZ` int(11) NOT NULL default '0',
- `teamColor` int(11) NOT NULL default '0',
- `flagX` int(11) NOT NULL default '0',
- `flagY` int(11) NOT NULL default '0',
- `flagZ` int(11) NOT NULL default '0',
- PRIMARY KEY (`teamId`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-
-INSERT INTO `ctf_teams` (`teamId`, `teamName`, `teamX`, `teamY`, `teamZ`, `teamColor`, `flagX`, `flagY`, `flagZ`) VALUES
-(0, 'Blue', 87357, -145722, -1288, 16711680, 87358, -145979, -1291),
-(1, 'Red', 87351, -139984, -1536, 255, 87359, -139584, -1536);
\ No newline at end of file
diff --git a/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/custom_npc.sql b/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/custom_npc.sql
index d047c623f3..54a354432b 100644
--- a/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/custom_npc.sql
+++ b/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/custom_npc.sql
@@ -53,9 +53,4 @@ INSERT ignore INTO custom_npc values
('50000', '31228', 'Dom the Cat', '1', 'Merchant', '1', 'Monster.cat_the_cat', '9.00', '16.00', '70', 'male', 'Merchant', '40', '3862', '1493', '11.85', '2.78', '40', '43', '30', '21', '20', '10', '490', '10', '1335', '470', '780', '382', '278', '0', '333', '0', '0', '0', '88', '132', null, '0', '0', '0', 'LAST_HIT'),
('50007', '31324', 'Andromeda', '1', 'Wedding Manager', '1', 'NPC.a_casino_FDarkElf', '8.00', '23.00', '70', 'female', 'WeddingManager', '40', '3862', '1493', '500', '500', '40', '43', '30', '21', '20', '10', '0', '0', '9999', '9999', '999', '999', '278', '0', '333', '316', '0', '0', '55', '132', null, '0', '1', '0', 'LAST_HIT'),
('50008', '31228', 'Rex the Cat', '1', 'Buffer', '1', 'Monster.cat_the_cat', '9.00', '16.00', '70', 'male', 'SchemeBuffer', '40', '3862', '1493', '11.85', '2.78', '40', '43', '30', '21', '20', '10', '490', '10', '1335', '470', '780', '382', '278', '0', '333', '0', '0', '0', '88', '132', null, '0', '0', '0', 'LAST_HIT'),
-('55555', '22124', 'Totor', '1', 'Rebirth Manager', '1', 'NPC.a_fighterguild_master_FHuman', '11.00', '27.00', '83', 'male', 'Merchant', '40', '3862', '1493', '11.85', '2.78', '40', '43', '30', '21', '20', '10', '0', '0', '1314', '470', '780', '382', '278', '0', '333', '0', '0', '0', '88', '132', null, '0', '0', '0', 'LAST_HIT'),
-('70010', '31606', 'Catrina', '1', 'TvT Event Manager', '1', 'Monster2.queen_of_cat', '8.00', '15.00', '70', 'female', 'Npc', '40', '3862', '1493', '11.85', '2.78', '40', '43', '30', '21', '20', '10', '0', '0', '1314', '470', '780', '382', '278', '0', '333', '0', '0', '0', '28', '132', null, '0', '0', '0', 'LAST_HIT'),
-('70011', '31606', 'Catretta', '1', 'CTF Event Manager', '1', 'Monster2.queen_of_cat', '8.00', '15.00', '70', 'female', 'Npc', '40', '3862', '1493', '11.85', '2.78', '40', '43', '30', '21', '20', '10', '0', '0', '1314', '470', '780', '382', '278', '0', '333', '0', '0', '0', '28', '132', null, '0', '0', '0', 'LAST_HIT'),
-('70012', '31606', 'Catrosa', '1', 'VIP Join Manager', '1', 'Monster2.queen_of_cat', '8.00', '15.00', '70', 'female', 'Npc', '40', '3862', '1493', '11.85', '2.78', '40', '43', '30', '21', '20', '10', '0', '0', '1314', '470', '780', '382', '278', '0', '333', '0', '0', '0', '28', '132', null, '0', '0', '0', 'LAST_HIT'),
-('70013', '31606', 'Catrigna', '1', 'VIP End Manager', '1', 'Monster2.queen_of_cat', '8.00', '15.00', '70', 'female', 'Npc', '40', '3862', '1493', '11.85', '2.78', '40', '43', '30', '21', '20', '10', '0', '0', '1314', '470', '780', '382', '278', '0', '333', '0', '0', '0', '28', '132', null, '0', '0', '0', 'LAST_HIT'),
-('70014', '31606', 'Catrieta', '1', 'DM Event Manager', '1', 'Monster2.queen_of_cat', '8.00', '15.00', '70', 'female', 'Npc', '40', '3862', '1493', '11.85', '2.78', '40', '43', '30', '21', '20', '10', '0', '0', '1314', '470', '780', '382', '278', '0', '333', '0', '0', '0', '28', '132', null, '0', '0', '0', 'LAST_HIT');
+('55555', '22124', 'Totor', '1', 'Rebirth Manager', '1', 'NPC.a_fighterguild_master_FHuman', '11.00', '27.00', '83', 'male', 'Merchant', '40', '3862', '1493', '11.85', '2.78', '40', '43', '30', '21', '20', '10', '0', '0', '1314', '470', '780', '382', '278', '0', '333', '0', '0', '0', '88', '132', null, '0', '0', '0', 'LAST_HIT');
diff --git a/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/dm.sql b/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/dm.sql
deleted file mode 100644
index f0ebdd4275..0000000000
--- a/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/dm.sql
+++ /dev/null
@@ -1,31 +0,0 @@
--- --------------------------------
--- Table structure for table `dm`
--- Created by SqueezeD from l2jfree
--- --------------------------------
-DROP TABLE IF EXISTS `dm`;
-CREATE TABLE `dm` (
- `eventName` varchar(255) NOT NULL default '',
- `eventDesc` varchar(255) NOT NULL default '',
- `joiningLocation` varchar(255) NOT NULL default '',
- `minLevel` int(4) NOT NULL default '0',
- `maxLevel` int(4) NOT NULL default '0',
- `npcId` int(8) NOT NULL default '0',
- `npcX` int(11) NOT NULL default '0',
- `npcY` int(11) NOT NULL default '0',
- `npcZ` int(11) NOT NULL default '0',
- `npcHeading` int(11) NOT NULL DEFAULT '0',
- `rewardId` int(11) NOT NULL default '0',
- `rewardAmount` int(11) NOT NULL default '0',
- `joinTime` int(11) NOT NULL DEFAULT '0',
- `eventTime` int(11) NOT NULL DEFAULT '0',
- `minPlayers` int(11) NOT NULL DEFAULT '0',
- `maxPlayers` int(11) NOT NULL DEFAULT '0',
- `color` int(11) NOT NULL default '0',
- `playerX` int(11) NOT NULL default '0',
- `playerY` int(11) NOT NULL default '0',
- `playerZ` int(11) NOT NULL default '0',
- `delayForNextEvent` BIGINT NOT NULL DEFAULT '0'
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-
-INSERT INTO `dm` values
-('DM', 'A PvP Event', 'Giran', 1, 81, 70014, 82580, 148552, -3468, 1, 8752, 1, 2, 5, 2, 50, 2552550, 116615, 76200, -2729, 300000);
\ No newline at end of file
diff --git a/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/pkkills.sql b/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/pkkills.sql
deleted file mode 100644
index b8a707ed6b..0000000000
--- a/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/pkkills.sql
+++ /dev/null
@@ -1,9 +0,0 @@
-#----------------------------
-# Table structure for pkkills
-#----------------------------
-CREATE TABLE IF NOT EXISTS `pkkills` (
- `killerId` varchar(45) NOT NULL,
- `killedId` varchar(45) NOT NULL,
- `kills` decimal(11,0) NOT NULL,
- PRIMARY KEY (`killerId` ,`killedId` )
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
\ No newline at end of file
diff --git a/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/tvt.sql b/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/tvt.sql
deleted file mode 100644
index 517049c009..0000000000
--- a/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/tvt.sql
+++ /dev/null
@@ -1,30 +0,0 @@
--- -----------------------
--- Table structure for tvt
--- -----------------------
-DROP TABLE IF EXISTS `tvt`;
-CREATE TABLE `tvt` (
- `eventName` varchar(255) NOT NULL DEFAULT '',
- `eventDesc` varchar(255) NOT NULL DEFAULT '',
- `joiningLocation` varchar(255) NOT NULL DEFAULT '',
- `minLevel` int(4) NOT NULL DEFAULT '0',
- `maxLevel` int(4) NOT NULL DEFAULT '0',
- `npcId` int(8) NOT NULL DEFAULT '0',
- `npcX` int(11) NOT NULL DEFAULT '0',
- `npcY` int(11) NOT NULL DEFAULT '0',
- `npcZ` int(11) NOT NULL DEFAULT '0',
- `npcHeading` int(11) NOT NULL DEFAULT '0',
- `rewardId` int(11) NOT NULL DEFAULT '0',
- `rewardAmount` int(11) NOT NULL DEFAULT '0',
- `teamsCount` int(4) NOT NULL DEFAULT '0',
- `joinTime` int(11) NOT NULL DEFAULT '0',
- `eventTime` int(11) NOT NULL DEFAULT '0',
- `minPlayers` int(4) NOT NULL DEFAULT '0',
- `maxPlayers` int(4) NOT NULL DEFAULT '0',
- `delayForNextEvent` BIGINT NOT NULL DEFAULT '0'
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-
--- ---------------------
--- Records for table tvt
--- ---------------------
-INSERT INTO `tvt` values
-('TVT', 'A PvP Event', 'Giran', 1, 81, 70010, 82688, 148677, -3469, 0, 8752, 1, 2, 5, 5, 2, 50, 300000);
\ No newline at end of file
diff --git a/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/tvt_teams.sql b/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/tvt_teams.sql
deleted file mode 100644
index 6b75685944..0000000000
--- a/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/tvt_teams.sql
+++ /dev/null
@@ -1,21 +0,0 @@
--- -----------------------------
--- Table structure for tvt_teams
--- -----------------------------
-DROP TABLE IF EXISTS `tvt_teams`;
-CREATE TABLE `tvt_teams` (
- `teamId` int(4) NOT NULL DEFAULT '0',
- `teamName` varchar(255) NOT NULL DEFAULT '',
- `teamX` int(11) NOT NULL DEFAULT '0',
- `teamY` int(11) NOT NULL DEFAULT '0',
- `teamZ` int(11) NOT NULL DEFAULT '0',
- `teamColor` int(11) NOT NULL DEFAULT '0',
- PRIMARY KEY (`teamId`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-
--- ---------------------------
--- Records for table tvt_teams
--- ---------------------------
-INSERT INTO `tvt_teams` VALUES
-('0', 'Blue', '148179', '45841', '-3413', '16711680'),
-('1', 'Red', '150787', '45822', '-3413', '255'),
-('2', 'Green', '149496', '47826', '-3413', '26367');
\ No newline at end of file
diff --git a/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/vip.sql b/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/vip.sql
deleted file mode 100644
index 21e61a4276..0000000000
--- a/L2J_Mobius_C4_ScionsOfDestiny/dist/db_installer/sql/game/vip.sql
+++ /dev/null
@@ -1,20 +0,0 @@
-CREATE TABLE `VIPinfo` (
- `teamID` int(11) NOT NULL,
- `endx` int(11) NOT NULL,
- `endy` int(11) NOT NULL,
- `endz` int(11) NOT NULL,
- `startx` int(11) NOT NULL,
- `starty` int(11) NOT NULL,
- `startz` int(11) NOT NULL,
- PRIMARY KEY (`teamID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-
---
--- Dumping data for table `VIPinfo`
---
-
-INSERT INTO `VIPinfo` VALUES (1, -84583, 242788, -3735, -101319, 213272, -3100);
-INSERT INTO `VIPinfo` VALUES (2, 45714, 49703, -3065, 55782, 81597, -3610);
-INSERT INTO `VIPinfo` VALUES (3, 11249, 16890, -4667, -22732, 12586, -2996);
-INSERT INTO `VIPinfo` VALUES (4, -44737, -113582, -204, 27053, -88454, -3286);
-INSERT INTO `VIPinfo` VALUES (5, 116047, -179059, -1026, 121145, -215673, -3571);
diff --git a/L2J_Mobius_C4_ScionsOfDestiny/dist/game/config/AdminCommands.xml b/L2J_Mobius_C4_ScionsOfDestiny/dist/game/config/AdminCommands.xml
index ab28ff9240..f1dac1bc0f 100644
--- a/L2J_Mobius_C4_ScionsOfDestiny/dist/game/config/AdminCommands.xml
+++ b/L2J_Mobius_C4_ScionsOfDestiny/dist/game/config/AdminCommands.xml
@@ -67,43 +67,6 @@
- | - | - | - |
- | - | - | - |