New scripts for the opening private areas, as well as db updates.

This commit is contained in:
Filip Maj 2017-03-07 08:32:57 -05:00
parent e898c045f7
commit d918ad3776
29 changed files with 412 additions and 183 deletions

View File

@ -14,11 +14,11 @@ function onEventStarted(player, command, triggerName)
player:ChangeState(0); player:ChangeState(0);
end end
--player:endEvent(); player:endEvent();
--For Opening Tutorial --For Opening Tutorial
if (player:HasQuest("Man0l0") or player:HasQuest("Man0g0") or player:HasQuest("Man0u0")) then --if (player:HasQuest("Man0l0") or player:HasQuest("Man0g0") or player:HasQuest("Man0u0")) then
player:GetDirector("Quest/QuestDirectorMan0l001"):OnCommandEvent(player, command); --player:GetDirector("Quest/QuestDirectorMan0l001"):OnCommandEvent(player, command);
end --end
end end

View File

@ -6,6 +6,7 @@ Notes:
--]] --]]
require("global")
function onEventStarted(player, actor, triggerName, pushCommand, unk1, unk2, unk3, ownerActorId, unk4, unk5, unk6, unk7) function onEventStarted(player, actor, triggerName, pushCommand, unk1, unk2, unk3, ownerActorId, unk4, unk5, unk6, unk7)
@ -15,6 +16,7 @@ function onEventStarted(player, actor, triggerName, pushCommand, unk1, unk2, unk
if (actor:GetActorClassId() == 1200052) then if (actor:GetActorClassId() == 1200052) then
player:kickEvent(actor, "commandJudgeMode", "commandJudgeMode"); player:kickEvent(actor, "commandJudgeMode", "commandJudgeMode");
else else
printf("TEST");
player:kickEvent(actor, "pushCommand", "pushCommand"); player:kickEvent(actor, "pushCommand", "pushCommand");
end end
else else

View File

@ -3,6 +3,15 @@
--]] --]]
function onEventStarted(player, actor, questId) function onEventStarted(player, actor, trigger, questId, mapCode)
player:SendRequestedInfo("requestedData", "qtdata", 0x1D4F2);
quest = player:GetQuest(questId);
if (mapCode == nil) then
player:SendRequestedInfo("requestedData", "qtdata", quest:GetQuestId(), 3);
player:EndEvent();
else
player:SendRequestedInfo("requestedData", "qtmap", quest:GetQuestId());
player:EndEvent();
end
end end

View File

@ -61,7 +61,7 @@ function onTrigger(player, argc, p1, p2, p3, p4, privateArea, name, lastName)
local z = tonumber(applyPositionOffset(p4, player_z)) or player_z; local z = tonumber(applyPositionOffset(p4, player_z)) or player_z;
if privateArea == "" then privateArea = nil end; if privateArea == "" then privateArea = nil end;
player:SendMessage(messageID, sender, string.format("setting coordinates X:%d Y:%d Z:%d to new zone (%d) private area:%s", x, y, z, zone, privateArea or "unspecified")); player:SendMessage(messageID, sender, string.format("setting coordinates X:%d Y:%d Z:%d to new zone (%d) private area:%s", x, y, z, zone, privateArea or "unspecified"));
worldManager:DoZoneChange(player, zone, privateArea, 0x02, x, y, z, 0.00); worldManager:DoZoneChange(player, zone, privateArea, 0, 0x02, x, y, z, 0.00);
end end
else else

View File

@ -20,7 +20,7 @@ function onTrigger(player, argc, weather, updateTime, zonewide)
if zonewide ~= 0 then if zonewide ~= 0 then
message = string.format(message.."for zone %u", player:GetZoneID()); message = string.format(message.."for zone %u", player:GetZoneID());
else else
message = string.format(message.."%s", player:GetName()); message = message..player:GetName();
end; end;
-- weatherid, updateTime -- weatherid, updateTime
player:GetZone():ChangeWeather(weather, updateTime, player, zonewide ~= 0); player:GetZone():ChangeWeather(weather, updateTime, player, zonewide ~= 0);

View File

@ -38,7 +38,10 @@ function onTalkEvent(player, npc)
end end
elseif (player:HasQuest(110005) == true) then elseif (player:HasQuest(110005) == true) then
man0g0Quest = player:GetQuest("man0g0"); man0g0Quest = player:GetQuest("man0g0");
if (man0g0Quest:GetQuestFlag(MAN0G0_FLAG_MINITUT_DONE1) == true) then if (man0g0Quest:GetQuestFlag(MAN0G0_FLAG_TUTORIAL1_DONE) and man0g0Quest:GetQuestFlag(MAN0G0_FLAG_MINITUT_DONE1) == false) then
papalymo = GetWorldManager():GetActorInWorldByUniqueId("papalymo");
papalymo:SetQuestGraphic(player, 0x2);
elseif (man0g0Quest:GetQuestFlag(MAN0G0_FLAG_MINITUT_DONE1) == true) then
yda = GetWorldManager():GetActorInWorldByUniqueId("yda"); yda = GetWorldManager():GetActorInWorldByUniqueId("yda");
yda:SetQuestGraphic(player, 0x2); yda:SetQuestGraphic(player, 0x2);
end end

View File

@ -20,8 +20,10 @@ function onEventStarted(player, actor, triggerName)
quest = GetStaticActor("Man0g0"); quest = GetStaticActor("Man0g0");
callClientFunction(player, "delegateEvent", player, quest, "processTtrBtl001", nil, nil, nil); callClientFunction(player, "delegateEvent", player, quest, "processTtrBtl001", nil, nil, nil);
callClientFunction(player, "delegateEvent", player, quest, "processTtrBtl002", nil, nil, nil); callClientFunction(player, "delegateEvent", player, quest, "processEvent010_1", nil, nil, nil);
callClientFunction(player, "delegateEvent", player, quest, "processEvent020_1", nil, nil, nil);
GetWorldManager():DoZoneChange(player, 1);
player:EndEvent();
--sendDataPacket: Success --sendDataPacket: Success
--sendDataPacket: CloseWidget --sendDataPacket: CloseWidget
--IF DoW: --IF DoW:

View File

@ -18,9 +18,13 @@ end
function onEventStarted(player, actor, triggerName) function onEventStarted(player, actor, triggerName)
quest = GetStaticActor("Man0l0"); man0l0Quest = player:GetQuest("Man0l0");
callClientFunction(player, "delegateEvent", player, quest, "processTtrBtl001", nil, nil, nil); callClientFunction(player, "delegateEvent", player, man0l0Quest, "processTtrBtl001", nil, nil, nil);
callClientFunction(player, "delegateEvent", player, quest, "processTtrBtl002", nil, nil, nil); callClientFunction(player, "delegateEvent", player, man0l0Quest, "processTtrBtl002", nil, nil, nil);
callClientFunction(player, "delegateEvent", player, man0l0Quest, "processEvent000_2", nil, nil, nil);
player:ChangeMusic(7);
callClientFunction(player, "delegateEvent", player, man0l0Quest, "processEvent000_3", nil, nil, nil);
--sendDataPacket: Success --sendDataPacket: Success
--sendDataPacket: CloseWidget --sendDataPacket: CloseWidget
@ -38,8 +42,11 @@ function onEventStarted(player, actor, triggerName)
--IF DEAD --IF DEAD
--sendDataPacket: Attention --sendDataPacket: Attention
man0l0Quest:NextPhase(10);
player:EndEvent(); player:EndEvent();
GetWorldManager():DoZoneChange(player, 230, "PrivateAreaMasterPast", 1, 15, -826.868469, 6, 193.745865, -0.008368492);
end end
function onUpdate() function onUpdate()

View File

@ -18,10 +18,10 @@ function onBeginLogin(player)
--For Opening. Set Director and reset position incase d/c --For Opening. Set Director and reset position incase d/c
if (player:HasQuest(110001) == true) then if (player:HasQuest(110001) == true) then
director = player:GetZone():CreateDirector("OpeningDirector"); --director = player:GetZone():CreateDirector("OpeningDirector");
player:AddDirector(director); --player:AddDirector(director);
player:SetLoginDirector(director); --player:SetLoginDirector(director);
player:KickEvent(director, "noticeEvent", "noticeEvent"); --player:KickEvent(director, "noticeEvent", "noticeEvent");
player.positionX = 0.016; player.positionX = 0.016;
player.positionY = 10.35; player.positionY = 10.35;

View File

@ -17,22 +17,26 @@ function onEventStarted(player, npc, triggerName)
if (man0g0Quest:GetQuestFlag(MAN0G0_FLAG_TUTORIAL1_DONE) == false) then if (man0g0Quest:GetQuestFlag(MAN0G0_FLAG_TUTORIAL1_DONE) == false) then
callClientFunction(player, "delegateEvent", player, man0g0Quest, "processTtrNomal003", nil, nil, nil); callClientFunction(player, "delegateEvent", player, man0g0Quest, "processTtrNomal003", nil, nil, nil);
player:SetEventStatus(npc, "pushDefault", false, 0x2); player:SetEventStatus(npc, "pushDefault", false, 0x2);
npc:SetQuestGraphic(player, 0x2); npc:SetQuestGraphic(player, 0x0);
player:GetDirector():OnTalked(npc); player:GetDirector("OpeningDirector"):onTalkEvent(player, npc);
man0g0Quest:SetQuestFlag(MAN0G0_FLAG_TUTORIAL1_DONE, true); man0g0Quest:SetQuestFlag(MAN0G0_FLAG_TUTORIAL1_DONE, true);
man0g0Quest:SaveData(); man0g0Quest:SaveData();
--Was she talked to after papalymo? --Was she talked to after papalymo?
else else
if (man0g0Quest:GetQuestFlag(MAN0G0_FLAG_MINITUT_DONE1) == true) then if (man0g0Quest:GetQuestFlag(MAN0G0_FLAG_MINITUT_DONE1) == true) then
player:EndEvent(); player:EndEvent();
player:SetDirector("QuestDirectorMan0g001", true);
worldMaster = GetWorldMaster(); worldMaster = GetWorldMaster();
player:SendGameMessage(player, worldMaster, 34108, 0x20); player:SendGameMessage(player, worldMaster, 34108, 0x20);
player:SendGameMessage(player, worldMaster, 50011, 0x20); player:SendGameMessage(player, worldMaster, 50011, 0x20);
GetWorldManager():DoPlayerMoveInZone(player, 10); director = player:GetZone():CreateDirector("Quest/QuestDirectorMan0g001");
player:KickEvent(player:GetDirector(), "noticeEvent", true); player:KickEvent(director, "noticeEvent", true);
player:AddDirector(director);
player:SetLoginDirector(director);
GetWorldManager():DoZoneChange(player, 10);
return; return;
else else
callClientFunction(player, "delegateEvent", player, man0g0Quest, "processEvent000_1", nil, nil, nil); callClientFunction(player, "delegateEvent", player, man0g0Quest, "processEvent000_1", nil, nil, nil);

