diff --git a/L2J_Mobius_01.0_Ertheia/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_01.0_Ertheia/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_01.0_Ertheia/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_01.0_Ertheia/dist/game/config/General.ini b/L2J_Mobius_01.0_Ertheia/dist/game/config/General.ini index d8bfd7f2f8..8d474732fa 100644 --- a/L2J_Mobius_01.0_Ertheia/dist/game/config/General.ini +++ b/L2J_Mobius_01.0_Ertheia/dist/game/config/General.ini @@ -553,9 +553,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/Config.java b/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/Config.java index ac3208c222..97d1a2a27c 100644 --- a/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/Config.java @@ -595,7 +595,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2128,7 +2127,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_02.5_Underground/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_02.5_Underground/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_02.5_Underground/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_02.5_Underground/dist/game/config/General.ini b/L2J_Mobius_02.5_Underground/dist/game/config/General.ini index c0b1a79ff1..3d3d8c2c2c 100644 --- a/L2J_Mobius_02.5_Underground/dist/game/config/General.ini +++ b/L2J_Mobius_02.5_Underground/dist/game/config/General.ini @@ -561,9 +561,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_02.5_Underground/java/org/l2jmobius/Config.java b/L2J_Mobius_02.5_Underground/java/org/l2jmobius/Config.java index 5618a23342..477ee80118 100644 --- a/L2J_Mobius_02.5_Underground/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_02.5_Underground/java/org/l2jmobius/Config.java @@ -605,7 +605,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2152,7 +2151,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_03.0_Helios/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_03.0_Helios/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_03.0_Helios/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_03.0_Helios/dist/game/config/General.ini b/L2J_Mobius_03.0_Helios/dist/game/config/General.ini index c0b1a79ff1..3d3d8c2c2c 100644 --- a/L2J_Mobius_03.0_Helios/dist/game/config/General.ini +++ b/L2J_Mobius_03.0_Helios/dist/game/config/General.ini @@ -561,9 +561,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_03.0_Helios/java/org/l2jmobius/Config.java b/L2J_Mobius_03.0_Helios/java/org/l2jmobius/Config.java index 3cf53a5bf8..54ccacbb65 100644 --- a/L2J_Mobius_03.0_Helios/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_03.0_Helios/java/org/l2jmobius/Config.java @@ -605,7 +605,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2165,7 +2164,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_04.0_GrandCrusade/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_04.0_GrandCrusade/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_04.0_GrandCrusade/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_04.0_GrandCrusade/dist/game/config/General.ini b/L2J_Mobius_04.0_GrandCrusade/dist/game/config/General.ini index c0b1a79ff1..3d3d8c2c2c 100644 --- a/L2J_Mobius_04.0_GrandCrusade/dist/game/config/General.ini +++ b/L2J_Mobius_04.0_GrandCrusade/dist/game/config/General.ini @@ -561,9 +561,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/Config.java b/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/Config.java index 679c0e16d7..8117eb4b30 100644 --- a/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/Config.java @@ -593,7 +593,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2145,7 +2144,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_05.0_Salvation/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_05.0_Salvation/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_05.0_Salvation/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_05.0_Salvation/dist/game/config/General.ini b/L2J_Mobius_05.0_Salvation/dist/game/config/General.ini index c0b1a79ff1..3d3d8c2c2c 100644 --- a/L2J_Mobius_05.0_Salvation/dist/game/config/General.ini +++ b/L2J_Mobius_05.0_Salvation/dist/game/config/General.ini @@ -561,9 +561,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/Config.java b/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/Config.java index 0008f1465a..eb8de98d00 100644 --- a/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/Config.java @@ -588,7 +588,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2136,7 +2135,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_05.5_EtinasFate/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_05.5_EtinasFate/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_05.5_EtinasFate/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_05.5_EtinasFate/dist/game/config/General.ini b/L2J_Mobius_05.5_EtinasFate/dist/game/config/General.ini index c0b1a79ff1..3d3d8c2c2c 100644 --- a/L2J_Mobius_05.5_EtinasFate/dist/game/config/General.ini +++ b/L2J_Mobius_05.5_EtinasFate/dist/game/config/General.ini @@ -561,9 +561,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/Config.java b/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/Config.java index e4d9693b55..468d302257 100644 --- a/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/Config.java @@ -588,7 +588,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2143,7 +2142,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_06.0_Fafurion/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_06.0_Fafurion/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_06.0_Fafurion/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_06.0_Fafurion/dist/game/config/General.ini b/L2J_Mobius_06.0_Fafurion/dist/game/config/General.ini index c0b1a79ff1..3d3d8c2c2c 100644 --- a/L2J_Mobius_06.0_Fafurion/dist/game/config/General.ini +++ b/L2J_Mobius_06.0_Fafurion/dist/game/config/General.ini @@ -561,9 +561,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/Config.java b/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/Config.java index 3b5dd20e98..308604e7af 100644 --- a/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/Config.java @@ -589,7 +589,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2181,7 +2180,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_07.0_PreludeOfWar/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_07.0_PreludeOfWar/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_07.0_PreludeOfWar/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/General.ini b/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/General.ini index 4d0f79fea5..5ba9deca57 100644 --- a/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/General.ini +++ b/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/General.ini @@ -562,9 +562,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/Config.java b/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/Config.java index 2be4d991aa..70e6cd0709 100644 --- a/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/Config.java @@ -593,7 +593,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2202,7 +2201,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_08.2_Homunculus/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_08.2_Homunculus/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_08.2_Homunculus/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_08.2_Homunculus/dist/game/config/General.ini b/L2J_Mobius_08.2_Homunculus/dist/game/config/General.ini index d94865dfe5..22f5d41720 100644 --- a/L2J_Mobius_08.2_Homunculus/dist/game/config/General.ini +++ b/L2J_Mobius_08.2_Homunculus/dist/game/config/General.ini @@ -557,9 +557,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/Config.java b/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/Config.java index 37cea09554..e6b395ba2d 100644 --- a/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/Config.java @@ -582,7 +582,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2179,7 +2178,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/General.ini b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/General.ini index 4a4d6c60a5..2ca6125184 100644 --- a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/General.ini +++ b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/General.ini @@ -557,9 +557,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/Config.java b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/Config.java index 4a2ade5d52..53991bad80 100644 --- a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/Config.java @@ -583,7 +583,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2199,7 +2198,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_10.3_MasterClass/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_10.3_MasterClass/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_10.3_MasterClass/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_10.3_MasterClass/dist/game/config/General.ini b/L2J_Mobius_10.3_MasterClass/dist/game/config/General.ini index 9a63f1d990..102f4e9e90 100644 --- a/L2J_Mobius_10.3_MasterClass/dist/game/config/General.ini +++ b/L2J_Mobius_10.3_MasterClass/dist/game/config/General.ini @@ -563,9 +563,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_10.3_MasterClass/java/org/l2jmobius/Config.java b/L2J_Mobius_10.3_MasterClass/java/org/l2jmobius/Config.java index d689b6b8e4..07ab34f41d 100644 --- a/L2J_Mobius_10.3_MasterClass/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_10.3_MasterClass/java/org/l2jmobius/Config.java @@ -588,7 +588,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2432,7 +2431,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_11.1_TheSourceOfFlame/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_11.1_TheSourceOfFlame/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index d7f658b250..0000000000 --- a/L2J_Mobius_11.1_TheSourceOfFlame/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_11.1_TheSourceOfFlame/dist/game/config/General.ini b/L2J_Mobius_11.1_TheSourceOfFlame/dist/game/config/General.ini index e31a947ce7..0de662cb0a 100644 --- a/L2J_Mobius_11.1_TheSourceOfFlame/dist/game/config/General.ini +++ b/L2J_Mobius_11.1_TheSourceOfFlame/dist/game/config/General.ini @@ -563,9 +563,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_11.1_TheSourceOfFlame/java/org/l2jmobius/Config.java b/L2J_Mobius_11.1_TheSourceOfFlame/java/org/l2jmobius/Config.java index b7541531e7..57fefd38c2 100644 --- a/L2J_Mobius_11.1_TheSourceOfFlame/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_11.1_TheSourceOfFlame/java/org/l2jmobius/Config.java @@ -588,7 +588,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2674,7 +2673,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_11.2_AgeOfMagic/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_11.2_AgeOfMagic/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index d7f658b250..0000000000 --- a/L2J_Mobius_11.2_AgeOfMagic/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_11.2_AgeOfMagic/dist/game/config/General.ini b/L2J_Mobius_11.2_AgeOfMagic/dist/game/config/General.ini index e31a947ce7..0de662cb0a 100644 --- a/L2J_Mobius_11.2_AgeOfMagic/dist/game/config/General.ini +++ b/L2J_Mobius_11.2_AgeOfMagic/dist/game/config/General.ini @@ -563,9 +563,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_11.2_AgeOfMagic/java/org/l2jmobius/Config.java b/L2J_Mobius_11.2_AgeOfMagic/java/org/l2jmobius/Config.java index c87a5505c1..ac8284ce3f 100644 --- a/L2J_Mobius_11.2_AgeOfMagic/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_11.2_AgeOfMagic/java/org/l2jmobius/Config.java @@ -588,7 +588,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2704,7 +2703,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_Classic_1.0/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_Classic_1.0/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_Classic_1.0/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_Classic_1.0/dist/game/config/General.ini b/L2J_Mobius_Classic_1.0/dist/game/config/General.ini index cdf4025591..e1d04d39c1 100644 --- a/L2J_Mobius_Classic_1.0/dist/game/config/General.ini +++ b/L2J_Mobius_Classic_1.0/dist/game/config/General.ini @@ -557,9 +557,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_Classic_1.0/java/org/l2jmobius/Config.java b/L2J_Mobius_Classic_1.0/java/org/l2jmobius/Config.java index 7a866367b1..323e66007f 100644 --- a/L2J_Mobius_Classic_1.0/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Classic_1.0/java/org/l2jmobius/Config.java @@ -602,7 +602,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2059,7 +2058,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_Classic_1.5_AgeOfSplendor/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_Classic_1.5_AgeOfSplendor/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_Classic_1.5_AgeOfSplendor/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_Classic_1.5_AgeOfSplendor/dist/game/config/General.ini b/L2J_Mobius_Classic_1.5_AgeOfSplendor/dist/game/config/General.ini index a7ed33df05..c0029858ce 100644 --- a/L2J_Mobius_Classic_1.5_AgeOfSplendor/dist/game/config/General.ini +++ b/L2J_Mobius_Classic_1.5_AgeOfSplendor/dist/game/config/General.ini @@ -557,9 +557,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_Classic_1.5_AgeOfSplendor/java/org/l2jmobius/Config.java b/L2J_Mobius_Classic_1.5_AgeOfSplendor/java/org/l2jmobius/Config.java index d9d6838cf6..99afecc0c1 100644 --- a/L2J_Mobius_Classic_1.5_AgeOfSplendor/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Classic_1.5_AgeOfSplendor/java/org/l2jmobius/Config.java @@ -612,7 +612,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2088,7 +2087,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_Classic_2.0_Saviors/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_Classic_2.0_Saviors/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_Classic_2.0_Saviors/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/General.ini b/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/General.ini index 67f5a8ac70..e8ef36a189 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/General.ini +++ b/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/General.ini @@ -557,9 +557,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/Config.java b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/Config.java index ebb8307e41..f7362c4f14 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/Config.java @@ -612,7 +612,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2091,7 +2090,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_Classic_2.5_Zaken/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_Classic_2.5_Zaken/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_Classic_2.5_Zaken/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_Classic_2.5_Zaken/dist/game/config/General.ini b/L2J_Mobius_Classic_2.5_Zaken/dist/game/config/General.ini index 67f5a8ac70..e8ef36a189 100644 --- a/L2J_Mobius_Classic_2.5_Zaken/dist/game/config/General.ini +++ b/L2J_Mobius_Classic_2.5_Zaken/dist/game/config/General.ini @@ -557,9 +557,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_Classic_2.5_Zaken/java/org/l2jmobius/Config.java b/L2J_Mobius_Classic_2.5_Zaken/java/org/l2jmobius/Config.java index 752cd69250..98a345adb4 100644 --- a/L2J_Mobius_Classic_2.5_Zaken/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Classic_2.5_Zaken/java/org/l2jmobius/Config.java @@ -612,7 +612,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2095,7 +2094,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_Classic_2.7_Antharas/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_Classic_2.7_Antharas/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_Classic_2.7_Antharas/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_Classic_2.7_Antharas/dist/game/config/General.ini b/L2J_Mobius_Classic_2.7_Antharas/dist/game/config/General.ini index 67f5a8ac70..e8ef36a189 100644 --- a/L2J_Mobius_Classic_2.7_Antharas/dist/game/config/General.ini +++ b/L2J_Mobius_Classic_2.7_Antharas/dist/game/config/General.ini @@ -557,9 +557,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_Classic_2.7_Antharas/java/org/l2jmobius/Config.java b/L2J_Mobius_Classic_2.7_Antharas/java/org/l2jmobius/Config.java index 752cd69250..98a345adb4 100644 --- a/L2J_Mobius_Classic_2.7_Antharas/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Classic_2.7_Antharas/java/org/l2jmobius/Config.java @@ -612,7 +612,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2095,7 +2094,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_Classic_2.8_SevenSigns/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_Classic_2.8_SevenSigns/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_Classic_2.8_SevenSigns/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_Classic_2.8_SevenSigns/dist/game/config/General.ini b/L2J_Mobius_Classic_2.8_SevenSigns/dist/game/config/General.ini index 67f5a8ac70..e8ef36a189 100644 --- a/L2J_Mobius_Classic_2.8_SevenSigns/dist/game/config/General.ini +++ b/L2J_Mobius_Classic_2.8_SevenSigns/dist/game/config/General.ini @@ -557,9 +557,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_Classic_2.8_SevenSigns/java/org/l2jmobius/Config.java b/L2J_Mobius_Classic_2.8_SevenSigns/java/org/l2jmobius/Config.java index 752cd69250..98a345adb4 100644 --- a/L2J_Mobius_Classic_2.8_SevenSigns/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Classic_2.8_SevenSigns/java/org/l2jmobius/Config.java @@ -612,7 +612,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2095,7 +2094,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_Classic_2.9.5_Saviors/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_Classic_2.9.5_Saviors/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_Classic_2.9.5_Saviors/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_Classic_2.9.5_Saviors/dist/game/config/General.ini b/L2J_Mobius_Classic_2.9.5_Saviors/dist/game/config/General.ini index 7ee02faa87..a023274166 100644 --- a/L2J_Mobius_Classic_2.9.5_Saviors/dist/game/config/General.ini +++ b/L2J_Mobius_Classic_2.9.5_Saviors/dist/game/config/General.ini @@ -557,9 +557,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_Classic_2.9.5_Saviors/java/org/l2jmobius/Config.java b/L2J_Mobius_Classic_2.9.5_Saviors/java/org/l2jmobius/Config.java index 4675aaf878..05d01c9bdf 100644 --- a/L2J_Mobius_Classic_2.9.5_Saviors/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Classic_2.9.5_Saviors/java/org/l2jmobius/Config.java @@ -613,7 +613,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2107,7 +2106,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_Classic_2.9_SecretOfEmpire/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_Classic_2.9_SecretOfEmpire/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_Classic_2.9_SecretOfEmpire/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_Classic_2.9_SecretOfEmpire/dist/game/config/General.ini b/L2J_Mobius_Classic_2.9_SecretOfEmpire/dist/game/config/General.ini index 67f5a8ac70..e8ef36a189 100644 --- a/L2J_Mobius_Classic_2.9_SecretOfEmpire/dist/game/config/General.ini +++ b/L2J_Mobius_Classic_2.9_SecretOfEmpire/dist/game/config/General.ini @@ -557,9 +557,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_Classic_2.9_SecretOfEmpire/java/org/l2jmobius/Config.java b/L2J_Mobius_Classic_2.9_SecretOfEmpire/java/org/l2jmobius/Config.java index c5534343c9..f9c7d8289f 100644 --- a/L2J_Mobius_Classic_2.9_SecretOfEmpire/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Classic_2.9_SecretOfEmpire/java/org/l2jmobius/Config.java @@ -612,7 +612,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2103,7 +2102,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_Classic_3.0_TheKamael/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_Classic_3.0_TheKamael/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_Classic_3.0_TheKamael/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_Classic_3.0_TheKamael/dist/game/config/General.ini b/L2J_Mobius_Classic_3.0_TheKamael/dist/game/config/General.ini index 7ee02faa87..a023274166 100644 --- a/L2J_Mobius_Classic_3.0_TheKamael/dist/game/config/General.ini +++ b/L2J_Mobius_Classic_3.0_TheKamael/dist/game/config/General.ini @@ -557,9 +557,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/Config.java b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/Config.java index 660be98cd1..3704d8b622 100644 --- a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/Config.java @@ -612,7 +612,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2106,7 +2105,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_Classic_Interlude/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_Classic_Interlude/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_Classic_Interlude/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_Classic_Interlude/dist/game/config/General.ini b/L2J_Mobius_Classic_Interlude/dist/game/config/General.ini index 4bfb377378..d9f7961a88 100644 --- a/L2J_Mobius_Classic_Interlude/dist/game/config/General.ini +++ b/L2J_Mobius_Classic_Interlude/dist/game/config/General.ini @@ -589,9 +589,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/Config.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/Config.java index 28006fc7fd..439930e0e5 100644 --- a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/Config.java @@ -619,7 +619,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2106,7 +2105,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/General.ini b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/General.ini index 466b3250e7..ea2cbf7b9a 100644 --- a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/General.ini +++ b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/General.ini @@ -557,9 +557,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/Config.java b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/Config.java index 0a10b1f87f..cc0aec3808 100644 --- a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/Config.java @@ -618,7 +618,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2152,7 +2151,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_Essence_5.2_FrostLord/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_Essence_5.2_FrostLord/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_Essence_5.2_FrostLord/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_Essence_5.2_FrostLord/dist/game/config/General.ini b/L2J_Mobius_Essence_5.2_FrostLord/dist/game/config/General.ini index 7abc950b84..e971114e5f 100644 --- a/L2J_Mobius_Essence_5.2_FrostLord/dist/game/config/General.ini +++ b/L2J_Mobius_Essence_5.2_FrostLord/dist/game/config/General.ini @@ -557,9 +557,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/Config.java b/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/Config.java index 17033b96cf..af16f62990 100644 --- a/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/Config.java @@ -621,7 +621,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2258,7 +2257,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_Essence_6.3_Crusader/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_Essence_6.3_Crusader/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index 9dd08290ac..0000000000 --- a/L2J_Mobius_Essence_6.3_Crusader/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_Essence_6.3_Crusader/dist/game/config/General.ini b/L2J_Mobius_Essence_6.3_Crusader/dist/game/config/General.ini index da888acbe4..8cda4a6ba4 100644 --- a/L2J_Mobius_Essence_6.3_Crusader/dist/game/config/General.ini +++ b/L2J_Mobius_Essence_6.3_Crusader/dist/game/config/General.ini @@ -563,9 +563,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_Essence_6.3_Crusader/java/org/l2jmobius/Config.java b/L2J_Mobius_Essence_6.3_Crusader/java/org/l2jmobius/Config.java index 382dd5f6c1..e002517eac 100644 --- a/L2J_Mobius_Essence_6.3_Crusader/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Essence_6.3_Crusader/java/org/l2jmobius/Config.java @@ -625,7 +625,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2310,7 +2309,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_Essence_7.1_Assassin/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_Essence_7.1_Assassin/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index d7f658b250..0000000000 --- a/L2J_Mobius_Essence_7.1_Assassin/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_Essence_7.1_Assassin/dist/game/config/General.ini b/L2J_Mobius_Essence_7.1_Assassin/dist/game/config/General.ini index da888acbe4..8cda4a6ba4 100644 --- a/L2J_Mobius_Essence_7.1_Assassin/dist/game/config/General.ini +++ b/L2J_Mobius_Essence_7.1_Assassin/dist/game/config/General.ini @@ -563,9 +563,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_Essence_7.1_Assassin/java/org/l2jmobius/Config.java b/L2J_Mobius_Essence_7.1_Assassin/java/org/l2jmobius/Config.java index 1fcc09cc06..2e44c75311 100644 --- a/L2J_Mobius_Essence_7.1_Assassin/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Essence_7.1_Assassin/java/org/l2jmobius/Config.java @@ -625,7 +625,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2310,7 +2309,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false); diff --git a/L2J_Mobius_Essence_7.2_AztacansTemple/dist/db_installer/sql/game/custom_teleport.sql b/L2J_Mobius_Essence_7.2_AztacansTemple/dist/db_installer/sql/game/custom_teleport.sql deleted file mode 100644 index d7f658b250..0000000000 --- a/L2J_Mobius_Essence_7.2_AztacansTemple/dist/db_installer/sql/game/custom_teleport.sql +++ /dev/null @@ -1,12 +0,0 @@ -DROP TABLE IF EXISTS `custom_teleport`; -CREATE TABLE IF NOT EXISTS `custom_teleport` ( - `Description` varchar(75) DEFAULT NULL, - `id` mediumint(7) unsigned NOT NULL DEFAULT '0', - `loc_x` mediumint(6) DEFAULT NULL, - `loc_y` mediumint(6) DEFAULT NULL, - `loc_z` mediumint(6) DEFAULT NULL, - `price` int(10) unsigned DEFAULT NULL, - `fornoble` tinyint(1) NOT NULL DEFAULT '0', - `itemId` smallint(5) unsigned NOT NULL DEFAULT '57', - PRIMARY KEY (`id`) -) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file diff --git a/L2J_Mobius_Essence_7.2_AztacansTemple/dist/game/config/General.ini b/L2J_Mobius_Essence_7.2_AztacansTemple/dist/game/config/General.ini index da888acbe4..8cda4a6ba4 100644 --- a/L2J_Mobius_Essence_7.2_AztacansTemple/dist/game/config/General.ini +++ b/L2J_Mobius_Essence_7.2_AztacansTemple/dist/game/config/General.ini @@ -563,9 +563,6 @@ JailDisableTransaction = False # Default: False CustomNpcData = True -# Default: False -CustomTeleportTable = True - # Default: False CustomSkillsLoad = True diff --git a/L2J_Mobius_Essence_7.2_AztacansTemple/java/org/l2jmobius/Config.java b/L2J_Mobius_Essence_7.2_AztacansTemple/java/org/l2jmobius/Config.java index c2d33b338f..5c260a35fd 100644 --- a/L2J_Mobius_Essence_7.2_AztacansTemple/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Essence_7.2_AztacansTemple/java/org/l2jmobius/Config.java @@ -625,7 +625,6 @@ public class Config public static boolean JAIL_DISABLE_CHAT; public static boolean JAIL_DISABLE_TRANSACTION; public static boolean CUSTOM_NPC_DATA; - public static boolean CUSTOM_TELEPORT_TABLE; public static boolean CUSTOM_SKILLS_LOAD; public static boolean CUSTOM_ITEMS_LOAD; public static boolean CUSTOM_MULTISELL_LOAD; @@ -2302,7 +2301,6 @@ public class Config JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true); JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false); CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false); - CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false); CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false); CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false); CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);