Index: scripts/globals/missions.lua =================================================================== --- scripts/globals/missions.lua (révision 2749) +++ scripts/globals/missions.lua (copie de travail) @@ -36,8 +36,8 @@ LEAUTE_S_LAST_WISHES = 16; -- ± -- RANPERRE_S_FINAL_REST = 17; -- ± -- PRESTIGE_OF_THE_PAPSQUE = 18; -- ± -- -THE_SECRET_WEAPON = 19; -COMING_OF_AGE = 20; +THE_SECRET_WEAPON = 19; -- ± -- +COMING_OF_AGE = 20; -- ± -- LIGHTBRINGER = 21; BREAKING_BARRIERS = 22; THE_HEIR_TO_THE_LIGHT = 23; @@ -845,10 +845,12 @@ 14,{0,0}, {0,0}, {0x0216,0},{0,0},{{9,73},{5,400},{14,0},{13,10},{12}}, -- MISSION 5-1 (Finish (Halver)) 15,{0,0}, {0,0}, {0x0224,0},{0,0},{{11,6},{14,4}}, -- MISSION 5-2 (Finish 1st Part (Halver)) 15,{0,0}, {0,0}, {0x003D,0},{0,0},{{14,0},{9,74},{8,20000},{6},{12}}, -- MISSION 5-2 (Finish 2nd Part (Trion in Great Hall)) - 16,{0,0}, {0,0}, {0x006f,0},{0,0},{{14,0},{9,268},{10,270},{12}}, -- MISSION 6-1 (Finish (Chalvatot)) - 17,{0x040a,0},{0x0409,0},{0,0},{0,0},{{14,0},{11,7},{8,40000},{6},{12}}, -- MISSION 6-2 (Finish (Guard)) + 16,{0,0}, {0,0}, {0x006f,0},{0,0},{{14,0},{5,600},{9,268},{10,270},{12}}, -- MISSION 6-1 (Finish (Chalvatot)) + 17,{0x040a,0},{0x0409,0},{0,0},{0,0},{{14,0},{11,7},{8,40000},{6},{12}}, -- MISSION 6-2 (Finish (Guard)) 18,{0,0}, {0,0}, {0x0007,0},{0,0},{{14,1}}, -- MISSION 7-1 (setVar("MissionStatus",1) (Door: Papal Chambers)) - 18,{0,0}, {0,0}, {0x0008,0},{0,0},{{14,0},{9,283},{5,1000},{12}} -- MISSION 7-1 (Finish (Door: Papal Chambers)) + 18,{0,0}, {0,0}, {0x0008,0},{0,0},{{14,0},{9,283},{5,700},{12}}, -- MISSION 7-1 (Finish (Door: Papal Chambers)) + 19,{0x0414,0},{0x0413,0},{0,0},{0,0},{{14,0},{6},{3,"SecretWeapon",0},{9,284},{11,8},{8,60000},{12}}, -- MISSION 7-2 (Finish (Guard)) + 20,{0,0}, {0,0}, {0x0066,0},{0,0},{{14,0},{9,288},{5,800},{12}} -- MISSION 8-1 (Finish (Halver)) --[[0,{0,0},{0,0},{0,0},{0,0},{0},{0,0},{0,0},{0,0},{0,0},{0}, 0,{0,0},{0,0},{0,0},{0,0},{0},{0,0},{0,0},{0,0},{0,0},{0}, ]]-- }; Index: scripts/zones/Chateau_dOraguille/npcs/Halver.lua =================================================================== --- scripts/zones/Chateau_dOraguille/npcs/Halver.lua (révision 2744) +++ scripts/zones/Chateau_dOraguille/npcs/Halver.lua (copie de travail) @@ -77,15 +77,10 @@ player:startEvent(0x0018); elseif(currentMission == LEAUTE_S_LAST_WISHES and MissionStatus == 3) then player:startEvent(0x0016); - -- Mission San D'Oria 6-1 Leaute's last wishes - elseif(player:getCurrentMission(SANDORIA) == LEAUTE_S_LAST_WISHES and MissionStatus == 0) then - player:startEvent(0x0019); - elseif(player:getCurrentMission(SANDORIA) == LEAUTE_S_LAST_WISHES and MissionStatus == 1) then - player:startEvent(0x0017); - elseif(player:getCurrentMission(SANDORIA) == LEAUTE_S_LAST_WISHES and MissionStatus == 2) then - player:startEvent(0x0018); - elseif(player:getCurrentMission(SANDORIA) == LEAUTE_S_LAST_WISHES and MissionStatus == 3) then - player:startEvent(0x0016); + elseif(currentMission == COMING_OF_AGE and MissionStatus == 1) then + player:startEvent(0x003a); + elseif(currentMission == COMING_OF_AGE and MissionStatus == 3) then + player:startEvent(0x0066); end elseif(pNation == BASTOK) then if(currentMission == THE_EMISSARY) then @@ -165,7 +160,11 @@ player:setVar("MissionStatus",1); elseif(csid == 0x0016) then player:setVar("MissionStatus",4); - + elseif(csid == 0x003a) then + player:setVar("MissionStatus",2); + elseif(csid == 0x0066) then + finishMissionTimeline(player,3,csid,option); + player:setVar("Wait1DayForM8-1_date", os.date("%j")); end end; Index: scripts/zones/Chateau_dOraguille/Zone.lua =================================================================== --- scripts/zones/Chateau_dOraguille/Zone.lua (révision 2744) +++ scripts/zones/Chateau_dOraguille/Zone.lua (copie de travail) @@ -33,6 +33,10 @@ cs = 0x022b; elseif(prevZone == 231 and player:hasKeyItem(MESSAGE_TO_JEUNO_SANDORIA)) then cs = 0x01FD; + elseif(player:getVar("SecretWeapon") == 1) then + cs = 0x0000; + elseif(player:getCurrentMission(SANDORIA) == COMING_OF_AGE and player:getVar("MissionStatus") == 0) then + cs = 0x0074; end return cs; @@ -68,6 +72,10 @@ elseif(csid == 0x01FD) then player:setVar("MissionStatus",9); player:delKeyItem(MESSAGE_TO_JEUNO_SANDORIA); + elseif(csid == 0x0000) then + player:setVar("SecretWeapon",2); + elseif(csid == 0x0074) then + player:setVar("MissionStatus",1); end end; Index: scripts/zones/Northern_San_dOria/npcs/Grilau.lua =================================================================== --- scripts/zones/Northern_San_dOria/npcs/Grilau.lua (révision 2744) +++ scripts/zones/Northern_San_dOria/npcs/Grilau.lua (copie de travail) @@ -75,6 +75,14 @@ player:startEvent(0x040f); elseif(player:getCurrentMission(0,17) and player:getVar("MissionStatus") == 9) then player:startEvent(0x0409); + elseif(pRank == 7 and player:getVar("SecretWeapon") == 0 and player:hasCompletedMission(0,18) == true) then + player:startEvent(0x0411); + elseif(player:getVar("SecretWeapon") == 1) then + player:startEvent(0x03e9); + elseif(player:getCurrentMission(0,19) and player:getVar("MissionStatus") == 1) then + player:startEvent(0x0413); + elseif(player:hasCompletedMission(0,20) and tonumber(os.date("%j")) == player:getVar("Wait1DayForM8-1_date")) then + player:startEvent(0x0415); elseif(CurrentMission ~= 255) then player:startEvent(0x03e9); -- Have mission already activated else @@ -112,7 +120,11 @@ elseif(csid == 0x040f) then player:setVar("MissionStatus",7); player:setVar("Wait1DayForRanperre_date",0); - elseif(csid == 0x0409) then + elseif(csid == 0x0411) then + player:setVar("SecretWeapon",1); + elseif(csid == 0x0415) then + player:setVar("WaitCS8-1",1); + elseif(csid == 0x0409 or csid == 0x0413) then finishMissionTimeline(player,2,csid,option); end -end; +end; Index: scripts/zones/Northern_San_dOria/Zone.lua =================================================================== --- scripts/zones/Northern_San_dOria/Zone.lua (révision 2744) +++ scripts/zones/Northern_San_dOria/Zone.lua (copie de travail) @@ -47,6 +47,8 @@ elseif(player:getCurrentMission(COP) == THE_ROAD_FORKS and player:getVar("EMERALD_WATERS_Status") == 1)then --EMERALD_WATERS-- COP 3-3A: San d'Oria Route player:setVar("EMERALD_WATERS_Status",2); cs = 0x000E; + elseif(player:hasCompletedMission(SANDORIA,COMING_OF_AGE) and player:getVar("WaitCS8-1") == 1)then + cs = 0x0010; end return cs; end; @@ -106,6 +108,9 @@ player:messageSpecial(ITEM_OBTAINED, 12513); -- Warlock's Chapeau player:setVar("peaceForTheSpiritCS",0); player:addFame(SANDORIA,AF3_FAME); - player:completeQuest(SANDORIA,PEACE_FOR_THE_SPIRIT); + player:completeQuest(SANDORIA,PEACE_FOR_THE_SPIRIT); + elseif(csid == 0x0010) then + player:setVar("Wait1DayForM8-1_date",0); + player:setVar("WaitCS8-1",0); end end; Index: scripts/zones/Quicksand_Caves/mobs/Honor.lua =================================================================== --- scripts/zones/Quicksand_Caves/mobs/Honor.lua (révision 0) +++ scripts/zones/Quicksand_Caves/mobs/Honor.lua (copie de travail) @@ -0,0 +1,20 @@ +-- NM HONOR +-- Pops in San d'Oria mission 8-1 "Coming of age" + +require("scripts/globals/settings"); +require("/scripts/globals/missions"); + +----------------------------------- +-- onMobSpawn Action +----------------------------------- +function OnMobSpawn(mob) +end; + +function onMobDeath(mob,killer) + local currentMission = killer:getCurrentMission(SANDORIA); + MissionStatus = killer:getVar("MissionStatus"); + + if(currentMission == COMING_OF_AGE and MissionStatus == 2) then + killer:setVar("Mission8-1MobKilled",1); + end +end; \ Pas de retour chariot ŕ la fin du fichier Index: scripts/zones/Quicksand_Caves/mobs/Valor.lua =================================================================== --- scripts/zones/Quicksand_Caves/mobs/Valor.lua (révision 0) +++ scripts/zones/Quicksand_Caves/mobs/Valor.lua (copie de travail) @@ -0,0 +1,20 @@ +--- NM VALOR +-- Pops in San d'Oria mission 8-1 "Coming of age" + +require("scripts/globals/settings"); +require("/scripts/globals/missions"); + +----------------------------------- +-- onMobSpawn Action +----------------------------------- +function OnMobSpawn(mob) +end; + +function onMobDeath(mob,killer) + local currentMission = killer:getCurrentMission(SANDORIA); + MissionStatus = killer:getVar("MissionStatus"); + + if(currentMission == COMING_OF_AGE and MissionStatus == 2) then + killer:setVar("Mission8-1MobKilled",1); + end +end; \ Pas de retour chariot ŕ la fin du fichier Index: scripts/zones/Quicksand_Caves/npcs/Fountain_of_Kings.lua =================================================================== --- scripts/zones/Quicksand_Caves/npcs/Fountain_of_Kings.lua (révision 2744) +++ scripts/zones/Quicksand_Caves/npcs/Fountain_of_Kings.lua (copie de travail) @@ -3,24 +3,33 @@ -- NPC: Fountain of Kings -- @pos 567 18 -939 208 ----------------------------------- + package.loaded["scripts/zones/Quicksand_Caves/TextIDs"] = nil; ------------------------------------ - +require("scripts/globals/settings"); +require("scripts/globals/missions"); require("scripts/zones/Quicksand_Caves/TextIDs"); - ----------------------------------- --- onTrade Action +-- onTrigger Action ----------------------------------- -function onTrade(player,npc,trade) -end; ------------------------------------ --- onTrigger Action ------------------------------------ +function onTrigger(player,npc) -function onTrigger(player,npc) - player:messageSpecial(POOL_OF_WATER); + if(player:getCurrentMission(SANDORIA) == COMING_OF_AGE and player:getVar("MissionStatus") == 2) then + if(GetMobAction(17629185) == 0 and GetMobAction(17629186) == 0) then + if(player:getVar("Mission8-1MobKilled") == 1) then + player:setVar("Mission8-1MobKilled",0); + player:setVar("MissionStatus",3); + player:addKeyItem(DROPS_OF_AMNIO); + player:messageSpecial(KEYITEM_OBTAINED,DROPS_OF_AMNIO); + else + SpawnMob(17629185):updateEnmity(player); + SpawnMob(17629186):updateEnmity(player); + end + end + else + player:messageSpecial(POOL_OF_WATER); + end end; ----------------------------------- Index: scripts/zones/Southern_San_dOria/npcs/Ambrotien.lua =================================================================== --- scripts/zones/Southern_San_dOria/npcs/Ambrotien.lua (révision 2744) +++ scripts/zones/Southern_San_dOria/npcs/Ambrotien.lua (copie de travail) @@ -78,6 +78,14 @@ player:startEvent(0x0410); elseif(player:getCurrentMission(0,17) and player:getVar("MissionStatus") == 9) then player:startEvent(0x040a); + elseif(pRank == 7 and player:getVar("SecretWeapon") == 0 and player:hasCompletedMission(0,18) == true) then + player:startEvent(0x0412); + elseif(player:getVar("SecretWeapon") == 1) then + player:startEvent(0x07d1); + elseif(player:getCurrentMission(0,19) and player:getVar("MissionStatus") == 1) then + player:startEvent(0x0414); + elseif(player:hasCompletedMission(0,20) and tonumber(os.date("%j")) == player:getVar("Wait1DayForM8-1_date")) then + player:startEvent(0x0416); elseif(CurrentMission ~= 255) then player:startEvent(0x07d1); -- Have mission already activated else @@ -115,8 +123,11 @@ elseif(csid == 0x0410) then player:setVar("MissionStatus",7); player:setVar("Wait1DayForRanperre_date",0); - elseif(csid == 0x040a) then + elseif(csid == 0x0412) then + player:setVar("SecretWeapon",1); + elseif(csid == 0x0416) then + player:setVar("WaitCS8-1",1); + elseif(csid == 0x040a or csid == 0x0414) then finishMissionTimeline(player,1,csid,option); end - -end; +end; Index: scripts/zones/Southern_San_dOria/npcs/Endracion.lua =================================================================== --- scripts/zones/Southern_San_dOria/npcs/Endracion.lua (révision 2744) +++ scripts/zones/Southern_San_dOria/npcs/Endracion.lua (copie de travail) @@ -76,6 +76,14 @@ player:startEvent(0x040f); elseif(player:getCurrentMission(0,17) and player:getVar("MissionStatus") == 9) then player:startEvent(0x0409); + elseif(pRank == 7 and player:getVar("SecretWeapon") == 0 and player:hasCompletedMission(0,18) == true) then + player:startEvent(0x0411); + elseif(player:getVar("SecretWeapon") == 1) then + player:startEvent(0x03e9); + elseif(player:getCurrentMission(0,19) and player:getVar("MissionStatus") == 1) then + player:startEvent(0x0413); + elseif(player:hasCompletedMission(0,20) and tonumber(os.date("%j")) == player:getVar("Wait1DayForM8-1_date")) then + player:startEvent(0x0415); elseif((CurrentMission ~= 255) and not (player:getVar("MissionStatus") == 8)) then player:startEvent(0x03e9); -- Have mission already activated else @@ -113,8 +121,11 @@ elseif(csid == 0x040f) then player:setVar("MissionStatus",7); player:setVar("Wait1DayForRanperre_date",0); - elseif(csid == 0x0409) then + elseif(csid == 0x0411) then + player:setVar("SecretWeapon",1); + elseif(csid == 0x0415) then + player:setVar("WaitCS8-1",1); + elseif(csid == 0x0409 or csid == 0x0413) then finishMissionTimeline(player,2,csid,option); end - end; Index: sql/mob_groups.sql =================================================================== --- sql/mob_groups.sql (révision 2744) +++ sql/mob_groups.sql (copie de travail) @@ -7717,8 +7717,8 @@ INSERT INTO `mob_groups` VALUES (7697,723,139,0,128,0,0,0,75,75); INSERT INTO `mob_groups` VALUES (7698,773,139,0,128,0,0,0,40,40); INSERT INTO `mob_groups` VALUES (7699,804,139,0,128,0,0,0,40,40); -INSERT INTO `mob_groups` VALUES (7700,919,139,0,0,0,0,0,0,0); -INSERT INTO `mob_groups` VALUES (7701,1002,139,0,0,0,0,0,0,0); +INSERT INTO `mob_groups` VALUES (7700,919,139,0,128,0,4000,0,68,68); +INSERT INTO `mob_groups` VALUES (7701,1002,139,0,128,0,4000,0,68,68); INSERT INTO `mob_groups` VALUES (7702,1100,139,0,128,0,0,0,75,75); INSERT INTO `mob_groups` VALUES (7703,1101,139,0,128,0,0,0,75,75); INSERT INTO `mob_groups` VALUES (7704,1116,139,0,128,0,0,0,25,25); @@ -7729,7 +7729,7 @@ INSERT INTO `mob_groups` VALUES (7709,1993,139,0,128,0,0,0,30,30); INSERT INTO `mob_groups` VALUES (7710,2011,139,0,128,0,0,0,30,30); INSERT INTO `mob_groups` VALUES (7711,2086,139,0,128,0,0,0,60,60); -INSERT INTO `mob_groups` VALUES (7712,2126,139,0,0,1830,0,0,0,0); +INSERT INTO `mob_groups` VALUES (7712,2126,139,0,128,1830,4000,0,68,68); INSERT INTO `mob_groups` VALUES (7713,2202,139,0,128,0,0,0,60,60); INSERT INTO `mob_groups` VALUES (7714,2226,139,0,0,0,0,0,0,0); INSERT INTO `mob_groups` VALUES (7715,2405,139,0,0,0,0,0,0,0); @@ -7740,12 +7740,12 @@ INSERT INTO `mob_groups` VALUES (7720,3026,139,0,128,0,0,0,60,60); INSERT INTO `mob_groups` VALUES (7721,3048,139,0,128,0,0,0,54,54); INSERT INTO `mob_groups` VALUES (7722,3136,139,0,128,0,0,0,30,30); -INSERT INTO `mob_groups` VALUES (7723,3341,139,0,0,0,0,0,0,0); +INSERT INTO `mob_groups` VALUES (7723,3341,139,0,128,0,1800,0,68,68); INSERT INTO `mob_groups` VALUES (7724,3681,139,0,128,0,0,0,20,20); INSERT INTO `mob_groups` VALUES (7725,3693,139,0,128,0,0,0,40,40); INSERT INTO `mob_groups` VALUES (7726,3740,139,0,128,0,0,0,23,23); INSERT INTO `mob_groups` VALUES (7727,4097,139,0,128,0,0,0,60,60); -INSERT INTO `mob_groups` VALUES (7728,4358,139,0,0,0,0,0,0,0); +INSERT INTO `mob_groups` VALUES (7728,4358,139,0,128,0,1800,0,68,68); INSERT INTO `mob_groups` VALUES (7729,248,140,0,0,0,0,0,0,0); INSERT INTO `mob_groups` VALUES (7730,468,140,0,128,339,0,0,14,14); INSERT INTO `mob_groups` VALUES (7731,651,140,0,128,0,0,0,40,40); @@ -10097,7 +10097,7 @@ INSERT INTO `mob_groups` VALUES (10077,1607,208,0,128,0,0,0,63,68); INSERT INTO `mob_groups` VALUES (10078,1894,208,7200,0,1631,0,0,65,65); INSERT INTO `mob_groups` VALUES (10079,1928,208,1056,0,1666,0,0,51,58); -INSERT INTO `mob_groups` VALUES (10080,1987,208,0,128,0,0,0,70,70); +INSERT INTO `mob_groups` VALUES (10080,1987,208,0,128,0,6000,0,70,70); INSERT INTO `mob_groups` VALUES (10081,2664,208,0,128,2291,0,0,56,59); INSERT INTO `mob_groups` VALUES (10082,2923,208,21600,0,2494,0,0,60,60); INSERT INTO `mob_groups` VALUES (10083,3193,208,0,128,0,0,0,70,70); @@ -10113,7 +10113,7 @@ INSERT INTO `mob_groups` VALUES (10093,3999,208,0,128,0,0,0,70,70); INSERT INTO `mob_groups` VALUES (10094,4001,208,5400,128,3588,0,0,72,74); INSERT INTO `mob_groups` VALUES (10095,4003,208,0,128,3589,0,0,60,62); -INSERT INTO `mob_groups` VALUES (10096,4126,208,0,128,0,0,0,65,65); +INSERT INTO `mob_groups` VALUES (10096,4126,208,0,128,0,4500,0,65,65); INSERT INTO `mob_groups` VALUES (10097,4498,208,0,0,0,0,0,0,0); INSERT INTO `mob_groups` VALUES (10098,1160,209,0,128,0,0,0,75,75); INSERT INTO `mob_groups` VALUES (10099,1451,209,0,128, 0,6000,0,56,56); Index: sql/mob_pools.sql =================================================================== --- sql/mob_pools.sql (révision 2744) +++ sql/mob_pools.sql (copie de travail) @@ -2029,7 +2029,7 @@ INSERT INTO mob_pools VALUES ('1984', 'Hobgoblin_White_Mage', '133', 0x0000FE0100000000000000000000000000000000, '3', '3', '12', '240', '1', '1', '0', '0', '0', '0', '3', '0', '0', 0x1010101010105700); INSERT INTO mob_pools VALUES ('1985', 'Hognosed_Bat', '46', 0x0000000100000000000000000000000000000000, '1', '1', '11', '240', '2', '0', '0', '0', '0', '79', '1665', '0', '0', 0x0000000000000000); INSERT INTO mob_pools VALUES ('1986', 'Honey_Fly', '113', 0x0000C00100000000000000000000000000000000, '1', '1', '8', '240', '129', '1', '2', '0', '0', '0', '3', '0', '0', 0x0000000000000000); -INSERT INTO mob_pools VALUES ('1987', 'Honor', '218', 0x0000600100000000000000000000000000000000, '2', '5', '7', '240', '2', '0', '2', '0', '32', '291', '1177', '0', '0', 0x0000000000000000); +INSERT INTO mob_pools VALUES ('1987', 'Honor', '218', 0x0000600100000000000000000000000000000000, '2', '5', '7', '280', '2', '0', '2', '0', '32', '291', '1177', '0', '0', 0x7070707074701662); INSERT INTO mob_pools VALUES ('1988', 'Hoo_Mjuu_the_Torrent', '270', 0x00002D0400000000000000000000000000000000, '3', '3', '6', '240', '1', '1', '2', '0', '0', '0', '0', '0', '0', 0x1010101010105700); INSERT INTO mob_pools VALUES ('1989', 'Hoplomachus_XI-XXVI', '25', 0x0000110500000000000000000000000000000000, '7', '7', '3', '265', '8', '1', '2', '0', '0', '772', '1157', '0', '0', 0x0000000000000000); INSERT INTO mob_pools VALUES ('1990', 'Hornfly', '113', 0x0000C00100000000000000000000000000000000, '1', '1', '8', '240', '0', '1', '1', '0', '0', '297', '1667', '0', '0', 0x0000000000000000); @@ -4168,7 +4168,7 @@ INSERT INTO mob_pools VALUES ('4123', 'Valkeng', '28', 0x0600B90700000000000000000000000000000000, '1', '1', '5', '320', '128', '0', '2', '0', '0', '0', '3', '0', '0', 0x0000000000000000); INSERT INTO mob_pools VALUES ('4124', 'Valkurm_Emperor', '113', 0x0000C00100000000000000000000000000000000, '1', '1', '8', '240', '2', '1', '2', '0', '0', '0', '3', '0', '0', 0x0000000000000000); INSERT INTO mob_pools VALUES ('4125', 'Valley_Manticore', '179', 0x0000920100000000000000000000000000000000, '1', '1', '7', '360', '1', '1', '0', '0', '0', '152', '129', '0', '0', 0x0000000000000000); -INSERT INTO mob_pools VALUES ('4126', 'Valor', '218', 0x0000600100000000000000000000000000000000, '2', '2', '7', '240', '2', '0', '2', '0', '32', '27', '159', '0', '0', 0x0000000000000000); +INSERT INTO mob_pools VALUES ('4126', 'Valor', '218', 0x0000600100000000000000000000000000000000, '2', '2', '7', '280', '2', '0', '2', '0', '32', '27', '159', '0', '0', 0x0000000000000000); INSERT INTO mob_pools VALUES ('4127', 'Vampire_Bat', '46', 0x0000000100000000000000000000000000000000, '1', '1', '11', '240', '0', '1', '0', '0', '0', '125', '643', '0', '0', 0x0000000000000000); INSERT INTO mob_pools VALUES ('4128', 'Vampyr_Bats', '47', 0x0000040100000000000000000000000000000000, '1', '1', '5', '240', '128', '1', '2', '0', '0', '0', '3', '0', '0', 0x0000000000000000); INSERT INTO mob_pools VALUES ('4129', 'Vampyr_Dog', '143', 0x00006C0100000000000000000000000000000000, '1', '1', '3', '240', '192', '1', '2', '0', '0', '0', '3', '0', '0', 0x0000000000000000); Index: sql/mob_spawn_points.sql =================================================================== --- sql/mob_spawn_points.sql (révision 2744) +++ sql/mob_spawn_points.sql (copie de travail) @@ -25437,12 +25437,12 @@ INSERT INTO `mob_spawn_points` VALUES ('17346564', 'Spotter', '7726', '-160.000', '-25.000', '-115.000', '45'); INSERT INTO `mob_spawn_points` VALUES ('17346565', 'Dread_Dragon', '7704', '83.000', '-145.000', '295.000', '49'); INSERT INTO `mob_spawn_points` VALUES ('17346566', 'Spotter', '7726', '79.000', '-145.000', '295.000', '49'); -INSERT INTO `mob_spawn_points` VALUES ('17346567', 'Darokbok_of_Clan_Reaper', '7700', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17346568', 'Jagidbod_of_Clan_Reaper', '7712', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17346569', 'Derakbak_of_Clan_Wolf', '7701', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17346570', 'Reaper_Clan_Warmachine', '7723', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17346571', 'Wolf_Clan_Warmachine', '7728', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17346572', 'Orc_s_Wyvern', '7721', '0.000', '0.000', '0.000', '0'); +INSERT INTO `mob_spawn_points` VALUES ('17346567', 'Darokbok_of_Clan_Reaper', '7700', '-395.090', '94.751', '-66.691', '0'); +INSERT INTO `mob_spawn_points` VALUES ('17346568', 'Jagidbod_of_Clan_Reaper', '7712', '-392.669', '94.910', '-63.111', '0'); +INSERT INTO `mob_spawn_points` VALUES ('17346569', 'Derakbak_of_Clan_Wolf', '7701', '-399.629', '94.910', '-66.259', '0'); +INSERT INTO `mob_spawn_points` VALUES ('17346570', 'Reaper_Clan_Warmachine', '7723', '-395.314', '84.813', '-59.798', '0'); +INSERT INTO `mob_spawn_points` VALUES ('17346571', 'Wolf_Clan_Warmachine', '7728', '-400.811', '94.859', '-64.510', '0'); +INSERT INTO `mob_spawn_points` VALUES ('17346572', 'Orc_s_Wyvern', '7721', '-398.337', '94.763', '-65.268', '0'); INSERT INTO `mob_spawn_points` VALUES ('17346573', 'Darokbok_of_Clan_Reaper', '7700', '0.000', '0.000', '0.000', '0'); INSERT INTO `mob_spawn_points` VALUES ('17346574', 'Jagidbod_of_Clan_Reaper', '7712', '0.000', '0.000', '0.000', '0'); INSERT INTO `mob_spawn_points` VALUES ('17346575', 'Derakbak_of_Clan_Wolf', '7701', '0.000', '0.000', '0.000', '0'); @@ -38969,8 +38969,8 @@ INSERT INTO `mob_spawn_points` VALUES ('17621299', 'Seed_Quadav', '10040', '0.000', '0.000', '0.000', '0'); INSERT INTO `mob_spawn_points` VALUES ('17621300', 'Seed_Yagudo', '10041', '0.000', '0.000', '0.000', '0'); INSERT INTO `mob_spawn_points` VALUES ('17621301', 'Seed_Goblin', '10038', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17629185', 'Valor', '10096', '0.000', '0.000', '0.000', '0'); -INSERT INTO `mob_spawn_points` VALUES ('17629186', 'Honor', '10080', '0.000', '0.000', '0.000', '0'); +INSERT INTO `mob_spawn_points` VALUES ('17629185', 'Valor', '10096', '568.317', '17.719', '-942.136', '0'); +INSERT INTO `mob_spawn_points` VALUES ('17629186', 'Honor', '10080', '567.536', '17.811', '-935.747', '0'); INSERT INTO `mob_spawn_points` VALUES ('17629187', 'Centurio_IV-VII', '10073', '0.000', '0.000', '0.000', '0'); INSERT INTO `mob_spawn_points` VALUES ('17629188', 'Triarius_IV-XIV', '10093', '0.000', '0.000', '0.000', '0'); INSERT INTO `mob_spawn_points` VALUES ('17629189', 'Princeps_IV-XLV', '10083', '0.000', '0.000', '0.000', '0');