View File

@ -18,13 +18,15 @@ function onSpawn(player, npc)
end end
function onEventStarted(player, npc, triggerName) function onEventStarted(player, npc, triggerName)
man0l0Quest = GetStaticActor("Man0l0"); man0l0Quest = player:GetQuest("Man0l0");
choice = callClientFunction(player, "delegateEvent", player, man0l0Quest, "processEventNewRectAsk", nil); choice = callClientFunction(player, "delegateEvent", player, man0l0Quest, "processEventNewRectAsk", nil);
if (choice == 1) then if (choice == 1) then
callClientFunction(player, "delegateEvent", player, man0l0Quest, "processEvent000_2", nil, nil, nil, nil); callClientFunction(player, "delegateEvent", player, man0l0Quest, "processEvent000_2", nil, nil, nil, nil);
player:EndEvent(); player:EndEvent();
man0l0Quest:NextPhase(5);
worldMaster = GetWorldMaster(); worldMaster = GetWorldMaster();
player:SendGameMessage(player, worldMaster, 34108, 0x20); player:SendGameMessage(player, worldMaster, 34108, 0x20);
player:SendGameMessage(player, worldMaster, 50011, 0x20); player:SendGameMessage(player, worldMaster, 50011, 0x20);

View File

@ -0,0 +1,23 @@
require ("global")
function onSpawn(player, npc)
man0l1Quest = player:GetQuest("Man0l1");
if (man0l1Quest ~= nil) then
npc:SetQuestGraphic(player, 0x2);
end
end
function onEventStarted(player, npc, triggerName)
man0l1Quest = player:GetQuest("Man0l1");
if (man0l1Quest ~= nil) then
if (triggerName == "talkDefault") then
callClientFunction(player, "delegateEvent", player, man0l1Quest, "processEvent020");
man0l1Quest:NextPhase(3);
player:EndEvent();
GetWorldManager():DoZoneChange(player, 133, nil, 0, 15, player.positionX, player.positionY, player.positionZ, player.rotation);
end
end
end

View File

@ -0,0 +1,8 @@
require ("global")
require ("quests/man/man0l0")
function onEventStarted(player, npc)
man0l0Quest = player:GetQuest("Man0l0");
callClientFunction(player, "delegateEvent", player, man0l0Quest, "processEvent020_10", nil, nil, nil);
player:endEvent();
end

View File

@ -0,0 +1,18 @@
require ("global")
require ("quests/man/man0l0")
function onEventStarted(player, npc)
man0l0Quest = player:GetQuest("Man0l0");
choice = callClientFunction(player, "delegateEvent", player, man0l0Quest, "processEvent020_9", nil, nil, nil);
if (choice == 1) then
man0l1Quest = GetStaticActor("Man0l1");
callClientFunction(player, "delegateEvent", player, man0l1Quest, "processEvent010", nil, nil, nil);
player:ReplaceQuest(110001, 110002);
player:SendGameMessage(GetStaticActor("Man0l1"), 320, 0x20);
player:SendGameMessage(GetStaticActor("Man0l1"), 321, 0x20);
GetWorldManager():DoZoneChange(player, 133, "PrivateAreaMasterPast", 2, 15, -459.619873, 40.0005722, 196.370377, 2.010813);
end
player:endEvent();
end

View File

@ -0,0 +1,8 @@
require ("global")
require ("quests/man/man0l0")
function onEventStarted(player, npc)
man0l0Quest = player:GetQuest("Man0l0");
callClientFunction(player, "delegateEvent", player, man0l0Quest, "processEvent020_8", nil, nil, nil);
player:endEvent();
end

View File

@ -0,0 +1,8 @@
require ("global")
require ("quests/man/man0l0")
function onEventStarted(player, npc)
man0l0Quest = player:GetQuest("Man0l0");
callClientFunction(player, "delegateEvent", player, man0l0Quest, "processEvent020_11", nil, nil, nil);
player:endEvent();
end

View File

@ -0,0 +1,8 @@
require ("global")
require ("quests/man/man0l0")
function onEventStarted(player, npc)
man0l0Quest = player:GetQuest("Man0l0");
callClientFunction(player, "delegateEvent", player, man0l0Quest, "processEvent020_2", nil, nil, nil);
player:endEvent();
end

View File

@ -0,0 +1,8 @@
require ("global")
require ("quests/man/man0l0")
function onEventStarted(player, npc)
man0l0Quest = player:GetQuest("Man0l0");
callClientFunction(player, "delegateEvent", player, man0l0Quest, "processEvent020_11", nil, nil, nil);
player:endEvent();
end

View File

@ -0,0 +1,8 @@
require ("global")
require ("quests/man/man0l0")
function onEventStarted(player, npc)
man0l0Quest = player:GetQuest("Man0l0");
callClientFunction(player, "delegateEvent", player, man0l0Quest, "processEvent020_3", nil, nil, nil);
player:endEvent();
end

View File

@ -0,0 +1,8 @@
require ("global")
require ("quests/man/man0l0")
function onEventStarted(player, npc)
man0l0Quest = player:GetQuest("Man0l0");
callClientFunction(player, "delegateEvent", player, man0l0Quest, "processEvent020_5", nil, nil, nil);
player:endEvent();
end

View File

@ -0,0 +1,8 @@
require ("global")
require ("quests/man/man0l0")
function onEventStarted(player, npc)
man0l0Quest = player:GetQuest("Man0l0");
callClientFunction(player, "delegateEvent", player, man0l0Quest, "processEvent020_6", nil, nil, nil);
player:endEvent();
end

View File

@ -0,0 +1,8 @@
require ("global")
require ("quests/man/man0l0")
function onEventStarted(player, npc)
man0l0Quest = player:GetQuest("Man0l0");
callClientFunction(player, "delegateEvent", player, man0l0Quest, "processEvent020_7", nil, nil, nil);
player:endEvent();
end

View File

