собственно помогите создать sql запрос чтобы выдать определёный итем определёному чару
Вопросы косающие SQL запросов
|
SQL запрос на добавление итема определенному персонажу:
Код: INSERT INTO * FROM items WHERE item_id=(ид того что добавить) AND owner_id=(ИД перса, кому добавить) Уважаемые пользователи, в данной теме вы можете задать вопрос, на добавление в базу данных SQl запросов. В вашем посту, должен быть точный вопрос на конкретный sql запрос который вы хотите получить, что хотите чтобы дал запрос. Флуд запрещен. Неправильный вопрос, будет исправлен или удален. За флуд будет наказание. За не понимание будет доваться бан. Знающие посчитая нужным вам ответят. А также: Мануал по заливки sql запросов через навикат. http://forum.zone-game.info/showthread.php?t=5065 Полезные sql запросы. http://forum.zone-game.info/showthread.p...%E E%F1%FB Sql запросы который должен знать каждый админ. http://forum.zone-game.info/showthread.p...%E E%F1%FB Как адаптировать sql запрос под свой сервер. http://forum.zone-game.info/showthread.p...%E E%F1%FB Маленькие советы тем кто начинает. http://forum.zone-game.info/showthread.p...%E E%F1%FB Очиста БД от чаров не заходивших n-дней. http://forum.zone-game.info/showthread.p...%E E%F1%FB Ссылки по теме: Уроки по sql http://sql-ex.ru/ Работа с SQL – Запросы http://kbyte.ru/articles/ShowArticle.aspx?id=47&lang=ru Книги по sql: http://books.kulichki.com/index.php?book=sql
02-14-2010, 07:40 AM
(Сообщение последний раз редактировалось: 03-01-2014, 03:13 PM PROGRAMMATOR.)
partymixer Написал:Я хочу чтобы допустим все появлялись в топ ц сразу есть какой либо запрос sql? Искал, ну результатов не дало. Ответ: Код: REPLACE INTO char_templates VALUES (0, "здесь вписывать рассу то что добавляете", 0, 40, 43, 30, 21, 11, 25, 4, 72, 3, 47, 330, 213, 33, 44, 33, 115, 81900, тут данные локации-71338, 258271, -3104 , 0, "1.1", "1.188", 9, 23, "1.1", "1.188", 8, "23.5", 34, 26, 68, 4222, 5588); и так далее по анологии разбирайтесь, что где и к чему, последнии числа, как и сказал _NEO_PK: 5 последних это и будет ваш "топ грейд Ц" или вообще по кускам из имеющих топ-грейдов, собрать)))) это уже вам решать... Добавлено через 29 минут killerleft Написал:Как прописать команду чтобы поставить определённый шанс дропа у вещей в диапазоне допустип от 11605 до 12308 ?Ответ: был дан пользователем PROGRAMMATOR Написал:Изучите тему полезные sql запросы, там все есть. Добавлено через 1 час 3 минуты Richi Написал:1. Подскажите на примере, как правильно добавить дроп всем мобамОтвет: 1) Код: DELETE FROM `droplist` WHERE item_id = `ID итема` AND mob_id=`ID моба` 3) Код: UPDATE `npc` SET `hp` = `hp`+1000 WHERE `level` >= 10 AND `level` <= 40; Код: UPDATE `npc` SET `patk` = `patk`+20 WHERE `level` >= 10 AND `level` <= 40;
02-20-2010, 12:28 AM
1ый запрос выполняется,а второй нет.Подскжаите пожалуйста почему.
Это выполняющийся запрос. [CODE] DROP TABLE IF EXISTS `npc`; CREATE TABLE `npc`( `id` decimal(11,0) NOT NULL default '0', `idTemplate` int(11) NOT NULL default '0', `name` varchar(200) default NULL, `serverSideName` int(1) default '0', `title` varchar(45) default '', `serverSideTitle` int(1) default '0', `class` varchar(200) default NULL, `collision_radius` decimal(5,2) default NULL, `collision_height` decimal(5,2) default NULL, `level` decimal(2,0) default NULL, `sex` varchar(6) default NULL, `type` varchar(21) default NULL, `attackrange` int(11) default NULL, `hp` decimal(8,0) default NULL, `mp` decimal(6,0) default NULL, `hpreg` decimal(8,2) default NULL, `mpreg` decimal(5,2) default NULL, `str` decimal(7,0) default NULL, `con` decimal(7,0) default NULL, `dex` decimal(7,0) default NULL, `int` decimal(7,0) default NULL, `wit` decimal(7,0) default NULL, `men` decimal(7,0) default NULL, `exp` decimal(9,0) default NULL, `sp` decimal(8,0) default NULL, `patk` decimal(5,0) default NULL, `pdef` decimal(5,0) default NULL, `matk` decimal(5,0) default NULL, `mdef` decimal(5,0) default NULL, `atkspd` decimal(3,0) default NULL, `aggro` decimal(6,0) default NULL, `matkspd` decimal(4,0) default NULL, `rhand` decimal(5,0) default NULL, `lhand` decimal(5,0) default NULL, `armor` decimal(1,0) default NULL, `walkspd` decimal(3,0) default NULL, `runspd` decimal(3,0) default NULL, `faction_id` varchar(40) default NULL, `faction_range` decimal(4,0) default NULL, `isUndead` int(11) default 0, `absorb_level` decimal(2,0) default 0, `absorb_type` enum('FULL_PARTY','LAST_HIT','PARTY_ONE_RANDOM') DEFAULT 'LAST_HIT' NOT NULL, `ss` int(4) default 0, `bss` int(4) default 0, `ss_rate` int(3) default 0, `AI` varchar(8) default "fighter", `drop_herbs` enum('true','false') DEFAULT 'false' NOT NULL, PRIMARY KEY (`id`) ); INSERT INTO `npc` VALUES (1,1,'Thomas D. Turkey',0,'Misguided Holiday Scrooge',0,'Branch.br_crazy_turkey',22,32,85,'male','L2Npc',40,751,331,2.37,1.53,80,80,80,80,80,80,0,0,88,119,37,112,282,0,5000,0,0,0,30,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (2,2,'',0,'',0,'Branch.br_crazy_turkey',22,32,85,'male','L2Npc',40,751,331,2.37,1.53,80,80,80,80,80,80,0,0,88,119,37,112,282,0,5000,0,0,0,30,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (3,3,'Santa\'s Helper',0,'',0,'LineageNPCs.e_smith_master_MDwarf_m00',13,17,85,'male','L2Npc',40,751,331,2.37,1.53,80,80,80,80,80,80,0,0,88,119,37,112,282,0,5000,0,0,0,30,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (4,4,'Holiday Santa',0,'Happy Holidays!',0,'Branch.br_xmas08_santa',13,21,85,'male','L2Npc',40,751,331,2.37,1.53,80,80,80,80,80,80,0,0,88,119,37,112,282,0,5000,0,0,0,30,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (5,5,'Holiday Santa',0,'Happy Holidays!',0,'Branch.br_xmas08_santa',13,21,85,'male','L2Npc',40,751,331,2.37,1.53,80,80,80,80,80,80,0,0,88,119,37,112,282,0,5000,0,0,0,30,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (6,6,'Holiday Sled',0,'Happy Holidays!',0,'Branch.br_xmas08_sled',13,13,85,'male','L2Npc',40,751,331,2.37,1.53,80,80,80,80,80,80,0,0,88,119,37,112,282,0,5000,0,0,0,30,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (7,7,'Birthday Cake',0,'',0,'Branch.br_xmas08_sled',13,13,85,'male','L2Npc',40,751,331,2.37,1.53,80,80,80,80,80,80,0,0,88,119,37,112,282,0,5000,0,0,0,30,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1501,1501,'Majo Agathion',0,'',0,'LineageNPC2.Agathion_CL',13,11.5,70,'male','L2Pet',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1502,1502,'Gold Agathion',0,'',0,'LineageNPC2.Agathion_CL',13,11.5,70,'male','L2Pet',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1503,1503,'Black Agathion',0,'',0,'LineageNPC2.Agathion_CL',13,11.5,70,'male','L2Pet',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1504,1504,'Plaipitak Agathion',0,'',0,'LineageNPC2.Agathion_CL',13,11.5,70,'male','L2Pet',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1505,1505,'Baby Panda Agathion',0,'',0,'LineageNPC2.br_agathion_bpanda',13,11.5,70,'male','L2Pet',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1506,1506,'Bamboo Panda Agathion',0,'',0,'LineageNPC2.br_agathion_mpanda',13,11.5,70,'male','L2Pet',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1507,1507,'Sexy Panda Agathion',0,'',0,'LineageNPC2.br_agathion_wpanda',13,11.5,70,'male','L2Pet',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1508,1508,'White Cupid Agathion',0,'',0,'LineageNPC2.Agathion_CL',13,11.5,70,'male','L2Pet',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1509,1509,'Dark Cupid Agathion',0,'',0,'LineageNPC2.Agathion_CL',13,11.5,70,'male','L2Pet',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1510,1510,'White Maneki Neko Agathion',0,'',0,'LineageNPC2.Agathion_CL',13,11.5,70,'male','L2Pet',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1511,1511,'Black Maneki Neko Agathion',0,'',0,'LineageNPC2.Agathion_CL',13,11.5,70,'male','L2Pet',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1512,1512,'Brown Maneki Neko Agathion',0,'',0,'LineageNPC2.Agathion_CL',13,11.5,70,'male','L2Pet',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1513,1513,'One-Eyed Bat Drove Agathion',0,'',0,'LineageNPC2.Agathion_CL',13,11.5,70,'male','L2Pet',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1514,1514,'Pegasus Agathion',0,'',0,'LineageNPC2.Agathion_CL',13,11.5,70,'male','L2Pet',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1515,1515,'Yellow-Robed Tojigong Agathion',0,'',0,'LineageNPC2.Agathion_CL',13,11.5,70,'male','L2Pet',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1516,1516,'Blue-Robed Tojigong Agathion',0,'',0,'LineageNPC2.Agathion_CL',13,11.5,70,'male','L2Pet',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1517,1517,'Green-Robed Tojigong Agathion',0,'',0,'LineageNPC2.Agathion_CL',13,11.5,70,'male','L2Pet',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1518,1518,'Bugbear Agathion',0,'',0,'LineageNPC2.Agathion_CL',13,11.5,70,'male','L2Pet',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1519,1519,'Red Sumo Wrestler Agathion',0,'',0,'Monster.pet_wolf',13,11.5,70,'male','L2Npc',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1520,1520,'Blue Sumo Wrestler Agathion',0,'',0,'Monster.pet_wolf',13,11.5,70,'male','L2Npc',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1521,1521,'Great Sumo Match Agathion',0,'',0,'Monster.pet_wolf',13,11.5,70,'male','L2Npc',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1522,1522,'Button-Eyed Bear Doll',0,'',0,'Monster.pet_wolf',13,11.5,15,'male','L2Npc',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1523,1523,'God of Fortune',0,'',0,'Monster.pet_wolf',13,11.5,15,'male','L2Npc',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1524,1524,'Dryad Agathion',0,'',0,'Monster.pet_wolf',13,11.5,70,'male','L2Npc',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1525,1525,'Wonboso Agathion',0,'',0,'Monster.pet_wolf',13,11.5,70,'male','L2Npc',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (1526,1526,'Daewoonso Agathion',0,'',0,'Monster.pet_wolf',13,11.5,70,'male','L2Npc',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'); INSERT INTO `npc` VALUES (4301,4301,'Queen of Hearts',0,'Valentine Messenger',0,'Monster.pet_wolf',13,11.5,15,'male','L2Npc',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (12077,12077,'Wolf',0,'',0,'Monster.pet_wolf',13,11.5,15,'male','L2Pet',40,195,164,3.95,1.21,40,43,30,21,20,25,0,0,9,19,3,17,304,0,333,3907,0,0,24,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (12311,12311,'Hatchling of the Wind',0,'',0,'Monster.hatchling',9,10,35,'male','L2Pet',40,610,433,7.11,1.84,40,43,30,21,20,25,0,0,48,42,22,39,278,0,333,0,0,0,80,140,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (12312,12312,'Hatchling of the Stars',0,'',0,'Monster.hatchling',9,10,35,'male','L2Pet',40,610,433,7.11,1.84,40,43,30,21,20,25,0,0,48,42,22,39,278,0,333,0,0,0,80,140,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (12313,12313,'Hatchling of Twilight',0,'',0,'Monster.hatchling',9,10,35,'male','L2Pet',40,610,433,7.11,1.84,40,43,30,21,20,25,0,0,48,42,22,39,282,0,333,0,0,0,88,154,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (12526,12526,'Wind Strider',0,'',0,'Monster.strider',23,31,55,'male','L2Pet',40,2728,1138,10.27,2.45,40,43,30,21,20,25,0,0,703,332,360,301,304,0,333,5178,0,0,80,170,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (12527,12527,'Star Strider',0,'',0,'Monster.strider',23,31,55,'male','L2Pet',40,2728,1138,10.27,2.45,40,43,30,21,20,25,0,0,703,332,360,301,282,0,333,0,0,0,88,187,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (12528,12528,'Twilight Strider',0,'',0,'Monster.strider',23,31,55,'male','L2Pet',40,2728,1138,10.27,2.45,40,43,30,21,20,25,0,0,703,332,360,301,278,0,333,0,0,0,80,170,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (12564,12564,'Sin Eater',0,'',0,'Monster.imp',10,24,15,'male','L2Pet',40,195,164,1.15,1.21,40,1,30,21,20,25,0,0,9,19,3,17,278,0,333,0,0,0,60,125,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (12621,12621,'Wyvern',0,'',0,'Monster.wyvern',60,58,70,'male','L2Pet',40,3862,1722,11.85,2.78,40,43,30,21,20,25,0,0,1335,470,780,440,282,0,333,0,0,0,88,187,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (12774,12774,'Young Squash',0,'',0,'NPC.drop_gourd_50_sm',11,11,1,'etc','L2Npc',40,158,0,1.42,0,40,43,30,21,20,10,0,0,4,41,3,33,278,0,333,0,0,0,0,0,'NULL',0,1,0,'LAST_HIT',0,0,0,'balanced','false'), (12775,12775,'High Quality Squash',0,'',0,'NPC.drop_gourd',25,25,1,'etc','L2Npc',40,205,0,1.42,0,40,43,30,21,20,10,0,0,4,41,3,33,278,0,333,0,0,0,0,0,'NULL',0,1,0,'LAST_HIT',0,0,0,'balanced','false'), (12776,12776,'Low Quality Squash',0,'',0,'NPC.drop_gourd_25_sm',18,18,1,'etc','L2Npc',40,205,0,1.42,0,40,43,30,21,20,10,0,0,4,41,3,33,278,0,333,0,0,0,0,0,'NULL',0,1,0,'LAST_HIT',0,0,0,'balanced','false'), (12777,12777,'Large Young Squash',0,'',0,'NPC.drop_gourd',25,25,1,'etc','L2Npc',40,158,0,1.42,0,40,43,30,21,20,10,0,0,4,41,3,33,278,0,333,0,0,0,0,0,'NULL',0,1,0,'LAST_HIT',0,0,0,'balanced','false'), (12778,12778,'High Quality Large Squash',0,'',0,'NPC.drop_gourd_50_bi',40,40,1,'etc','L2Npc',40,205,0,1.42,0,40,43,30,21,20,10,0,0,4,41,3,33,278,0,333,0,0,0,0,0,'NULL',0,1,0,'LAST_HIT',0,0,0,'balanced','false'), (12779,12779,'Low Quality Large Squash',0,'',0,'NPC.drop_gourd_25_bi',32,32,1,'etc','L2Npc',40,205,0,1.42,0,40,43,30,21,20,10,0,0,4,41,3,33,278,0,333,0,0,0,0,0,'NULL',0,1,0,'LAST_HIT',0,0,0,'balanced','false'), (12780,12780,'Baby Buffalo',0,'',0,'Monster2.baby_buffalo',12,15,25,'male','L2BabyPet',40,751,331,2.37,1.53,40,43,30,21,20,25,0,0,88,119,37,112,282,0,333,0,0,0,33,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (12781,12781,'Baby Kookaburra',0,'',0,'Monster2.baby_ostrich',7,15,25,'male','L2BabyPet',40,751,331,2.37,1.53,40,43,30,21,20,25,0,0,88,119,37,112,282,0,333,0,0,0,14,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (12782,12782,'Baby Cougar',0,'',0,'Monster2.baby_tiger',11,15.7,25,'male','L2BabyPet',40,751,331,2.37,1.53,40,43,30,21,20,25,0,0,88,119,37,112,278,0,333,0,0,0,28,120,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13001,13001,'Heart of Warding',0,'',0,'NPC.heart_of_warding',17,75,70,'etc','L2Npc',40,3862,1493,11.85,2.78,40,43,30,21,20,10,490,10,1314,470,780,382,282,0,333,0,0,0,55,132,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (13002,13002,'Life Control Tower',0,'',0,'NPC.broadcasting_tower',13,54,20,'etc','L2ControlTower',40,10000,213,3.95,1.21,40,43,30,21,20,10,40,10,57,94,23,76,282,0,333,0,0,0,55,0,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (13003,13003,'Life Control Tower',0,'',0,'NPC.dead_castle_aden_controltower_jewel',7,35,20,'etc','L2ControlTower',40,10000,213,3.95,1.21,40,43,30,21,20,10,40,10,57,94,23,76,282,0,333,0,0,0,55,0,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (13004,13004,'Flame Control Tower',0,'',0,'NPC.broadcasting_tower',13,54,20,'etc','L2Npc',40,10000,213,3.95,1.21,40,43,30,21,20,10,40,10,57,94,23,76,282,0,333,0,0,0,55,0,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (13005,13005,'Flame Control Tower',0,'',0,'NPC.dead_castle_aden_controltower_jewel',7,35,20,'etc','L2Npc',40,10000,213,3.95,1.21,40,43,30,21,20,10,40,10,57,94,23,76,282,0,333,0,0,0,55,0,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (13006,13006,'Christmas Tree',0,'',0,'Deco.x_mas_tree',0.01,0.01,70,'etc','L2Npc',40,3862,1493,11.85,2.78,40,43,30,21,20,10,490,10,1335,470,780,382,278,0,333,0,0,0,30,120,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13007,13007,'Special Christmas Tree',0,'',0,'Deco.x_mas_tree_50_bi',0,0,70,'etc','L2Npc',40,3862,1493,11.85,2.78,40,43,30,21,20,10,490,10,1335,470,780,382,278,0,333,0,0,0,33,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13014,13014,'',0,'',0,'NPC.clear_npc',0.1,0.1,70,'male','L2Npc',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13015,13015,'',0,'',0,'Monster3.Evilate_weather',0.1,0.1,70,'male','L2Npc',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13016,13016,'King Squash',0,'',0,'NPC.drop_gourd',25,25,1,'etc','L2Npc',40,4608,1896,80.58,3.09,40,43,30,21,20,10,7133,810,2255,534,1731,433,278,0,333,0,0,0,0,0,'NULL',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13017,13017,'Emperor Squash',0,'',0,'NPC.drop_gourd_50_bi',40,40,1,'etc','L2Npc',40,4608,1896,80.58,3.09,40,43,30,21,20,10,7557,858,2255,534,1731,433,278,0,333,0,0,0,0,0,'NULL',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13018,13018,'',0,'',0,'NPC2.skill_dummy_00_a',5,10,70,'male','L2EffectPoint',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13019,13019,'',0,'',0,'NPC2.skill_dummy_00_a',5,10,70,'male','L2EffectPoint',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13020,13020,'',0,'',0,'NPC2.skill_dummy_00_a',5,10,70,'male','L2EffectPoint',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13021,13021,'',0,'',0,'NPC2.skill_dummy_00_a',5,10,70,'male','L2EffectPoint',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13022,13022,'',0,'',0,'NPC2.skill_dummy_00_a',5,10,70,'male','L2EffectPoint',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13023,13023,'',0,'',0,'NPC2.skill_dummy_00_a',5,10,70,'male','L2EffectPoint',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13024,13024,'',0,'',0,'NPC2.skill_dummy_00_a',5,10,70,'male','L2EffectPoint',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13025,13025,'',0,'',0,'NPC2.skill_dummy_01_a',5,10,70,'male','L2EffectPoint',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13026,13026,'',0,'',0,'NPC2.skill_dummy_01_a',5,10,70,'male','L2EffectPoint',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13027,13027,'',0,'',0,'NPC2.skill_dummy_01_a',5,10,70,'male','L2EffectPoint',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13028,13028,'',0,'',0,'NPC2.skill_dummy_01_a',5,10,70,'male','L2EffectPoint',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13029,13029,'',0,'',0,'NPC2.skill_dummy_01_a',5,10,70,'male','L2EffectPoint',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13030,13030,'',0,'',0,'NPC2.skill_dummy_01_a',5,10,70,'male','L2EffectPoint',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13031,13031,'Huge Pig',0,'',0,'NPC2.E_pig_ball',5.5,5.25,70,'male','L2Npc',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13032,13032,'Huge Pig',0,'',0,'NPC2.E_pig_ball',5.5,5.25,70,'male','L2Npc',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13033,13033,'Huge Pig',0,'',0,'NPC2.E_pig_ball',5.5,5.25,70,'male','L2Npc',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13034,13034,'Super Huge Pig',0,'',0,'NPC2.E_pig_ball_H',29,38.7,70,'male','L2Npc',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13035,13035,'Golden Pig',0,'',0,'NPC2.E_pig_ball',5.5,5.25,70,'male','L2Npc',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,88,132,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13036,13036,'Alchemist\'s Chest',0,'',0,'LineageMonster.mimic_even',8.5,8.5,1,'male','L2Npc',40,2444,2444,0,0,40,43,30,21,35,25,0,0,500,500,500,500,253,0,253,0,0,NULL,80,120,'NULL',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13037,13037,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,50,1,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13038,13038,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13039,13039,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13040,13040,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13041,13041,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13042,13042,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13043,13043,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13044,13044,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13045,13045,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13046,13046,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13047,13047,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13048,13048,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13049,13049,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13050,13050,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13051,13051,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13052,13052,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13053,13053,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13054,13054,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13055,13055,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13056,13056,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13057,13057,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13058,13058,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13059,13059,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13060,13060,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13061,13061,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13062,13062,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13063,13063,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13064,13064,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13065,13065,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13066,13066,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13067,13067,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13068,13068,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13069,13069,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13070,13070,'Trap',0,'',0,'LineageNpc2.trap_mark',5,10,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13071,13071,'Virtual Image',0,'',0,'LineageNPC2.Decoy_Medium',8.5,25,43,'female','L2Decoy',40,1728,618,8.69,2.14,40,43,30,21,20,10,0,0,291,252,163,181,278,0,333,0,0,0,0,0,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13072,13072,'Virtual Image',0,'',0,'LineageNPC2.Decoy_Medium',8.5,25,52,'female','L2Decoy',40,2402,892,10.27,2.45,40,43,30,21,20,10,0,0,518,324,300,239,278,0,333,0,0,0,0,0,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13073,13073,'Virtual Image',0,'',0,'LineageNPC2.Decoy_Medium',8.5,25,60,'female','L2Decoy',40,3054,1150,10.27,2.45,40,43,30,21,20,10,0,0,860,368,478,299,278,0,333,0,0,0,0,0,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13074,13074,'Virtual Image',0,'',0,'LineageNPC2.Decoy_Medium',8.5,25,66,'female','L2Decoy',40,3546,1353,47.4,2.78,40,43,30,21,20,10,0,0,1020,427,649,348,278,0,333,0,0,0,0,0,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13075,13075,'Virtual Image',0,'',0,'LineageNPC2.Decoy_Medium',8.5,25,70,'female','L2Decoy',40,3862,1493,59.25,2.78,40,43,30,21,20,10,0,0,1445,466,780,382,278,0,333,0,0,0,0,0,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13076,13076,'Virtual Image',0,'',0,'LineageNPC2.Decoy_Medium',8.5,25,74,'female','L2Decoy',40,4158,1637,53.72,3.09,40,43,30,21,20,10,0,0,2312,481,921,416,278,0,333,0,0,0,50,1,'NULL',0,0,0,'LAST_HIT',0,0,0,'fighter','false'), (13077,13077,'Onyx Beast',0,'',0,'LineageMonster.onyx_beast',14,14.5,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,80,120,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13078,13078,'Doom Wraith',0,'',0,'LineageMonster.death_blader_tr',8,22,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,1472,0,NULL,80,120,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13079,13079,'Grail Apostle',0,'',0,'LineageMonster3.apostle_grail_tr',8,30,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,8221,0,NULL,80,120,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13080,13080,'Grail Apostle',0,'',0,'LineageMonster2.apostle_warrior',8,30,1,'female','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,8221,0,NULL,80,120,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13081,13081,'Unicorn',0,'',0,'LineageMonster.Unicorn_tr',8,27,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,80,120,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13082,13082,'Lilim Knight',0,'',0,'LineageMonster4.lilim_knight_tr',8,25,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,80,120,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13083,13083,'Golem Guardian',0,'',0,'LineageMonster3.golem_guardian_tr',8,24,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,80,120,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13084,13084,'Inferno Drake',0,'',0,'LineageMonster2.inferno_drake_tr',8,24,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,80,120,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13085,13085,'Dragon Bomber',0,'',0,'LineageMonster3.antaras_ex_b_tr',8,24,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,80,120,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13086,13086,'Zariche',0,'',0,'LineageMonster4.Avatar_Z',12,31.57,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,8190,0,NULL,80,120,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13087,13087,'Akamanah',0,'',0,'LineageMonster4.Avatar_A',10,33,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,8689,0,NULL,80,120,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13088,13088,'Final Form',0,'',0,'LineageMonster4.Specular_Form',9,34,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,80,120,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13089,13089,'Final Form',0,'',0,'LineageMonster4.Specular_Form_F',10,32.76,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,80,120,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13090,13090,'Native',0,'',0,'LineageNPC.a_common_peopleC_Mhuman',8,23.5,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,80,120,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13091,13091,'Yeti',0,'',0,'LineageMonster.yeti',18,34,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,80,120,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13092,13092,'Buffalo',0,'',0,'LineageMonster2.buffalo',22,31,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,80,120,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13093,13093,'Pig',0,'',0,'LineageNPC2.E_pig_ball',15,18.3,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,80,120,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13094,13094,'Zombie',0,'',0,'LineageMonster3.zombie_laborer',11,24.6,1,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,80,120,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13095,13095,'Pixy',0,'',0,'LineageMonster.pixy',8,24,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13096,13096,'Rabbit',0,'',0,'LineageMonster.rabbit',8,24,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13097,13097,'',0,'',0,'LineageNPC.clear_npc',0,0,80,'male','L2Monster',40,4550,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13098,13098,'Event Treasure Chest',0,'',0,'Monster.mimic',2,6,80,'male','L2Monster',40,4550,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,253,0,253,0,0,NULL,0,0,'NULL',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13099,13099,'Zaken',0,'',0,'LineageMonster.zaken_tr',16,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13100,13100,'Anakim',0,'',0,'LineageMonster2.anakim_tr',8,24,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13101,13101,'Benom',0,'',0,'LineageMonster3.benom_tr',27,55,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,8203,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13102,13102,'Gordon',0,'',0,'LineageMonster3.Cruel_Rider_tr',8,46,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13103,13103,'Ranku',0,'',0,'LineageMonster4.LaneCoo_tr',14,29,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13104,13104,'Kiyachi',0,'',0,'LineageMonster4.Keyache_tr',8,29,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13105,13105,'Demon Prince',0,'',0,'LineageMonster4.rahuu_tr',25,51,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13106,13106,'Heretic Male',0,'',0,'LineageMonster3.heretic_privates_tr',8,28,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,8205,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13107,13107,'Heretic Female',0,'',0,'LineageMonster3.heretic_priest_tr',8,18,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,8208,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13108,13108,'Vale master',0,'',0,'LineageMonster.vale_master_tr',8,38,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13109,13109,'Saber Tooth Tiger',0,'',0,'LineageMonster.saber_toothed_tiger_tr',8,29,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13110,13110,'Ol Mahum',0,'',0,'LineageMonster.oel_mahum_champion_tr',8,62,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13111,13111,'Doll Blader',0,'',0,'LineageMonster.doll_blader_tr',8,12,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,5129,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13112,13112,'Divine Knight',0,'',0,'LineageMonster4.Divine_tanker',8,30,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13113,13113,'Divine Warrior',0,'',0,'LineageMonster4.Divine_Warrior',8,28,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13114,13114,'Divine Rogue',0,'',0,'LineageMonster4.Divine_Rogue',8,28,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13115,13115,'Divine Healer',0,'',0,'LineageMonster4.Divine_healer',8,24,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13116,13116,'Divine Wizard',0,'',0,'LineageMonster4.Divine_Wizard',8,24,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13117,13117,'Divine Enchanter',0,'',0,'LineageMonster4.Divine_enchanter',8,24,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13118,13118,'Divine Summoner',0,'',0,'LineageMonster4.Divine_healer',8,24,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13119,13119,'Dwarf Golem',0,'',0,'LineageMonster3.chaos_golem_tr',8,24,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13120,13120,'Giant rat',0,'',0,'LineageMonster4.little_mouse_120p',8,24,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13121,13121,'Giant rat',0,'',0,'LineageMonster4.little_mouse_120p',8,24,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13122,13122,'Giant rat',0,'',0,'LineageMonster4.little_mouse_120p',8,24,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13123,13123,'Super giant rat',0,'',0,'LineageMonster4.little_mouse_180p',8,24,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13124,13124,'Giant rat',0,'Mr. Bashful',0,'LineageMonster4.little_mouse_120p',8,24,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13125,13125,'Trap',0,'',0,'LineageMonster4.little_mouse_120p',8,24,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13126,13126,'Trap',0,'',0,'LineageMonster4.little_mouse_120p',8,24,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13127,13127,'Trap',0,'',0,'LineageMonster4.little_mouse_120p',8,24,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13128,13128,'Golem Trader',0,'',0,'LineageMonster4.little_mouse_120p',8,21.3,70,'male','L2MerchantSummon',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13129,13129,'Teleporter',0,'',0,'LineageMonster4.little_mouse_120p',8,24,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13130,13130,'Light Purple Maned Horse',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13131,13131,'Grizzly Bear',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13132,13132,'Timitran',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13133,13133,'Lava Golem',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13134,13134,'Yeti',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13135,13135,'Pumpkin Ghost',0,'',0,'Npc2.Pumpkin_Head_man',8,25,70,'etc','L2Npc',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,NULL,50,120,'',0,1,0,'LAST_HIT',0,0,0,'balanced','false'), (13136,13136,'',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13137,13137,'',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13138,13138,'',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13139,13139,'',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13140,13140,'',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13141,13141,'',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13142,13142,'Final Form',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13143,13143,'Final Form',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13144,13144,'Aurabird-Falcon',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13145,13145,'Aurabird-Owl',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13146,13146,'Tawny-Maned Lion',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13147,13147,'Steam Sledge',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13148,13148,'Lindvior',0,'',0,'Monster.horse',200,300,70,'male','L2FlyNpc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13149,13149,'For Presentation 1',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13150,13150,'For Presentation 2',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13151,13151,'For Presentation 3',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13152,13152,'For Presentation 4',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13153,13153,'For Presentation 5',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13154,13154,'Demon Race',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13155,13155,'Unicorniun',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13156,13156,'Myo Race',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13157,13157,'Frog',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13158,13158,'Young Child',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13159,13159,'Mercenary',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13160,13160,'Snowman',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13161,13161,'Scarecrow',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13162,13162,'Tin Plate Golem',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13163,13163,'Tow',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13164,13164,'Lure Tow',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13165,13165,'Heavy Tow',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13166,13166,'Wing Tow',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13167,13167,'Main Role A',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13168,13168,'Main Role B',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13169,13169,'Human Male Mercenary',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13170,13170,'Male Elf Mercenary',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13171,13171,'Dark Elf Female Mercenary',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13172,13172,'Orc Male Mercenary',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13173,13173,'Dwarf Male Mercenary',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13174,13174,'Kamael Male Mercenary',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13175,13175,'Knight Level Mercenary',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13176,13176,'Archer Level Mercenary',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13177,13177,'Wizard Level Mercenary',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13178,13178,'Trooper Level Mercenary',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13179,13179,'Knight Leader Elite Mercenary',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13180,13180,'Commander Elite Mercenary',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13181,13181,'Treasure Box',0,'Gracia',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13182,13182,'Free Gift Merchant',0,'Gracia',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13183,13183,'Thomas D. Turkey',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13184,13184,'Santa Claus',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13185,13185,'Santa Claus',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13186,13186,'Santa Claus',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13187,13187,'Milk Cow',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13188,13188,'Head Milk Cow',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13189,13189,'Bull',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13190,13190,'Head Bull',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13191,13191,'Gloomy Milk Cow',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13192,13192,'Gloomy Head Milk Cow',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13193,13193,'',0,'',0,'Monster.horse',229,177.5,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,1,180,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13194,13194,'',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13195,13195,'',0,'',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'), (13196,13196,'Great Pig',0,'Mis-summoned',0,'Monster.horse',12,32,70,'male','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,NULL,60,60,'',0,0,0,'LAST_HIT',0,0,0,'balanced','false'); INSERT INTO `npc` VALUES (14001,14001,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,46,'male','L2Pet',40,2914,816,8.69,2.14,40,43,30,21,20,25,0,0,482,245,202,230,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14002,14002,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,54,'male','L2Pet',40,3843,1102,10.27,2.45,40,43,30,21,20,25,0,0,763,313,339,293,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14003,14003,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,62,'male','L2Pet',40,4829,1404,11.85,2.78,40,43,30,21,20,25,0,0,1133,388,532,363,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14004,14004,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,66,'male','L2Pet',40,5319,1561,11.85,2.78,40,43,30,21,20,25,0,0,1347,428,649,401,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14005,14005,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,70,'male','L2Pet',40,5793,1722,11.85,2.78,40,43,30,21,20,25,0,0,1577,470,780,440,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14006,14006,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,74,'male','L2Pet',40,6238,1888,13.43,3.09,40,43,30,21,20,25,0,0,1816,512,921,480,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14007,14007,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,76,'male','L2Pet',40,6446,1972,13.43,3.09,40,43,30,21,20,25,0,0,1937,534,994,500,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14008,14008,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,78,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2068,555,1069,520,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14009,14009,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,78,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2078,555,1069,520,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14010,14010,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,78,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2088,555,1069,520,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14011,14011,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,78,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2099,555,1069,520,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14012,14012,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,79,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2109,555,1069,520,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14013,14013,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,79,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2119,555,1069,520,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14014,14014,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,79,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2130,555,1069,520,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14015,14015,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,79,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2140,555,1069,520,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14016,14016,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,80,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2150,555,1069,520,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14017,14017,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,80,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2173,558,1082,523,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14018,14018,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,80,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2184,558,1082,523,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14019,14019,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,80,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2194,558,1082,523,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14020,14020,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,81,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2204,558,1082,523,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14021,14021,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,81,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2215,558,1082,523,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14022,14022,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,81,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2225,558,1082,523,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14023,14023,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,81,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2236,558,1082,523,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14024,14024,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,82,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2246,558,1082,523,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14025,14025,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,82,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2256,558,1082,523,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14026,14026,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,82,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2280,562,1095,526,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14027,14027,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,82,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2290,562,1095,526,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14028,14028,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,83,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2301,562,1095,526,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14029,14029,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,83,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2311,562,1095,526,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14030,14030,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,83,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,2322,562,1095,526,278,0,333,0,0,0,66,154,'NULL',0,1,0,'LAST_HIT',0,0,0,'fighter','false'), (14031,14031,'Reanimated Man',0,'',0,'Monster.skeleton',11,25,83,'male','L2Pet',40,7085,2057,13.43,3.09,40,43,30,21,20,25,0,0,...
02-20-2010, 01:19 AM
Оу...всё исправил)
З.Ы При заходе в игру появляюсь в одном и том же месте,причём захожу,падая с неба)Где можно это поправить?
02-20-2010, 01:51 AM
prelest Написал:char_templates тут меняй координаты рожденияТам разные кординаты стоят,как надо.А при заходе в игру появляюсь не там,где вышел,а в том же месте...
02-20-2010, 02:02 AM
Как вариант переустанови заного базу серва,может поможет.
Кстати гс что говорит по этому поводу?
02-24-2010, 09:21 AM
(Сообщение последний раз редактировалось: 02-24-2010, 11:05 AM FXAntiXrist.)
как batником организовать открытие и выполнение sql файла? просто файл очень большой, ни навикат ни phpmyadmin его не берут
Добавлено через 1 час 44 минуты примерно вот так Цитата:@echo off |
« Предыдущая | Следующая »
|
Возможно похожие темы ... | |||||
Тема | Автор | Ответы | Просмотры | Последний пост | |
Вопросы по серверу Lineage 2 | 5 | 2,284 |
05-09-2020, 06:46 PM Последний пост: freelu |
||
Вопросы Антибот | 5 | 1,645 |
10-03-2016, 10:11 PM Последний пост: virusoflove |
||
Вопросы | 0 | 845 |
03-20-2015, 03:55 PM Последний пост: saloma |
||
вопросы по сборке lucera | 6 | 1,896 |
08-19-2014, 06:59 PM Последний пост: SmileForMe |
||
Старторвые вопросы по открытию сервера | 7 | 2,253 |
11-21-2013, 07:27 AM Последний пост: кулич |
||
Общие вопросы. Программная часть сервера | 36 | 7,403 |
08-27-2013, 11:37 PM Последний пост: Royxz |
||
Вопросы | 4 | 1,451 |
08-27-2013, 02:02 PM Последний пост: xolseg |
||
вопросы по la2shark | 14 | 3,188 |
09-05-2012, 08:52 PM Последний пост: 3xeng |
||
разные вопросы (ядро) | 9 | 2,098 |
07-28-2012, 05:19 AM Последний пост: doDie |
||
вопросы по олимпиаде | 5 | 1,623 |
07-03-2012, 09:42 PM Последний пост: nimens |
Пользователи, просматривающие эту тему: 4 Гость(ей)