Browse Source

BETA: SQL Updates, thanks MELERIX, blacksea.

Zoey76 13 years ago
parent
commit
30a14b23e5

+ 1 - 1
L2J_DataPack_BETA/dist/sql/game/character_norestart_zone_time.sql

@@ -2,4 +2,4 @@ CREATE TABLE IF NOT EXISTS `character_norestart_zone_time` (
   `charId` int(10) unsigned NOT NULL default '0',
   `time_limit` bigint(13) unsigned NOT NULL default '0',
   PRIMARY KEY  (`charId`)
-);
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;

+ 1 - 1
L2J_DataPack_BETA/dist/sql/game/hellbound_spawnlist.sql

@@ -9,7 +9,7 @@ CREATE TABLE `hellbound_spawnlist` (
   `respawn_random` mediumint(5) NOT NULL DEFAULT '0',
   `min_hellbound_level` tinyint(2) unsigned NOT NULL DEFAULT '0',
   `max_hellbound_level` tinyint(2) unsigned NOT NULL DEFAULT '0'
-);
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
 INSERT INTO `hellbound_spawnlist` VALUES
 -- NPC's

+ 2 - 2
L2J_DataPack_BETA/dist/sql/game/raidboss_spawnlist.sql

@@ -210,8 +210,8 @@ INSERT IGNORE INTO `raidboss_spawnlist` VALUES
 (25539,1,-17475,253163,-3432,0,43200,129600,0,2076371,9999), -- Typhoon (84)
 -- (25540,1,0,0,0,0,43200,129600,0,3524173,9999), -- Demon Prince (83) -- stats to be done
 -- (25542,1,0,0,0,0,43200,129600,0,3524173,9999), -- Ranku (83) -- stats to be done
-(25544,1,0,0,0,0,43200,129600,0,2682423,9999), -- Tully (83)
-(25603,1,0,0,0,0,43200,129600,0,2308600,9999), -- Darion (87)
+(25544,1,-12557,273901,-9000,0,43200,216000,0,2682423,4177), -- Tully (83)
+(25603,1,20886,244088,11062,0,43200,216000,0,2308600,4255), -- Darion (87)
 -- (25609,1,0,0,0,0,43200,129600,0,9999,9999), -- Epidos (?) -- stats to be done
 -- (25610,1,0,0,0,0,43200,129600,0,9999,9999), -- Epidos (?) -- stats to be done
 -- (25611,1,0,0,0,0,43200,129600,0,9999,9999), -- Epidos (?) -- stats to be done

+ 3 - 3
L2J_DataPack_BETA/dist/tools/gs_cleanup.sql

@@ -32,10 +32,11 @@ DROP TABLE IF EXISTS character_friends;
 DROP TABLE IF EXISTS character_hennas;
 DROP TABLE IF EXISTS character_instance_time;
 DROP TABLE IF EXISTS character_macroses;
-DROP TABLE IF EXISTS character_quest_global_data;
+DROP TABLE IF EXISTS character_norestart_zone_time;
 DROP TABLE IF EXISTS character_offline_trade_items;
 DROP TABLE IF EXISTS character_offline_trade;
 DROP TABLE IF EXISTS character_pet_skills_save;
+DROP TABLE IF EXISTS character_quest_global_data;
 DROP TABLE IF EXISTS character_quests;
 DROP TABLE IF EXISTS character_raid_points;
 DROP TABLE IF EXISTS character_recipebook;
@@ -80,9 +81,8 @@ DROP TABLE IF EXISTS games;
 DROP TABLE IF EXISTS global_tasks;
 DROP TABLE IF EXISTS global_variables;
 DROP TABLE IF EXISTS grandboss_data;
-DROP TABLE IF EXISTS hellbound_data;
-DROP TABLE IF EXISTS hellbound_spawnlist;
 DROP TABLE IF EXISTS grandboss_list;
+DROP TABLE IF EXISTS hellbound_spawnlist;
 DROP TABLE IF EXISTS helper_buff_list;
 DROP TABLE IF EXISTS henna;
 DROP TABLE IF EXISTS henna_trees;