From f7faf20254a120a90b8ee8eb55a284a6351aabc3 Mon Sep 17 00:00:00 2001 From: Carbenium Date: Mon, 22 Jun 2020 16:10:34 +0200 Subject: Battlefields: Move BF scripts out of game This commit introduces the usual script interface for battlefields. --- sql/updates/world/3.3.5/2020_06_xx_xx_world.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 sql/updates/world/3.3.5/2020_06_xx_xx_world.sql (limited to 'sql') diff --git a/sql/updates/world/3.3.5/2020_06_xx_xx_world.sql b/sql/updates/world/3.3.5/2020_06_xx_xx_world.sql new file mode 100644 index 00000000000..a34ebb739ea --- /dev/null +++ b/sql/updates/world/3.3.5/2020_06_xx_xx_world.sql @@ -0,0 +1,8 @@ +DROP TABLE IF EXISTS `battlefield_template`; +CREATE TABLE `battlefield_template` ( + `TypeId` tinyint unsigned not null, + `ScriptName` varchar(64) default '' not null, + `comment` text null +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +INSERT INTO `battlefield_template` (`TypeId`, `ScriptName`, `comment`) VALUES (1, 'battlefield_wg', null); -- cgit v1.2.3