Removal of unused custom_teleports table.
This commit is contained in:
@@ -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;
|
|
||||||
@@ -553,9 +553,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -595,7 +595,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2128,7 +2127,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
@@ -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;
|
|
||||||
@@ -561,9 +561,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -605,7 +605,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2152,7 +2151,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
@@ -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;
|
|
||||||
@@ -561,9 +561,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -605,7 +605,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2165,7 +2164,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
@@ -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;
|
|
||||||
@@ -561,9 +561,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -593,7 +593,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2145,7 +2144,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
@@ -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;
|
|
||||||
@@ -561,9 +561,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -588,7 +588,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2136,7 +2135,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
@@ -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;
|
|
||||||
@@ -561,9 +561,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -588,7 +588,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2143,7 +2142,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
@@ -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;
|
|
||||||
@@ -561,9 +561,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -589,7 +589,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2181,7 +2180,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
@@ -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;
|
|
||||||
@@ -562,9 +562,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -593,7 +593,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2202,7 +2201,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
@@ -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;
|
|
||||||
@@ -557,9 +557,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -582,7 +582,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2179,7 +2178,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
-12
@@ -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;
|
|
||||||
@@ -557,9 +557,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -583,7 +583,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2199,7 +2198,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
@@ -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;
|
|
||||||
@@ -563,9 +563,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -588,7 +588,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2432,7 +2431,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
-12
@@ -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;
|
|
||||||
@@ -563,9 +563,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -588,7 +588,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2674,7 +2673,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
@@ -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;
|
|
||||||
@@ -563,9 +563,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -588,7 +588,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2704,7 +2703,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
@@ -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;
|
|
||||||
@@ -557,9 +557,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -602,7 +602,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2059,7 +2058,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
-12
@@ -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;
|
|
||||||
@@ -557,9 +557,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -612,7 +612,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2088,7 +2087,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
-12
@@ -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;
|
|
||||||
@@ -557,9 +557,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -612,7 +612,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2091,7 +2090,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
@@ -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;
|
|
||||||
@@ -557,9 +557,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -612,7 +612,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2095,7 +2094,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
-12
@@ -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;
|
|
||||||
@@ -557,9 +557,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -612,7 +612,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2095,7 +2094,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
-12
@@ -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;
|
|
||||||
@@ -557,9 +557,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -612,7 +612,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2095,7 +2094,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
-12
@@ -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;
|
|
||||||
@@ -557,9 +557,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -613,7 +613,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2107,7 +2106,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
-12
@@ -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;
|
|
||||||
@@ -557,9 +557,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -612,7 +612,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2103,7 +2102,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
-12
@@ -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;
|
|
||||||
@@ -557,9 +557,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -612,7 +612,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2106,7 +2105,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
@@ -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;
|
|
||||||
@@ -589,9 +589,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -619,7 +619,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2106,7 +2105,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
-12
@@ -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;
|
|
||||||
@@ -557,9 +557,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -618,7 +618,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2152,7 +2151,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
-12
@@ -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;
|
|
||||||
@@ -557,9 +557,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -621,7 +621,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2258,7 +2257,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
-12
@@ -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;
|
|
||||||
@@ -563,9 +563,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -625,7 +625,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2310,7 +2309,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
-12
@@ -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;
|
|
||||||
@@ -563,9 +563,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -625,7 +625,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2310,7 +2309,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
-12
@@ -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;
|
|
||||||
@@ -563,9 +563,6 @@ JailDisableTransaction = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
CustomNpcData = True
|
CustomNpcData = True
|
||||||
|
|
||||||
# Default: False
|
|
||||||
CustomTeleportTable = True
|
|
||||||
|
|
||||||
# Default: False
|
# Default: False
|
||||||
CustomSkillsLoad = True
|
CustomSkillsLoad = True
|
||||||
|
|
||||||
|
|||||||
@@ -625,7 +625,6 @@ public class Config
|
|||||||
public static boolean JAIL_DISABLE_CHAT;
|
public static boolean JAIL_DISABLE_CHAT;
|
||||||
public static boolean JAIL_DISABLE_TRANSACTION;
|
public static boolean JAIL_DISABLE_TRANSACTION;
|
||||||
public static boolean CUSTOM_NPC_DATA;
|
public static boolean CUSTOM_NPC_DATA;
|
||||||
public static boolean CUSTOM_TELEPORT_TABLE;
|
|
||||||
public static boolean CUSTOM_SKILLS_LOAD;
|
public static boolean CUSTOM_SKILLS_LOAD;
|
||||||
public static boolean CUSTOM_ITEMS_LOAD;
|
public static boolean CUSTOM_ITEMS_LOAD;
|
||||||
public static boolean CUSTOM_MULTISELL_LOAD;
|
public static boolean CUSTOM_MULTISELL_LOAD;
|
||||||
@@ -2302,7 +2301,6 @@ public class Config
|
|||||||
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
JAIL_DISABLE_CHAT = generalConfig.getBoolean("JailDisableChat", true);
|
||||||
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
JAIL_DISABLE_TRANSACTION = generalConfig.getBoolean("JailDisableTransaction", false);
|
||||||
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
CUSTOM_NPC_DATA = generalConfig.getBoolean("CustomNpcData", false);
|
||||||
CUSTOM_TELEPORT_TABLE = generalConfig.getBoolean("CustomTeleportTable", false);
|
|
||||||
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
CUSTOM_SKILLS_LOAD = generalConfig.getBoolean("CustomSkillsLoad", false);
|
||||||
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
CUSTOM_ITEMS_LOAD = generalConfig.getBoolean("CustomItemsLoad", false);
|
||||||
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
CUSTOM_MULTISELL_LOAD = generalConfig.getBoolean("CustomMultisellLoad", false);
|
||||||
|
|||||||
Reference in New Issue
Block a user