diff --git a/l2jserver2-gameserver/distribution/sql/sql/character.sql b/l2jserver2-gameserver/distribution/sql/sql/character.sql index c5f07747a..5298c7448 100644 --- a/l2jserver2-gameserver/distribution/sql/sql/character.sql +++ b/l2jserver2-gameserver/distribution/sql/sql/character.sql @@ -23,11 +23,4 @@ CREATE TABLE IF NOT EXISTS `character` ( KEY `account_id` (`account_id`), KEY `name` (`name`), KEY `clan_id` (`clan_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; --- --- Temporary sample data --- - -INSERT INTO `character` (`character_id`, `account_id`, `clan_id`, `name`, `race`, `class`, `sex`, `level`, `experience`, `sp`, `point_x`, `point_y`, `point_z`, `point_angle`, `appearance_hair_style`, `appearance_hair_color`, `apperance_face`) VALUES -(268437456, 'rogiel', NULL, 'Rogiel', 'HUMAN', 'HUMAN_FIGHTER', 'MALE', 1, 0, 0, -71338, 258271, -3104, 0, 'STYLE_B', 'COLOR_B', 'FACE_B'), -(268437457, 'rogiel2', NULL, 'Rogiel2', 'HUMAN', 'HUMAN_FIGHTER', 'MALE', 0, 0, 0, 0, 0, 0, 0, 'STYLE_A', 'COLOR_A', 'FACE_A'); +) ENGINE=MyISAM DEFAULT CHARSET=latin1; \ No newline at end of file diff --git a/l2jserver2-gameserver/distribution/sql/sql/item.sql b/l2jserver2-gameserver/distribution/sql/sql/item.sql index 069ba3078..2bf9dabe9 100644 --- a/l2jserver2-gameserver/distribution/sql/sql/item.sql +++ b/l2jserver2-gameserver/distribution/sql/sql/item.sql @@ -11,13 +11,4 @@ CREATE TABLE IF NOT EXISTS `item` ( PRIMARY KEY (`item_id`), KEY `character_id` (`character_id`), KEY `template_id` (`template_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - --- --- Temporary sample data --- - -INSERT INTO `item` (`item_id`, `template_id`, `character_id`, `location`, `paperdoll`, `count`, `coord_x`, `coord_y`, `coord_z`) VALUES -(268635457, 57, 268437456, 'INVENTORY', NULL, 200000000, NULL, NULL, NULL), -(268635459, 57, NULL, 'GROUND', NULL, 100, 147459, 24434, -1992), -(268635460, 1, 268437456, 'INVENTORY', NULL, 1, NULL, NULL, NULL); \ No newline at end of file +) ENGINE=MyISAM DEFAULT CHARSET=latin1; \ No newline at end of file diff --git a/l2jserver2-gameserver/distribution/sql/sql/sample/sample_data.sql b/l2jserver2-gameserver/distribution/sql/sql/sample/sample_data.sql new file mode 100644 index 000000000..807c7986c --- /dev/null +++ b/l2jserver2-gameserver/distribution/sql/sql/sample/sample_data.sql @@ -0,0 +1,10 @@ +INSERT INTO `character` (`character_id`, `account_id`, `clan_id`, `name`, `race`, `class`, `sex`, `level`, `experience`, `sp`, `point_x`, `point_y`, `point_z`, `point_angle`, `appearance_hair_style`, `appearance_hair_color`, `apperance_face`) VALUES +(268437456, 'rogiel', NULL, 'Rogiel', 'HUMAN', 'HUMAN_FIGHTER', 'MALE', 1, 0, 0, -71338, 258271, -3104, 0, 'STYLE_B', 'COLOR_B', 'FACE_B'), +(268437457, 'rogiel2', NULL, 'Rogiel2', 'HUMAN', 'HUMAN_FIGHTER', 'MALE', 0, 0, 0, 0, 0, 0, 0, 'STYLE_A', 'COLOR_A', 'FACE_A'); + + +INSERT INTO `item` (`item_id`, `template_id`, `character_id`, `location`, `paperdoll`, `count`, `coord_x`, `coord_y`, `coord_z`) VALUES +(268635457, 57, 268437456, 'INVENTORY', NULL, 200000000, NULL, NULL, NULL), +(268635459, 57, NULL, 'GROUND', NULL, 100, 147459, 24434, -1992), +(268635460, 1, 268437456, 'INVENTORY', NULL, 1, NULL, NULL, NULL); +