@ -4,14 +4,13 @@ Source Host: localhost
Source Database: ffxiv_server Source Database: ffxiv_server
Target Host: localhost Target Host: localhost
Target Database: ffxiv_server Target Database: ffxiv_server
Date: 12/3/2016 5:39:10 PM Date: 3/7/2017 8:31:56 AM
*/ */
SET FOREIGN_KEY_CHECKS=0; SET FOREIGN_KEY_CHECKS=0;
-- ---------------------------- -- ----------------------------
-- Table structure for characters -- Table structure for characters
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS `characters`;
CREATE TABLE `characters` ( CREATE TABLE `characters` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT, `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`userId` int(11) unsigned NOT NULL, `userId` int(11) unsigned NOT NULL,
@ -29,13 +28,15 @@ CREATE TABLE `characters` (
`rotation` float NOT NULL DEFAULT '0', `rotation` float NOT NULL DEFAULT '0',
`actorState` smallint(5) unsigned DEFAULT '0', `actorState` smallint(5) unsigned DEFAULT '0',
`currentZoneId` smallint(5) unsigned DEFAULT '0', `currentZoneId` smallint(5) unsigned DEFAULT '0',
`currentPrivateArea` varchar(32) DEFAULT NULL,
`currentPrivateAreaType` int(10) unsigned DEFAULT '0',
`destinationZoneId` smallint(5) unsigned DEFAULT '0', `destinationZoneId` smallint(5) unsigned DEFAULT '0',
`destinationSpawnType` tinyint(3) unsigned DEFAULT '0', `destinationSpawnType` tinyint(3) unsigned DEFAULT '0',
`guardian` tinyint(3) unsigned NOT NULL DEFAULT '0', `guardian` tinyint(3) unsigned NOT NULL,
`birthDay` tinyint(3) unsigned NOT NULL DEFAULT '0', `birthDay` tinyint(3) unsigned NOT NULL,
`birthMonth` tinyint(3) unsigned NOT NULL DEFAULT '0', `birthMonth` tinyint(3) unsigned NOT NULL,
`initialTown` tinyint(3) unsigned NOT NULL DEFAULT '0', `initialTown` tinyint(3) unsigned NOT NULL,
`tribe` tinyint(3) unsigned NOT NULL DEFAULT '0', `tribe` tinyint(3) unsigned NOT NULL,
`gcCurrent` tinyint(3) unsigned DEFAULT '0', `gcCurrent` tinyint(3) unsigned DEFAULT '0',
`gcLimsaRank` tinyint(3) unsigned DEFAULT '127', `gcLimsaRank` tinyint(3) unsigned DEFAULT '127',
`gcGridaniaRank` tinyint(3) unsigned DEFAULT '127', `gcGridaniaRank` tinyint(3) unsigned DEFAULT '127',
@ -43,7 +44,6 @@ CREATE TABLE `characters` (
`currentTitle` int(10) unsigned DEFAULT '0', `currentTitle` int(10) unsigned DEFAULT '0',
`restBonus` int(10) DEFAULT '0', `restBonus` int(10) DEFAULT '0',
`achievementPoints` int(10) unsigned DEFAULT '0', `achievementPoints` int(10) unsigned DEFAULT '0',
`currentPartyGroupId` bigint(20) unsigned DEFAULT '0', `currentActiveLinkshell` varchar(32) NOT NULL DEFAULT '',
`currentRetainerGroupId` bigint(20) unsigned DEFAULT NULL,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; ) ENGINE=InnoDB AUTO_INCREMENT=164 DEFAULT CHARSET=utf8;

View File

@ -4,7 +4,7 @@ Source Host: localhost
Source Database: ffxiv_server Source Database: ffxiv_server
Target Host: localhost Target Host: localhost
Target Database: ffxiv_server Target Database: ffxiv_server
Date: 1/11/2017 10:01:07 PM Date: 3/7/2017 8:31:22 AM
*/ */
SET FOREIGN_KEY_CHECKS=0; SET FOREIGN_KEY_CHECKS=0;
@ -24,7 +24,7 @@ CREATE TABLE `gamedata_actor_class` (
-- Records -- Records
-- ---------------------------- -- ----------------------------
INSERT INTO `gamedata_actor_class` VALUES ('0', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('0', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000001', '', '1900006', '0', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 1,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 1,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": []\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1000001', '/Chara/Npc/Populace/PopulaceStandard', '1900006', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 1,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 1,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": []\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1000002', '', '1600179', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000002', '', '1600179', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000003', '/Chara/Npc/Populace/PopulaceStandard', '1600217', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1000003', '/Chara/Npc/Populace/PopulaceStandard', '1600217', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1000004', '/Chara/Npc/Populace/PopulaceStandard', '1500015', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1000004', '/Chara/Npc/Populace/PopulaceStandard', '1500015', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
@ -32,7 +32,7 @@ INSERT INTO `gamedata_actor_class` VALUES ('1000005', '', '1600150', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000006', '', '1000053', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000006', '', '1000053', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000007', '', '1000005', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000007', '', '1000005', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000008', '', '1200028', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000008', '', '1200028', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000009', '/Chara/Npc/Populace/PopulaceStandard', '2300120', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1000009', '/Chara/Npc/Populace/PopulaceStandard', '2300120', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 1,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 1,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": [\r\n\r\n {\r\n \"conditionName\": \"pushDefault\",\r\n \"radius\": 3.0,\r\n \"silent\": false,\r\n \"outwards\": false\r\n }\r\n \r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1000010', '/Chara/Npc/Populace/PopulaceStandard', '1400004', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1000010', '/Chara/Npc/Populace/PopulaceStandard', '1400004', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1000011', '', '2000005', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000011', '', '2000005', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000012', '', '1000021', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000012', '', '1000021', '0', null);
@ -65,7 +65,7 @@ INSERT INTO `gamedata_actor_class` VALUES ('1000038', '', '1900054', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000039', '', '1600089', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000039', '', '1600089', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000040', '', '1400080', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000040', '', '1400080', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000041', '', '1400081', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000041', '', '1400081', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000042', '/Chara/Npc/Populace/PopulaceStandard', '1100003', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1000042', '/Chara/Npc/Populace/PopulaceStandard', '1100003', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 1,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 1,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": [\r\n\r\n {\r\n \"conditionName\": \"pushDefault\",\r\n \"radius\": 3.0,\r\n \"silent\": false,\r\n \"outwards\": false\r\n }\r\n \r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1000043', '', '1200025', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000043', '', '1200025', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000044', '', '1200009', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000044', '', '1200009', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000045', '/Chara/Npc/Populace/PopulaceStandard', '1900051', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1000045', '/Chara/Npc/Populace/PopulaceStandard', '1900051', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
@ -95,12 +95,12 @@ INSERT INTO `gamedata_actor_class` VALUES ('1000068', '/Chara/Npc/Populace/Popul
INSERT INTO `gamedata_actor_class` VALUES ('1000069', '/Chara/Npc/Populace/PopulaceStandard', '1100350', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1000069', '/Chara/Npc/Populace/PopulaceStandard', '1100350', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1000070', '/Chara/Npc/Populace/PopulaceStandard', '1400066', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1000070', '/Chara/Npc/Populace/PopulaceStandard', '1400066', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1000071', '/Chara/Npc/Populace/PopulaceStandard', '1200035', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1000071', '/Chara/Npc/Populace/PopulaceStandard', '1200035', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1000072', '', '1300052', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000072', '/Chara/Npc/Populace/PopulaceStandard', '1300052', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1000073', '', '1000075', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000073', '/Chara/Npc/Populace/PopulaceStandard', '1000075', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1000074', '/Chara/Npc/Populace/PopulaceStandard', '1100155', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1000074', '/Chara/Npc/Populace/PopulaceStandard', '1100155', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1000075', '', '4000005', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000075', '/Chara/Npc/Populace/PopulaceStandard', '4000005', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1000076', '', '4000006', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000076', '/Chara/Npc/Populace/PopulaceStandard', '4000006', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1000077', '', '4000007', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000077', '/Chara/Npc/Populace/PopulaceStandard', '4000007', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1000078', '/Chara/Npc/Populace/PopulaceLinkshellManager', '1900036', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1000078', '/Chara/Npc/Populace/PopulaceLinkshellManager', '1900036', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1000079', '', '4000010', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000079', '', '4000010', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000080', '', '4000011', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000080', '', '4000011', '0', null);
@ -121,9 +121,9 @@ INSERT INTO `gamedata_actor_class` VALUES ('1000094', '', '4000019', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000095', '', '4000001', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000095', '', '4000001', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000096', '', '4000020', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000096', '', '4000020', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000097', '', '4000021', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000097', '', '4000021', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000098', '', '4000008', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000098', '/Chara/Npc/Populace/PopulaceStandard', '4000008', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1000099', '', '4000009', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000099', '/Chara/Npc/Populace/PopulaceStandard', '4000009', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1000100', '', '4000004', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000100', '/Chara/Npc/Populace/PopulaceStandard', '4000004', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1000101', '', '4000023', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000101', '', '4000023', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000102', '', '4000022', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000102', '', '4000022', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1000103', '', '4000024', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1000103', '', '4000024', '0', null);
@ -1658,7 +1658,7 @@ INSERT INTO `gamedata_actor_class` VALUES ('1001639', '', '1200187', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1001640', '', '1600142', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1001640', '', '1600142', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1001641', '', '1500159', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1001641', '', '1500159', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1001642', '', '1400169', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1001642', '', '1400169', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1001643', '', '4000606', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1001643', '/Chara/Npc/Populace/PopulaceStandard', '4000606', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1001644', '/Chara/Npc/Populace/PopulaceStandard', '4000607', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1001644', '/Chara/Npc/Populace/PopulaceStandard', '4000607', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1001645', '', '4000608', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1001645', '', '4000608', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1001646', '', '4000609', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1001646', '', '4000609', '0', null);
@ -1667,7 +1667,7 @@ INSERT INTO `gamedata_actor_class` VALUES ('1001648', '', '4000611', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1001649', '', '4000604', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1001649', '', '4000604', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1001650', '', '4000605', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1001650', '', '4000605', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1001651', '', '1100003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1001651', '', '1100003', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1001652', '/Chara/Npc/Populace/PopulaceTutorial', '1600150', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 1,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 1,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": [\r\n\r\n {\r\n \"conditionName\": \"pushDefault\",\r\n \"radius\": 3.0,\r\n \"silent\": false,\r\n \"outwards\": false\r\n }\r\n \r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1001652', '/Chara/Npc/Populace/PopulaceStandard', '1600150', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 1,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 1,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": [\r\n\r\n {\r\n \"conditionName\": \"pushDefault\",\r\n \"radius\": 3.0,\r\n \"silent\": false,\r\n \"outwards\": false\r\n }\r\n \r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1001653', '', '1900168', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1001653', '', '1900168', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1001654', '', '1000126', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1001654', '', '1000126', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1001655', '', '1500076', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1001655', '', '1500076', '0', null);
@ -2406,7 +2406,7 @@ INSERT INTO `gamedata_actor_class` VALUES ('1090021', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1090022', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1090022', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1090023', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1090023', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1090024', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1090024', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1090025', '/Chara/Npc/Populace/PopulaceStandard', '0', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1090025', '/Chara/Npc/Populace/PopulaceStandard', '0', '19', '{\r\n \"talkEventConditions\": [ ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n\"pushWithCircleEventConditions\": [\r\n {\r\n \"radius\": \"2.0\",\r\n \"outwards\": \"false\",\r\n \"silent\": \"false\",\r\n \"conditionName\": \"pushDefault\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1090026', '/Chara/Npc/Populace/PopulaceStandard', '0', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1090026', '/Chara/Npc/Populace/PopulaceStandard', '0', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1090027', '/Chara/Npc/Populace/PopulaceStandard', '0', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1090027', '/Chara/Npc/Populace/PopulaceStandard', '0', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1090028', '/Chara/Npc/Populace/PopulaceStandard', '0', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1090028', '/Chara/Npc/Populace/PopulaceStandard', '0', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
@ -2753,8 +2753,8 @@ INSERT INTO `gamedata_actor_class` VALUES ('1090368', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1090369', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1090369', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1090370', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1090370', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1090371', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1090371', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1090372', '/Chara/Npc/Populace/PopulaceStandard', '0', '19', '{\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"pushWithCircleEventConditions\": [\r\n {\r\n \"radius\": \"20.0\",\r\n \"outwards\": \"false\",\r\n \"silent\": \"true\",\r\n \"conditionName\": \"pushDefault\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1090372', '/Chara/Npc/Populace/PopulaceStandard', '0', '19', '{\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"pushWithCircleEventConditions\": [\r\n {\r\n \"radius\": \"6.0\",\r\n \"outwards\": \"false\",\r\n \"silent\": \"false\",\r\n \"conditionName\": \"pushDefault\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1090373', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1090373', '/Chara/Npc/Object/OpeningStoperW0B1', '0', '1', '{\r\n \"talkEventConditions\": [],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 1,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": [\r\n {\r\n \"conditionName\": \"exit\",\r\n \"radius\": 4.0,\r\n \"silent\": true,\r\n \"outwards\": false\r\n },\r\n {\r\n \"conditionName\": \"caution\",\r\n \"radius\": 5.0,\r\n \"silent\": true,\r\n \"outwards\": false\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1090374', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1090374', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1090375', '/Chara/Npc/Populace/PopulaceStandard', '0', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1090375', '/Chara/Npc/Populace/PopulaceStandard', '0', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1090376', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1090376', '', '0', '0', null);
@ -2765,8 +2765,8 @@ INSERT INTO `gamedata_actor_class` VALUES ('1090380', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1090381', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1090381', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1090382', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1090382', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1090383', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1090383', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1090384', '/Chara/Npc/Object/OpeningStoperF0B1', '0', '0', '{\r\n \"talkEventConditions\": [],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 1,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": [\r\n {\r\n \"conditionName\": \"exit\",\r\n \"radius\": 40.0,\r\n \"silent\": true,\r\n \"outwards\": true\r\n },\r\n {\r\n \"conditionName\": \"caution\",\r\n \"radius\": 30.0,\r\n \"silent\": true,\r\n \"outwards\": true\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1090384', '/Chara/Npc/Object/OpeningStoperF0B1', '0', '1', '{\r\n \"talkEventConditions\": [],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 1,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": [\r\n {\r\n \"conditionName\": \"exit\",\r\n \"radius\": 40.0,\r\n \"silent\": true,\r\n \"outwards\": true\r\n },\r\n {\r\n \"conditionName\": \"caution\",\r\n \"radius\": 30.0,\r\n \"silent\": true,\r\n \"outwards\": true\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1090385', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1090385', '/Chara/Npc/Object/OpeningStoperW0B1', '0', '1', '{\r\n \"talkEventConditions\": [],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 1,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": [\r\n {\r\n \"conditionName\": \"exit\",\r\n \"radius\": 40.0,\r\n \"silent\": true,\r\n \"outwards\": true\r\n },\r\n {\r\n \"conditionName\": \"caution\",\r\n \"radius\": 30.0,\r\n \"silent\": true,\r\n \"outwards\": true\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1090386', '/Chara/Npc/Populace/PopulaceStandard', '0', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1090386', '/Chara/Npc/Populace/PopulaceStandard', '0', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1090387', '/Chara/Npc/Populace/PopulaceStandard', '0', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('1090387', '/Chara/Npc/Populace/PopulaceStandard', '0', '19', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1090388', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1090388', '', '0', '0', null);
@ -3042,7 +3042,7 @@ INSERT INTO `gamedata_actor_class` VALUES ('1200036', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1200037', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1200037', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1200038', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1200038', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1200039', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1200039', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1200040', '', '4010016', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1200040', '/Chara/Npc/Object/GuildleveWarpPoint', '4010016', '2', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"pushCommand\"\r\n },\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"pushWithCircleEventConditions\": [\r\n {\r\n \"radius\": \"5.0\",\r\n \"outwards\": \"false\",\r\n \"silent\": \"true\",\r\n \"conditionName\": \"pushCommandIn\"\r\n },\r\n {\r\n \"radius\": \"5.0\",\r\n \"outwards\": \"true\",\r\n \"silent\": \"true\",\r\n \"conditionName\": \"pushCommandOut\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1200041', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1200041', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1200042', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1200042', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1200043', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1200043', '', '0', '0', null);
@ -3163,7 +3163,7 @@ INSERT INTO `gamedata_actor_class` VALUES ('1200157', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1200158', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1200158', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1200159', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1200159', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1200160', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1200160', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1200161', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1200161', '/Chara/Npc/Object/GuildleveBonusTreasureBox', '2', '0', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('1200162', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1200162', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1200163', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1200163', '', '0', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('1200164', '', '0', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('1200164', '', '0', '0', null);
@ -5701,7 +5701,7 @@ INSERT INTO `gamedata_actor_class` VALUES ('2201309', '', '3201309', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('2201401', '', '3201401', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2201401', '', '3201401', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('2201402', '', '3201402', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2201402', '', '3201402', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('2201403', '', '3201403', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2201403', '', '3201403', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('2201404', '', '3201405', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2201404', '/Chara/Npc/Monster/Wolf/WolfStandard', '3201405', '7', '{\r\n \"talkEventConditions\": [],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": []\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('2201405', '', '3201419', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2201405', '', '3201419', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('2201406', '', '3201404', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2201406', '', '3201404', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('2201407', '', '3201406', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2201407', '', '3201406', '0', null);
@ -5882,7 +5882,7 @@ INSERT INTO `gamedata_actor_class` VALUES ('2203201', '', '3203201', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('2203202', '', '3203202', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2203202', '', '3203202', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('2203203', '', '3203203', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2203203', '', '3203203', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('2203204', '', '3203204', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2203204', '', '3203204', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('2203301', '', '3203301', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2203301', '/Chara/Npc/Monster/Goobbue/GoobbueLesserStandard', '3203301', '7', '{\r\n \"talkEventConditions\": [],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": []\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('2203302', '', '3203302', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2203302', '', '3203302', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('2203303', '', '3203303', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2203303', '', '3203303', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('2203401', '', '3203401', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2203401', '', '3203401', '0', null);
@ -6665,12 +6665,12 @@ INSERT INTO `gamedata_actor_class` VALUES ('2289041', '', '3280323', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('2289042', '', '3280324', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2289042', '', '3280324', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('2289043', '', '3280325', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2289043', '', '3280325', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('2289044', '', '3280403', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2289044', '', '3280403', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('2290001', '/Chara/Npc/Monster/FighterAlly/FighterAllyOpeningHealer', '1900006', '7', '{\r\n \"talkEventConditions\": [],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": []\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('2290001', '/Chara/Npc/Monster/Fighter/FighterAllyOpeningHealer', '1900006', '7', '{\r\n \"talkEventConditions\": [],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": []\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('2290002', '/Chara/Npc/Monster/FighterAlly/FighterAllyOpeningAttacker', '1600179', '7', '{\r\n \"talkEventConditions\": [],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": []\r\n}'); INSERT INTO `gamedata_actor_class` VALUES ('2290002', '/Chara/Npc/Monster/Fighter/FighterAllyOpeningAttacker', '1600179', '7', '{\r\n \"talkEventConditions\": [],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": []\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('2290003', '', '1200024', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2290003', '/Chara/Npc/Monster/Fighter/FighterAllyOpeningHealer', '1200024', '7', '{\r\n \"talkEventConditions\": [],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": []\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('2290004', '', '1000010', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2290004', '/Chara/Npc/Monster/Fighter/FighterAllyOpeningAttacker', '1000010', '7', '{\r\n \"talkEventConditions\": [],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": []\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('2290005', '', '1400004', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2290005', '/Chara/Npc/Monster/Fighter/FighterAllyOpeningHealer', '1400004', '7', '{\r\n \"talkEventConditions\": [],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": []\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('2290006', '', '2300120', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2290006', '/Chara/Npc/Monster/Fighter/FighterAllyOpeningAttacker', '2300120', '7', '{\r\n \"talkEventConditions\": [],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ],\r\n \"emoteEventConditions\": [],\r\n \"pushWithCircleEventConditions\": []\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('2290007', '', '1500024', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2290007', '', '1500024', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('2290008', '', '1900054', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2290008', '', '1900054', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('2290009', '', '1000029', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('2290009', '', '1000029', '0', null);
@ -7913,34 +7913,34 @@ INSERT INTO `gamedata_actor_class` VALUES ('9114433', '', '1500001', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('9114434', '', '1500001', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114434', '', '1500001', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('9114435', '', '1500001', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114435', '', '1500001', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('9114436', '', '1900001', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114436', '', '1900001', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('9114437', '', '1000002', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114437', '/Chara/Npc/Debug/PopulaceMenuMan', '1000002', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114438', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114438', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114439', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114439', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114440', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114440', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114441', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114441', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114442', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114442', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114443', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114443', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114444', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114444', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114445', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114445', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114446', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114446', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114447', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114447', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114448', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114448', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114449', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114449', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114450', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114450', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114451', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114451', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114452', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114452', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114453', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114453', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114454', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114454', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114455', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114455', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114456', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114456', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114457', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114457', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114458', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114458', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114459', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114459', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114460', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114460', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114461', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114461', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114462', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114462', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114463', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114463', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114464', '', '1000003', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114464', '/Chara/Npc/Debug/PopulaceQuestTestManStandard', '1000003', '3', '{\r\n \"talkEventConditions\": [\r\n {\r\n \"unknown1\": 4,\r\n \"unknown2\": 0,\r\n \"conditionName\": \"talkDefault\"\r\n }\r\n ],\r\n \"noticeEventConditions\": [\r\n {\r\n \"unknown1\": 0,\r\n \"unknown2\": 1,\r\n \"conditionName\": \"noticeEvent\"\r\n }\r\n ]\r\n}');
INSERT INTO `gamedata_actor_class` VALUES ('9114465', '', '1400012', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114465', '', '1400012', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('9114466', '', '1400012', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9114466', '', '1400012', '0', null);
INSERT INTO `gamedata_actor_class` VALUES ('9115401', '', '1', '0', null); INSERT INTO `gamedata_actor_class` VALUES ('9115401', '', '1', '0', null);

View File

@ -4,7 +4,7 @@ Source Host: localhost
Source Database: ffxiv_server Source Database: ffxiv_server
Target Host: localhost Target Host: localhost
Target Database: ffxiv_server Target Database: ffxiv_server
Date: 1/10/2017 11:58:58 PM Date: 3/7/2017 8:31:27 AM
*/ */
SET FOREIGN_KEY_CHECKS=0; SET FOREIGN_KEY_CHECKS=0;
@ -163,3 +163,4 @@ INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280125', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280126', '10002', '0', '8'); INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280126', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280127', '10002', '0', '8'); INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280127', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1200027', '10008', '0', '8'); INSERT INTO `gamedata_actor_pushcommand` VALUES ('1200027', '10008', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1200040', '10003', '0', '12');

View File

@ -4,12 +4,10 @@ Source Host: localhost
Source Database: ffxiv_server Source Database: ffxiv_server
Target Host: localhost Target Host: localhost
Target Database: ffxiv_server Target Database: ffxiv_server
Date: 8/14/2016 9:43:16 AM Date: 3/7/2017 8:30:24 AM
*/ */
SET FOREIGN_KEY_CHECKS = 0; SET FOREIGN_KEY_CHECKS=0;
SET autocommit = 0;
-- ---------------------------- -- ----------------------------
-- Table structure for server_spawn_locations -- Table structure for server_spawn_locations
-- ---------------------------- -- ----------------------------
@ -28,7 +26,7 @@ CREATE TABLE `server_spawn_locations` (
`animationId` int(10) unsigned NOT NULL DEFAULT '0', `animationId` int(10) unsigned NOT NULL DEFAULT '0',
`customDisplayName` varchar(32) DEFAULT NULL, `customDisplayName` varchar(32) DEFAULT NULL,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=729 DEFAULT CHARSET=latin1; ) ENGINE=InnoDB AUTO_INCREMENT=846 DEFAULT CHARSET=latin1;
-- ---------------------------- -- ----------------------------
-- Records -- Records
@ -148,7 +146,6 @@ INSERT INTO `server_spawn_locations` VALUES ('112', '1200194', 'task_board', '17
INSERT INTO `server_spawn_locations` VALUES ('113', '1200210', '', '175', '', '0', '-169.94', '191.8', '25.9', '0.523', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('113', '1200210', '', '175', '', '0', '-169.94', '191.8', '25.9', '0.523', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('114', '1200288', '', '175', '', '0', '-189.13', '190', '15.59', '-1.04', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('114', '1200288', '', '175', '', '0', '-189.13', '190', '15.59', '-1.04', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('115', '1280031', 'uldah_aetheryte', '175', '', '0', '-240.45', '185.93', '-9.56', '0', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('115', '1280031', 'uldah_aetheryte', '175', '', '0', '-240.45', '185.93', '-9.56', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('116', '1280031', '', '175', '', '0', '-240.45', '185.93', '-9.56', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('117', '1290004', '', '175', '', '0', '-239.02', '190', '55.67', '0', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('117', '1290004', '', '175', '', '0', '-239.02', '190', '55.67', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('118', '1500116', 'gogorano', '175', '', '0', '-77.82', '192.1', '4.29', '0.23', '0', '1040', null); INSERT INTO `server_spawn_locations` VALUES ('118', '1500116', 'gogorano', '175', '', '0', '-77.82', '192.1', '4.29', '0.23', '0', '1040', null);
INSERT INTO `server_spawn_locations` VALUES ('119', '1500129', 'yayatoki', '175', '', '0', '-27.31', '196', '87.25', '1.91', '0', '1040', null); INSERT INTO `server_spawn_locations` VALUES ('119', '1500129', 'yayatoki', '175', '', '0', '-27.31', '196', '87.25', '1.91', '0', '1040', null);
@ -497,7 +494,6 @@ INSERT INTO `server_spawn_locations` VALUES ('461', '1090386', '', '230', '', '0
INSERT INTO `server_spawn_locations` VALUES ('462', '1090387', '', '230', '', '0', '-807.66', '8', '234.42', '0', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('462', '1090387', '', '230', '', '0', '-807.66', '8', '234.42', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('463', '1090007', '', '230', '', '0', '-490.38', '42.8', '417.81', '2.45', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('463', '1090007', '', '230', '', '0', '-490.38', '42.8', '417.81', '2.45', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('464', '1090400', '', '230', '', '0', '-838.1', '6', '231.94', '0', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('464', '1090400', '', '230', '', '0', '-838.1', '6', '231.94', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('465', '1280001', '', '230', '', '0', '-395.1', '42.5', '337.12', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('466', '1200119', 'dusty_tomes', '230', '', '0', '-789.24', '14', '195', '0', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('466', '1200119', 'dusty_tomes', '230', '', '0', '-789.24', '14', '195', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('467', '1200027', '', '230', '', '0', '-592', '18', '207', '1', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('467', '1200027', '', '230', '', '0', '-592', '18', '207', '1', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('468', '5900001', 'guild_mrd_mid', '230', '', '0', '-775', '10', '387', '0', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('468', '5900001', 'guild_mrd_mid', '230', '', '0', '-775', '10', '387', '0', '0', '0', null);
@ -544,7 +540,7 @@ INSERT INTO `server_spawn_locations` VALUES ('508', '1001493', 'dapper_dan', '18
INSERT INTO `server_spawn_locations` VALUES ('509', '1001494', 'loutish_lad', '184', '', '0', '-9.13', '196', '114.84', '2.33', '0', '1031', null); INSERT INTO `server_spawn_locations` VALUES ('509', '1001494', 'loutish_lad', '184', '', '0', '-9.13', '196', '114.84', '2.33', '0', '1031', null);
INSERT INTO `server_spawn_locations` VALUES ('510', '1001495', 'gil-digging_mistress', '184', '', '0', '-19.11', '196', '95.09', '2.13', '0', '1037', null); INSERT INTO `server_spawn_locations` VALUES ('510', '1001495', 'gil-digging_mistress', '184', '', '0', '-19.11', '196', '95.09', '2.13', '0', '1037', null);
INSERT INTO `server_spawn_locations` VALUES ('511', '1001496', 'twittering_tomboy', '184', '', '0', '-32.37', '196', '80.75', '-0.74', '0', '1101', null); INSERT INTO `server_spawn_locations` VALUES ('511', '1001496', 'twittering_tomboy', '184', '', '0', '-32.37', '196', '80.75', '-0.74', '0', '1101', null);
INSERT INTO `server_spawn_locations` VALUES ('512', '1290002', 'priv_areapast_exit', '184', '', '0', '-22.81', '196', '87.82', '0', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('512', '1280127', '', '0', '', '0', '-400', '19', '338', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('513', '1090372', 'exit_trigger', '184', '', '0', '-13', '194.91', '76.75', '-2.72', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('513', '1090372', 'exit_trigger', '184', '', '0', '-13', '194.91', '76.75', '-2.72', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('514', '1000438', 'well-traveled_merchant', '193', '', '0', '-0.71', '10.35', '-40.51', '0.3', '0', '1035', null); INSERT INTO `server_spawn_locations` VALUES ('514', '1000438', 'well-traveled_merchant', '193', '', '0', '-0.71', '10.35', '-40.51', '0.3', '0', '1035', null);
INSERT INTO `server_spawn_locations` VALUES ('515', '1000439', 'tipsy_adventurer', '193', '', '0', '-1.87', '9.15', '-30.67', '2.44', '0', '1032', null); INSERT INTO `server_spawn_locations` VALUES ('515', '1000439', 'tipsy_adventurer', '193', '', '0', '-1.87', '9.15', '-30.67', '2.44', '0', '1032', null);
@ -565,9 +561,9 @@ INSERT INTO `server_spawn_locations` VALUES ('529', '1090025', 'exit_door', '193
INSERT INTO `server_spawn_locations` VALUES ('530', '2205403', '', '193', '', '0', '-3.02', '17.35', '14.24', '-2.81', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('530', '2205403', '', '193', '', '0', '-3.02', '17.35', '14.24', '-2.81', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('531', '2290001', '', '193', '', '0', '-8', '16.35', '6', '0.5', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('531', '2290001', '', '193', '', '0', '-8', '16.35', '6', '0.5', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('532', '2290002', '', '193', '', '0', '0', '16.35', '22', '3', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('532', '2290002', '', '193', '', '0', '0', '16.35', '22', '3', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('533', '1000009', '', '166', '', '0', '353.37', '3.88', '-698.98', '-2.6', '0', '1007', null); INSERT INTO `server_spawn_locations` VALUES ('533', '1000009', 'yda', '166', '', '0', '353.37', '3.88', '-698.98', '-2.6', '0', '1007', null);
INSERT INTO `server_spawn_locations` VALUES ('534', '1000010', '', '166', '', '0', '353.37', '3.75', '-703.09', '-2.6', '0', '1000', null); INSERT INTO `server_spawn_locations` VALUES ('534', '1000010', 'papalymo', '166', '', '0', '353.37', '3.75', '-703.09', '-2.6', '0', '1000', null);
INSERT INTO `server_spawn_locations` VALUES ('535', '1090384', '', '166', '', '0', '356.09', '3.74', '-701.62', '-1.41', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('535', '1090384', 'openingstoper_gridania', '166', '', '0', '356.09', '3.74', '-701.62', '-1.41', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('536', '1080120', '', '244', '', '0', '159.84', '0.7', '167.17', '-0.2', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('536', '1080120', '', '244', '', '0', '159.84', '0.7', '167.17', '-0.2', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('537', '1200334', '', '244', '', '0', '159.98', '0.02', '151.9', '-0.44', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('537', '1200334', '', '244', '', '0', '159.98', '0.02', '151.9', '-0.44', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('538', '1200376', '', '244', '', '0', '164.91', '-0.1', '167.03', '0.05', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('538', '1200376', '', '244', '', '0', '164.91', '-0.1', '167.03', '0.05', '0', '0', null);
@ -659,8 +655,8 @@ INSERT INTO `server_spawn_locations` VALUES ('624', '5900001', 'centaurs_eye', '
INSERT INTO `server_spawn_locations` VALUES ('625', '5900001', 'guild_lnc', '206', '', '0', '172', '28', '-1576', '0', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('625', '5900001', 'guild_lnc', '206', '', '0', '172', '28', '-1576', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('626', '5900001', 'guild_arc', '206', '', '0', '227', '12', '-1264', '0', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('626', '5900001', 'guild_arc', '206', '', '0', '227', '12', '-1264', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('627', '5900001', 'guild_cnj', '206', '', '0', '-325', '8', '-1669', '0', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('627', '5900001', 'guild_cnj', '206', '', '0', '-325', '8', '-1669', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('628', '5900004', 'door1', '184', '', '0', '-14', '196', '112', '0', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('628', '5900001', 'door1', '184', '', '0', '-14', '196', '112', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('629', '5900004', 'door2', '184', '', '0', '12', '196', '184', '0', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('629', '5900001', 'door2', '184', '', '0', '12', '196', '184', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('630', '5900011', 'uldah_mapshipport_2', '209', '', '0', '-127', '271', '157', '0', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('630', '5900011', 'uldah_mapshipport_2', '209', '', '0', '-127', '271', '157', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('631', '1000466', 'frances', '206', '', '0', '11.85', '8.75', '-1266.45', '1.48', '0', '1041', null); INSERT INTO `server_spawn_locations` VALUES ('631', '1000466', 'frances', '206', '', '0', '11.85', '8.75', '-1266.45', '1.48', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('632', '1200288', 'miniaeth_adv', '155', '', '0', '98.77', '3.59', '-1213.67', '2.47', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('632', '1200288', 'miniaeth_adv', '155', '', '0', '98.77', '3.59', '-1213.67', '2.47', '0', '0', null);
@ -726,7 +722,7 @@ INSERT INTO `server_spawn_locations` VALUES ('692', '1000067', 'dadalo', '206',
INSERT INTO `server_spawn_locations` VALUES ('693', '1000066', 'alixe', '206', '', '0', '103.75', '20.4', '-1468.51', '2.18', '0', '2021', null); INSERT INTO `server_spawn_locations` VALUES ('693', '1000066', 'alixe', '206', '', '0', '103.75', '20.4', '-1468.51', '2.18', '0', '2021', null);
INSERT INTO `server_spawn_locations` VALUES ('694', '1000068', 'kain', '206', '', '0', '100.33', '20.22', '-1482.5', '-0.5', '0', '2023', null); INSERT INTO `server_spawn_locations` VALUES ('694', '1000068', 'kain', '206', '', '0', '100.33', '20.22', '-1482.5', '-0.5', '0', '2023', null);
INSERT INTO `server_spawn_locations` VALUES ('695', '1001189', 'pukiki', '206', '', '0', '33.04', '17.29', '-1366.27', '0.83', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('695', '1001189', 'pukiki', '206', '', '0', '33.04', '17.29', '-1366.27', '0.83', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('696', '1001079', 'drystbrod', '206', '', '0', '106.66', '22', '-1483.73', '-0.74', '0', '1041', null); INSERT INTO `server_spawn_locations` VALUES ('696', '1001079', 'dyrstbrod', '206', '', '0', '106.66', '22', '-1483.73', '-0.74', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('697', '1500325', 'serpent_private_holmes', '206', '', '0', '201.78', '9.53', '-1245.48', '1.53', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('697', '1500325', 'serpent_private_holmes', '206', '', '0', '201.78', '9.53', '-1245.48', '1.53', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('698', '1001188', 'maisenta', '206', '', '0', '221.77', '9.4', '-1230.49', '-2.29', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('698', '1001188', 'maisenta', '206', '', '0', '221.77', '9.4', '-1230.49', '-2.29', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('699', '1000463', 'nonolato', '206', '', '0', '232.88', '12.46', '-1268.94', '-1.38', '0', '1015', null); INSERT INTO `server_spawn_locations` VALUES ('699', '1000463', 'nonolato', '206', '', '0', '232.88', '12.46', '-1268.94', '-1.38', '0', '1015', null);
@ -755,7 +751,121 @@ INSERT INTO `server_spawn_locations` VALUES ('721', '1000071', 'bertennant', '15
INSERT INTO `server_spawn_locations` VALUES ('722', '1001433', 'ulta', '155', '', '0', '192.07', '-0.85', '-1159.97', '0.78', '0', '1015', null); INSERT INTO `server_spawn_locations` VALUES ('722', '1001433', 'ulta', '155', '', '0', '192.07', '-0.85', '-1159.97', '0.78', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('723', '1001432', 'mathye', '155', '', '0', '179.56', '2.75', '-1144.66', '-2.97', '0', '1041', null); INSERT INTO `server_spawn_locations` VALUES ('723', '1001432', 'mathye', '155', '', '0', '179.56', '2.75', '-1144.66', '-2.97', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('724', '1000951', 'lonsygg', '155', '', '0', '162.79', '-1.48', '-1153.32', '1.94', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('724', '1000951', 'lonsygg', '155', '', '0', '162.79', '-1.48', '-1153.32', '1.94', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('727', '1200021', 'testship', '230', '', '0', '-897', '0', '239', '0', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('728', '1200052', 'test_mining_point', '141', '', '0', '-8.48', '45.36', '139.5', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('728', '1200052', '', '155', '', '0', '100', '7', '-1200', '0', '0', '0', null); INSERT INTO `server_spawn_locations` VALUES ('729', '5900013', 'ship_route_1', '200', '', '0', '0', '10', '-128', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('730', '5900014', 'ship_route_2', '200', '', '0', '0', '10', '128', '0', '0', '0', null);
COMMIT; INSERT INTO `server_spawn_locations` VALUES ('731', '1280001', 'limsa_aetheryte', '230', '', '0', '-400', '43', '338', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('732', '1280002', 'camp_beardedrock_aetheryte', '128', '', '0', '32', '-31', '-31', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('733', '1280003', 'camp_skullvalley_aetheryte', '129', '', '0', '-992', '62', '-1121', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('734', '1280004', 'camp_baldknoll_aetheryte', '129', '', '0', '-1889', '54', '-1379', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('735', '1280005', 'camp_bloodshore_aetheryte', '130', '', '0', '1128', '46', '-926', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('736', '1280006', 'camp_ironlake_aetheryte', '135', '', '0', '-284', '79', '-2276', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('737', '1280007', 'cedarwood_aetherytegate', '128', '', '0', '588', '55', '-1', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('738', '1280008', 'widowcliffs_aetherytegate', '128', '', '0', '966', '50', '833', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('739', '1280009', 'morabybay_aetherytegate', '128', '', '0', '318', '25', '581', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('740', '1280010', 'woadwhisper_aetherytegate', '129', '', '0', '-636', '50', '-1287', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('741', '1280011', 'islesofumbra_aetherytegate', '129', '', '0', '-2018', '61', '-763', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('742', '1280012', 'tigerhelm_aetherytegate', '130', '', '0', '1628', '62', '-449', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('743', '1280013', 'southbloodshore_aetherytegate', '130', '', '0', '1522', '3', '-669', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('744', '1280014', 'agelysswise_aetherytegate', '130', '', '0', '1410', '55', '-1650', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('745', '1280015', 'zelmasrun_aetherytegate', '135', '', '0', '-125', '61', '-1440', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('746', '1280016', 'bronzelake_aetherytegate', '135', '', '0', '-320', '53', '-1826', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('747', '1280017', 'oakwood_aetherytegate', '135', '', '0', '-894', '42', '-2188', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('748', '1280018', 'mistbeardcove_aetherytegate', '0', '', '0', '-1694.5', '-19', '-1534', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('749', '1280020', 'cassiopeia_aetherytegate', '0', '', '0', '1344.5', '-53', '-869', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('750', '1280031', 'uldah_aetheryte', '175', '', '0', '240.45', '185.93', '-9.56', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('751', '1280032', 'camp_blackbrush_aetheryte', '170', '', '0', '33', '201', '-482', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('752', '1280033', 'camp_drybone_aetheryte', '171', '', '0', '1251', '265', '-545', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('753', '1280034', 'camp_horizon_aetheryte', '172', '', '0', '-1315', '57', '-147', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('754', '1280035', 'camp_bluefog_aetheryte', '173', '', '0', '-165', '281', '-1699', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('755', '1280036', 'camp_brokenwater_aetheryte', '174', '', '0', '1686', '297', '995', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('756', '1280037', 'cactusbasin_aetherytegate', '170', '', '0', '639', '185', '122', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('757', '1280038', 'foursisters_aetherytegate', '170', '', '0', '539', '218', '-14', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('758', '1280039', 'halatali_aetherytegate', '171', '', '0', '1599', '259', '-233', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('759', '1280040', 'burningwall_aetherytegate', '171', '', '0', '2010', '281', '-768', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('760', '1280041', 'sandgate_aetherytegate', '171', '', '0', '2015', '248', '64', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('761', '1280042', 'nophicaswells_aetherytegate', '172', '', '0', '-866', '89', '376', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('762', '1280043', 'footfalls_aetherytegate', '172', '', '0', '-1653', '25', '-469', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('763', '1280044', 'scorpionkeep_aetherytegate', '172', '', '0', '-1223', '70', '191', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('764', '1280045', 'hiddengorge_aetherytegate', '173', '', '0', '-635', '281', '-1797', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('765', '1280046', 'seaofspires_aetherytegate', '173', '', '0', '447', '260', '-2158', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('766', '1280047', 'cutterspass_aetherytegate', '173', '', '0', '-710', '281', '-2212', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('767', '1280048', 'redlabyrinth_aetherytegate', '174', '', '0', '1797', '249', '1856', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('768', '1280049', 'burntlizardcreek_aetherytegate', '174', '', '0', '1185', '280', '1407', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('769', '1280050', 'zanrak_aetherytegate', '174', '', '0', '2416', '249', '1535', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('770', '1280052', 'nanawamines_aetherytegate', '0', '', '0', '80.5', '169', '-1268.5', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('771', '1280054', 'copperbellmines_aetherytegate', '0', '', '0', '-621', '112', '-118', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('772', '1280057', '', '0', '', '0', '33', '201', '-482', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('773', '1280058', '', '0', '', '0', '-1315', '57', '-147', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('774', '1280059', '', '0', '', '0', '-165', '281', '-1699', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('775', '1280061', 'gridania_aetheryte', '206', '', '0', '-130.63', '16.08', '-1323.99', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('776', '1280062', 'camp_bentbranch_aetheryte', '150', '', '0', '287', '5', '-542', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('777', '1280063', 'camp_nineivies_aetheryte', '151', '', '0', '1698', '21', '-865', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('778', '1280064', 'camp_emeraldmoss_aetheryte', '152', '', '0', '-1054', '21', '-1761', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('779', '1280065', 'camp_crimsonbark_aetheryte', '153', '', '0', '-1568', '-11', '-552', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('780', '1280066', 'camp_tranquil_aetheryte', '154', '', '0', '734', '-10', '1127', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('781', '1280067', 'humblehearth_aetherytegate', '150', '', '0', '-93', '5', '-546', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('782', '1280068', 'sorrelhaven_aetherytegate', '150', '', '0', '-285', '-21', '-46', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('783', '1280069', 'fivehangs_aetherytegate', '150', '', '0', '636', '17', '-324', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('784', '1280070', 'verdantdrop_aetherytegate', '151', '', '0', '1529', '27', '-1147', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('785', '1280071', 'lynxpeltpatch_aetherytegate', '151', '', '0', '1296', '48', '-1534', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('786', '1280072', 'larkscall_aetherytegate', '151', '', '0', '2297', '33', '-703', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('787', '1280073', 'treespeak_aetherytegate', '152', '', '0', '-888', '40', '-2192', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('788', '1280074', 'aldersprings_aetherytegate', '152', '', '0', '-1567', '17', '-2593', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('789', '1280075', 'lasthold_aetherytegate', '152', '', '0', '-801', '32', '-2792', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('790', '1280076', 'lichenweed_aetherytegate', '153', '', '0', '-1908', '1', '-1042', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('791', '1280077', 'mumurrills_aetherytegate', '153', '', '0', '-2158', '-45', '-166', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('792', '1280078', 'turningleaf_aetherytegate', '153', '', '0', '-1333', '-13', '324', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('793', '1280079', 'silentarbor_aetherytegate', '154', '', '0', '991', '-11', '600', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('794', '1280080', 'longroot_aetherytegate', '154', '', '0', '1126', '1', '1440', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('795', '1280081', 'snakemolt_aetherytegate', '154', '', '0', '189', '1', '1337', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('796', '1280082', 'muntuycellars_aetherytegate', '0', '', '0', '-689', '-15', '-2065', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('797', '1280083', 'tamtaradeeprcroft_aetherytegate', '0', '', '0', '313', '-35', '-171', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('798', '1280088', '', '0', '', '0', '-1054', '21', '-1761', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('799', '1280089', '', '0', '', '0', '-1568', '-11', '-552', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('800', '1280092', 'camp_dragonhead_aetheryte', '143', '', '0', '216', '303', '-258', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('801', '1280093', 'camp_crookedfork_aetheryte', '144', '', '0', '1122', '271', '-1149', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('802', '1280094', 'camp_glory_aetheryte', '145', '', '0', '1498', '207', '767', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('803', '1280095', 'camp_everlakes_aetheryte', '147', '', '0', '-163', '223', '1151', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('804', '1280096', 'camp_riversmeet_aetheryte', '148', '', '0', '-1761', '270', '-198', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('805', '1280097', 'boulderdowns_aetherytegate', '143', '', '0', '-517', '210', '543', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('806', '1280098', 'prominencepoint_aetherytegate', '143', '', '0', '190', '368', '-662', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('807', '1280099', 'feathergorge_aetherytegate', '143', '', '0', '960', '288', '-22', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('808', '1280100', 'maidenglen_aetherytegate', '144', '', '0', '1737', '177', '-1250', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('809', '1280101', 'hushedboughs_aetherytegate', '144', '', '0', '1390', '223', '-736', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('810', '1280102', 'scarwingfall_aetherytegate', '144', '', '0', '1788', '166', '-829', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('811', '1280103', 'weepingvale_aetherytegate', '145', '', '0', '1383', '232', '422', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('812', '1280104', 'clearwater_aetherytegate', '145', '', '0', '2160', '143', '622', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('813', '1280105', 'teriggansstand_aetherytegate', '147', '', '0', '-1', '145', '1373', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('814', '1280106', 'shepherdpeak_aetherytegate', '147', '', '0', '-64', '186', '1924', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('815', '1280107', 'fellwood_aetherytegate', '147', '', '0', '-908', '192', '2162', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('816', '1280108', 'wyrmkingspearch_aetherytegate', '148', '', '0', '-1738', '286', '-844', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('817', '1280109', 'lance_aetherytegate', '148', '', '0', '-2366', '337', '-1058', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('818', '1280110', 'twinpools_aetherytegate', '148', '', '0', '-2821', '257', '-290', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('819', '1280117', '', '0', '', '0', '216', '303', '-258', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('820', '1280118', '', '0', '', '0', '1498', '207', '767', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('821', '1280119', '', '0', '', '0', '-163', '223', '1151', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('822', '1280121', 'camp_brittlebark_aetheryte', '190', '', '0', '484', '19', '672', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('823', '1280122', 'camp_revenantstoll_aetheryte', '190', '', '0', '-400', '19', '338', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('824', '1280123', 'fogfens_aetherytegate', '190', '', '0', '-458', '-40', '-318', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('825', '1280124', 'singingshards_aetherytegate', '190', '', '0', '580', '59', '206', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('826', '1280125', 'jaggedcrestcave_aetherytegate', '190', '', '0', '-365', '-13', '-37', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('827', '1280126', '', '0', '', '0', '484', '19', '672', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('828', '1280127', '', '0', '', '0', '-400', '19', '338', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('829', '2290004', 'opening_thancred', '184', '', '0', '-26.41', '192', '39.52', '1.2', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('830', '2290003', 'opening_niellefresne', '184', '', '0', '-11.86', '192', '35.06', '-0.8', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('831', '2203301', 'opening_goobbue', '184', '', '0', '-10.31', '193', '50.73', '-1.06', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('832', '1090373', 'opening_stoper_uldah', '184', '', '0', '27.42', '192', '126.94', '0.33', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('833', '1090385', 'opening_stoper_uldah_battle', '184', '', '0', '-24.34', '192', '34.22', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('834', '2201404', 'opening_wolf1', '167', '', '0', '0', '0', '0', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('835', '1000444', 'undignified_adventurer', '230', 'PrivateAreaMasterPast', '1', '-832.36', '6', '209.44', '-0.35', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('836', '1000438', 'well-traveled_merchant', '230', 'PrivateAreaMasterPast', '1', '-831.73', '6', '196.77', '0.86', '0', '1035', null);
INSERT INTO `server_spawn_locations` VALUES ('837', '1000447', 'voluptuous_vixen', '230', 'PrivateAreaMasterPast', '1', '-863.34', '4', '236.13', '0.93', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('838', '1000450', 'lanky_traveler', '230', 'PrivateAreaMasterPast', '1', '-855.68', '3.1', '258.51', '-1.56', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('839', '1000151', 'hob', '230', 'PrivateAreaMasterPast', '1', '-834.77', '6', '241.55', '-2.79', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('840', '1000260', 'pearly-toothed_porter', '230', 'PrivateAreaMasterPast', '1', '-823.86', '6', '198.95', '0.13', '0', '1070', null);
INSERT INTO `server_spawn_locations` VALUES ('841', '1000264', 'pasty-faced_adventurer', '230', 'PrivateAreaMasterPast', '1', '-829.72', '6', '260.6', '-1.07', '0', '1058', null);
INSERT INTO `server_spawn_locations` VALUES ('842', '1000261', 'muscle-bound_deckhand', '230', 'PrivateAreaMasterPast', '1', '-823.75', '6', '200.27', '-2.7', '0', '1033', null);
INSERT INTO `server_spawn_locations` VALUES ('843', '1500004', 'gert', '230', 'PrivateAreaMasterPast', '1', '-809.15', '8', '230.88', '0.4', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('844', '1500005', 'lorhzant', '230', 'PrivateAreaMasterPast', '1', '-809.19', '8', '244.86', '-2.78', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('845', '1000137', 'man0l1_baderon', '133', 'PrivateAreaMasterPast', '2', '-430.844', '40.2116', '186.773', '-1.30039', '0', '1060', null);

View File

@ -4,7 +4,7 @@ Source Host: localhost
Source Database: ffxiv_server Source Database: ffxiv_server
Target Host: localhost Target Host: localhost
Target Database: ffxiv_server Target Database: ffxiv_server
Date: 12/3/2016 5:39:19 PM Date: 3/7/2017 8:30:14 AM
*/ */
SET FOREIGN_KEY_CHECKS=0; SET FOREIGN_KEY_CHECKS=0;
@ -34,7 +34,7 @@ CREATE TABLE `server_zones` (
-- Records -- Records
-- ---------------------------- -- ----------------------------
INSERT INTO `server_zones` VALUES ('0', '0', null, '--', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('0', '0', null, '--', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('128', '101', 'sea0Field01', 'Lower La Noscea', '127.0.0.1', '1989', 'ZoneMasterSeaS0', '60', '60', '21', '0', '0', '1', '0', '0'); INSERT INTO `server_zones` VALUES ('128', '101', 'sea0Field01', 'Lower La Noscea', '127.0.0.1', '1990', 'ZoneMasterSeaS0', '60', '60', '21', '0', '0', '1', '0', '0');
INSERT INTO `server_zones` VALUES ('129', '101', 'sea0Field02', 'Western La Noscea', '127.0.0.1', '1989', 'ZoneMasterSeaS0', '60', '60', '21', '0', '0', '1', '0', '0'); INSERT INTO `server_zones` VALUES ('129', '101', 'sea0Field02', 'Western La Noscea', '127.0.0.1', '1989', 'ZoneMasterSeaS0', '60', '60', '21', '0', '0', '1', '0', '0');
INSERT INTO `server_zones` VALUES ('130', '101', 'sea0Field03', 'Eastern La Noscea', '127.0.0.1', '1989', 'ZoneMasterSeaS0', '60', '60', '21', '0', '0', '1', '0', '0'); INSERT INTO `server_zones` VALUES ('130', '101', 'sea0Field03', 'Eastern La Noscea', '127.0.0.1', '1989', 'ZoneMasterSeaS0', '60', '60', '21', '0', '0', '1', '0', '0');
INSERT INTO `server_zones` VALUES ('131', '101', 'sea0Dungeon01', 'Mistbeard Cove', '127.0.0.1', '1989', 'ZoneMasterSeaS0', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('131', '101', 'sea0Dungeon01', 'Mistbeard Cove', '127.0.0.1', '1989', 'ZoneMasterSeaS0', '0', '0', '0', '0', '0', '0', '0', '0');
@ -96,7 +96,7 @@ INSERT INTO `server_zones` VALUES ('194', '111', 'ocn0Battle03', 'Rhotano Sea',
INSERT INTO `server_zones` VALUES ('195', '111', 'ocn0Battle04', 'Rhotano Sea', '127.0.0.1', '1989', 'ZoneMasterBattleOcnO0', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('195', '111', 'ocn0Battle04', 'Rhotano Sea', '127.0.0.1', '1989', 'ZoneMasterBattleOcnO0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('196', '111', 'ocn0Battle05', 'Rhotano Sea', '127.0.0.1', '1989', 'ZoneMasterBattleOcnO0', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('196', '111', 'ocn0Battle05', 'Rhotano Sea', '127.0.0.1', '1989', 'ZoneMasterBattleOcnO0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('198', '111', 'ocn0Battle06', 'Rhotano Sea', '127.0.0.1', '1989', 'ZoneMasterBattleOcnO0', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('198', '111', 'ocn0Battle06', 'Rhotano Sea', '127.0.0.1', '1989', 'ZoneMasterBattleOcnO0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('200', '111', null, 'Strait of Merlthor', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('200', '805', 'ocn0Cruise01', 'Strait of Merlthor', '127.0.0.1', '1989', 'ZoneMasterCruiseOcnO2', '65', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('201', '111', null, '-', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('201', '111', null, '-', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('204', '101', 'sea0Field02a', 'Western La Noscea', '127.0.0.1', '1989', '', '60', '60', '21', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('204', '101', 'sea0Field02a', 'Western La Noscea', '127.0.0.1', '1989', '', '60', '60', '21', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('205', '101', 'sea0Field03a', 'Eastern La Noscea', '127.0.0.1', '1989', '', '60', '60', '21', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('205', '101', 'sea0Field03a', 'Eastern La Noscea', '127.0.0.1', '1989', '', '60', '60', '21', '0', '0', '0', '0', '0');
@ -112,7 +112,7 @@ INSERT INTO `server_zones` VALUES ('232', '202', 'sea0Office01', 'Maelstrom Comm
INSERT INTO `server_zones` VALUES ('233', '205', 'wil0Office01', 'Hall of Flames', '127.0.0.1', '1989', 'ZoneMasterOfficeWilW0', '4', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('233', '205', 'wil0Office01', 'Hall of Flames', '127.0.0.1', '1989', 'ZoneMasterOfficeWilW0', '4', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('234', '204', 'fst0Office01', 'Adders\' Nest', '127.0.0.1', '1989', 'ZoneMasterOfficeFstF0', '2', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('234', '204', 'fst0Office01', 'Adders\' Nest', '127.0.0.1', '1989', 'ZoneMasterOfficeFstF0', '2', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('235', '101', null, 'Shposhae', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('235', '101', null, 'Shposhae', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('236', '101', null, 'Locke\'s Lie', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('236', '101', 'sea1Field01', 'Locke\'s Lie', '127.0.0.1', '1989', 'ZoneMasterSeaS1', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('237', '101', null, 'Turtleback Island', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('237', '101', null, 'Turtleback Island', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('238', '103', 'fst0Field04', 'Thornmarch', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('238', '103', 'fst0Field04', 'Thornmarch', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('239', '102', null, 'The Howling Eye', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('239', '102', null, 'The Howling Eye', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0');
@ -130,7 +130,7 @@ INSERT INTO `server_zones` VALUES ('253', '102', null, 'The Aurum Vale', '127.0.
INSERT INTO `server_zones` VALUES ('254', '104', null, 'Cutter\'s Cry', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('254', '104', null, 'Cutter\'s Cry', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('255', '104', null, 'Cutter\'s Cry', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('255', '104', null, 'Cutter\'s Cry', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('256', '102', null, 'The Howling Eye', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('256', '102', null, 'The Howling Eye', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('257', '109', null, 'Rivenroad', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('257', '109', 'roc1Field01', 'Rivenroad', '127.0.0.1', '1989', 'ZoneMasterRocR1', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('258', '103', null, 'North Shroud', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('258', '103', null, 'North Shroud', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('259', '103', null, 'North Shroud', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('259', '103', null, 'North Shroud', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('260', '101', null, 'Western La Noscea', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('260', '101', null, 'Western La Noscea', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0');
@ -140,7 +140,7 @@ INSERT INTO `server_zones` VALUES ('263', '104', null, 'Eastern Thanalan', '127.
INSERT INTO `server_zones` VALUES ('264', '105', 'lak0Field01', 'Transmission Tower', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '1', '0', '0'); INSERT INTO `server_zones` VALUES ('264', '105', 'lak0Field01', 'Transmission Tower', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '1', '0', '0');
INSERT INTO `server_zones` VALUES ('265', '104', null, 'The Bowl of Embers', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('265', '104', null, 'The Bowl of Embers', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('266', '105', 'lak0Field01a', 'Mor Dhona', '127.0.0.1', '1989', 'ZoneMasterLakL0', '49', '49', '11', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('266', '105', 'lak0Field01a', 'Mor Dhona', '127.0.0.1', '1989', 'ZoneMasterLakL0', '49', '49', '11', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('267', '109', null, 'Rivenroad', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('267', '109', 'roc1Field02', 'Rivenroad', '127.0.0.1', '1989', 'ZoneMasterRocR1', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('268', '109', null, 'Rivenroad', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('268', '109', 'roc1Field03', 'Rivenroad', '127.0.0.1', '1989', 'ZoneMasterRocR1', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('269', '101', null, 'Locke\'s Lie', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('269', '101', null, 'Locke\'s Lie', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `server_zones` VALUES ('270', '101', null, 'Turtleback Island', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0'); INSERT INTO `server_zones` VALUES ('270', '101', null, 'Turtleback Island', '127.0.0.1', '1989', '', '0', '0', '0', '0', '0', '0', '0', '0');

View File

@ -1,58 +1,32 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64) /*
-- MySQL Data Transfer
-- Host: localhost Database: ffxiv_database Source Host: localhost
-- ------------------------------------------------------ Source Database: ffxiv_server
-- Server version 5.7.10-log Target Host: localhost
Target Database: ffxiv_server
Date: 3/7/2017 8:29:50 AM
*/
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; SET FOREIGN_KEY_CHECKS=0;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -- ----------------------------
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -- Table structure for server_zones_privateareas
/*!40101 SET NAMES utf8 */; -- ----------------------------
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `server_zones_privateareas`
--
DROP TABLE IF EXISTS `server_zones_privateareas`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `server_zones_privateareas` ( CREATE TABLE `server_zones_privateareas` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT, `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parentZoneId` int(10) unsigned NOT NULL, `parentZoneId` int(10) unsigned NOT NULL,
`className` varchar(64) NOT NULL,
`privateAreaName` varchar(32) NOT NULL, `privateAreaName` varchar(32) NOT NULL,
`className` varchar(32) NOT NULL, `privateAreaType` int(10) unsigned NOT NULL,
`dayMusic` smallint(6) unsigned DEFAULT '0', `dayMusic` smallint(6) unsigned DEFAULT '0',
`nightMusic` smallint(6) unsigned DEFAULT '0', `nightMusic` smallint(6) unsigned DEFAULT '0',
`battleMusic` smallint(6) unsigned DEFAULT '0', `battleMusic` smallint(6) unsigned DEFAULT '0',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
-- -- ----------------------------
-- Dumping data for table `server_zones_privateareas` -- Records
-- -- ----------------------------
INSERT INTO `server_zones_privateareas` VALUES ('1', '184', '/PrivateAreaMasterPast', 'PrivateAreaMasterPast', '1', '66', '0', '0');
LOCK TABLES `server_zones_privateareas` WRITE; INSERT INTO `server_zones_privateareas` VALUES ('2', '230', '/PrivateAreaMasterPast', 'PrivateAreaMasterPast', '1', '59', '0', '0');
/*!40000 ALTER TABLE `server_zones_privateareas` DISABLE KEYS */; INSERT INTO `server_zones_privateareas` VALUES ('3', '193', 'Content/PrivateAreaMasterSimpleContent', 'ContentSimpleContent30002', '0', '0', '0', '0');
INSERT INTO `server_zones_privateareas` VALUES (1,175,'PrivateAreaMasterPast','PrivateAreaMasterPast',0,0,0); INSERT INTO `server_zones_privateareas` VALUES ('4', '133', '/PrivateAreaMasterPast', 'PrivateAreaMasterPast', '2', '40', '0', '0');
INSERT INTO `server_zones_privateareas` VALUES (2,230,'PrivateAreaMasterPast','PrivateAreaMasterPast',0,0,0);
INSERT INTO `server_zones_privateareas` VALUES (3,193,'ContentSimpleContent30002','PrivateAreaMasterSimpleContent',0,0,0);
/*!40000 ALTER TABLE `server_zones_privateareas` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:54

View File

@ -4,12 +4,10 @@ Source Host: localhost
Source Database: ffxiv_server Source Database: ffxiv_server
Target Host: localhost Target Host: localhost
Target Database: ffxiv_server Target Database: ffxiv_server
Date: 8/14/2016 9:43:22 AM Date: 3/7/2017 8:30:07 AM
*/ */
SET FOREIGN_KEY_CHECKS = 0; SET FOREIGN_KEY_CHECKS=0;
SET autocommit = 0;
-- ---------------------------- -- ----------------------------
-- Table structure for server_zones_spawnlocations -- Table structure for server_zones_spawnlocations
-- ---------------------------- -- ----------------------------
@ -23,7 +21,7 @@ CREATE TABLE `server_zones_spawnlocations` (
`spawnZ` float NOT NULL, `spawnZ` float NOT NULL,
`spawnRotation` float NOT NULL, `spawnRotation` float NOT NULL,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=latin1; ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=latin1;
-- ---------------------------- -- ----------------------------
-- Records -- Records
@ -33,7 +31,7 @@ INSERT INTO `server_zones_spawnlocations` VALUES ('2', '133', null, '15', '-444.
INSERT INTO `server_zones_spawnlocations` VALUES ('3', '175', null, '15', '-110.157', '202', '171.345', '0'); INSERT INTO `server_zones_spawnlocations` VALUES ('3', '175', null, '15', '-110.157', '202', '171.345', '0');
INSERT INTO `server_zones_spawnlocations` VALUES ('4', '193', null, '15', '0.016', '10.35', '-36.91', '0.025'); INSERT INTO `server_zones_spawnlocations` VALUES ('4', '193', null, '15', '0.016', '10.35', '-36.91', '0.025');
INSERT INTO `server_zones_spawnlocations` VALUES ('5', '166', null, '15', '356.09', '3.74', '-701.62', '-1.4'); INSERT INTO `server_zones_spawnlocations` VALUES ('5', '166', null, '15', '356.09', '3.74', '-701.62', '-1.4');
INSERT INTO `server_zones_spawnlocations` VALUES ('6', '184', null, '15', '12.63', '196.05', '131.01', '-1.34'); INSERT INTO `server_zones_spawnlocations` VALUES ('6', '184', null, '15', '5.36433', '196', '133.656', '-2.84938');
INSERT INTO `server_zones_spawnlocations` VALUES ('7', '128', null, '15', '-8.48', '45.36', '139.5', '2.02'); INSERT INTO `server_zones_spawnlocations` VALUES ('7', '128', null, '15', '-8.48', '45.36', '139.5', '2.02');
INSERT INTO `server_zones_spawnlocations` VALUES ('8', '230', 'PrivateAreaMasterPast', '15', '-838.1', '6', '231.94', '1.1'); INSERT INTO `server_zones_spawnlocations` VALUES ('8', '230', 'PrivateAreaMasterPast', '15', '-838.1', '6', '231.94', '1.1');
INSERT INTO `server_zones_spawnlocations` VALUES ('9', '193', null, '16', '-5', '16.35', '6', '0.5'); INSERT INTO `server_zones_spawnlocations` VALUES ('9', '193', null, '16', '-5', '16.35', '6', '0.5');
@ -41,5 +39,9 @@ INSERT INTO `server_zones_spawnlocations` VALUES ('10', '166', null, '16', '356.
INSERT INTO `server_zones_spawnlocations` VALUES ('11', '244', null, '15', '0.048', '0', '-5.737', '0'); INSERT INTO `server_zones_spawnlocations` VALUES ('11', '244', null, '15', '0.048', '0', '-5.737', '0');
INSERT INTO `server_zones_spawnlocations` VALUES ('12', '244', null, '15', '-160.048', '0', '-165.737', '0'); INSERT INTO `server_zones_spawnlocations` VALUES ('12', '244', null, '15', '-160.048', '0', '-165.737', '0');
INSERT INTO `server_zones_spawnlocations` VALUES ('13', '244', null, '15', '160.048', '0', '154.263', '0'); INSERT INTO `server_zones_spawnlocations` VALUES ('13', '244', null, '15', '160.048', '0', '154.263', '0');
INSERT INTO `server_zones_spawnlocations` VALUES ('14', '150', null, '15', '333.271', '5.889', '-943.275', '0.794');
COMMIT; INSERT INTO `server_zones_spawnlocations` VALUES ('15', '133', null, '15', '-8.062', '45.429', '139.364', '2.955');
INSERT INTO `server_zones_spawnlocations` VALUES ('16', '170', null, '15', '-27.015', '181.798', '-79.72', '2.513');
INSERT INTO `server_zones_spawnlocations` VALUES ('17', '184', null, '16', '-24.34', '192', '34.22', '0.78');
INSERT INTO `server_zones_spawnlocations` VALUES ('18', '184', null, '15', '-24.34', '192', '34.22', '0.78');
INSERT INTO `server_zones_spawnlocations` VALUES ('19', '184', null, '15', '-22', '196', '87', '1.8');