· 8 years ago · Nov 26, 2017, 03:18 PM
1//-------------------------- 11/25/2017 -- 15:49:34 -- yo_1.3.6.0 --
2ECHO 2017-11-25 15:49:34.305 {} <> [0] Processor Init:
3ECHO 2017-11-25 15:49:34.305 {} <> [0] Features detected: FPU VME DE PSE TSC MSR PAE MCE CX8 APIC MTRR SEP PGE MCA CMOV PAT PSE36 CLFLUSH MMX FXSR SSE SSE2 HT PNI CX16 SYSCALL XD LM LAHF_LM X2APIC
4ECHO 2017-11-25 15:49:34.305 {} <> [0] GenuineIntel, Pentium 4 (Cedar Mill)
5ECHO 2017-11-25 15:49:34.305 {} <> [0] MP detected [4 cores, 4 logical, 1 physical]
6ECHO 2017-11-25 15:49:34.305 {} <> [0]
7ECHO 2017-11-25 15:49:34.305 {} <> [0] Common KVM processor, ~2.93 Ghz
8ECHO 2017-11-25 15:49:34.305 {} <> [0] Initializing platform...
9ECHO 2017-11-25 15:49:34.305 {} <> [0] Done
10ECHO 2017-11-25 15:49:34.367 {} <> [0]
11ECHO 2017-11-25 15:49:34.367 {} <> [0] --------- Loading DIRS ---------
12INFO 2017-11-25 15:49:34.367 {} <> [0] vyo_1.3.6.0
13ECHO 2017-11-25 15:49:34.383 {} <> [0]
14WARN 2017-11-25 15:49:34.414 {01} <onStart> [0] invalid symbol ' ' after % in the message: You are trying to improve your horse to %(o1). You need to get training level to 100% within %2 seconds
15WARN 2017-11-25 15:49:34.414 {01} <onStart> [0] CmMessages::load() - can't parse message# 2946
16ECHO 2017-11-25 15:49:34.430 {01} <onStart> [0]
17--------- Initializing Directory: scripts ---------
18ECHO 2017-11-25 15:49:34.430 {02} <initServer> [0]
19--------- Initializing LiF Server: Server Scripts ---------
20ECHO 2017-11-25 15:49:34.430 {02} <initServer> [0] Loading CmConfiguration
21ECHO 2017-11-25 15:49:34.430 {02} <initServer> [0] Init of DB interface
22INFO 2017-11-25 15:49:34.430 {03} <checkServerIdLockFile> [0] Renaming log file name from 'logs/2017-11-25/S0_GAME-13874_2017-11-25-15-49-34_p3444.log' to 'logs/2017-11-25/S1_GAME-13874_2017-11-25-15-49-34_p3444.log'...
23//-------------------------- 11/25/2017 -- 15:49:34 -- yo_1.3.6.0 --
24INFO 2017-11-25 15:49:34.430 {03} <checkServerIdLockFile> [0] Log file name successfully renamed!
25INFO 2017-11-25 15:49:34.445 {02} <initServer> [0] WORLD_ID=1
26WARN 2017-11-25 15:49:34.445 {02} <initServer> [0] DB::RS(1 ms) SHOW DATABASES LIKE 'lif_1';
27WARN 2017-11-25 15:49:34.445 {02} <initServer> [0] DB::noRS(0 ms) USE `lif_1`;
28WARN 2017-11-25 15:49:34.461 {02} <initServer> [0] DB::mNoRS(14 ms) DROP TABLE IF EXISTS `_patch_execute_status`; CREATE TABLE `_patch_execute_status`( ^`Value` tinyint unsigned NOT NULL DEFAULT 0 ) ENGINE = InnoDB DEFAULT CHARSET = utf8 COLLATE = utf8_unicode_ci; INSERT INTO `_patch_execute_status` () VALUES ();
29ECHO 2017-11-25 15:49:34.461 {02} <initServer> [0] Patching database [1/2]...
30WARN 2017-11-25 15:49:34.461 {02} <initServer> [0] DB::noRS(0 ms) USE `lif_1`;
31WARN 2017-11-25 15:49:34.977 {02} <initServer> [0] DB::mNoRS(516 ms)
32-- NOTE: do not use DELIMITER here
33-- NOTE: do not use DEFINER for stored procedures and functions here
34
35DROP PROCEDURE IF EXISTS _transferSkill;
36CREATE PROCEDURE _transferSkill(
37^IN `in_oldSkillTypeID` INT UNSIGNED,
38^IN `in_newSkillTypeID` INT UNSIGNED
39)
40BEGIN
41
42-- allocate needed skill with 0 values at first.
43-- don't use "insert ... select on duplicate key update" here - it is not so safe for replication.
44insert into skills_new (CharacterID, SkillTypeID, SkillAmount, LockStatus)
45^select c.ID, in_newSkillTypeID as SkillTypeID, 0 as newSkillAmount, 1 as newLockStatus
46^^from `character` c
47^^join skills s on s.CharacterID = c.ID
48^^where s.SkillTypeID = in_oldSkillTypeID
49^^^and !exists(select * from skills_new sn where sn.CharacterID = c.ID and sn.SkillTypeID = in_newSkillTypeID)
50^^order by c.ID;
51
52-- transfer skill values
53update skills_new sn
54^join skills s on sn.CharacterID = s.CharacterID and sn.SkillTypeID = in_newSkillTypeID and s.SkillTypeID = in_oldSkillTypeID
55^set sn.SkillAmount = (sn.SkillAmount + s.SkillAmount);
56
57-- empty old skill values
58update skills
59^set SkillAmount = 0
60^where SkillTypeID = in_oldSkillTypeID;
61
62-- allocate child skills, if our skill has value >= 30
63insert into skills_new (CharacterID, SkillTypeID, SkillAmount, LockStatus)
64^select sn.CharacterID, stn.ID, 0 as newSkillAmount, 1 as newLockStatus
65^from skill_type_new stn
66^join skills_new sn on sn.SkillTypeID = stn.Parent
67^where stn.Parent = in_newSkillTypeID
68^^and sn.SkillAmount >= 30*10000000
69^^and !exists(select * from skills_new sn2 where sn2.CharacterID = sn.CharacterID and sn2.SkillTypeID = stn.ID);
70
71-- distribute skills with value > 100 to first child skill with value < 100
72-- (we can't use ORDER BY and LIMIT in multiple-table update. Also, we can't use LIMIT in subqueries due to MariaDB compatibility reasons)
73update skills_new sn
74-- select sn.SkillAmount as oldVal, (sn.SkillAmount + (sn_base.SkillAmount - 100*10000000)) as newVal, sn.* from skills_new sn
75^join skill_type_new stn on stn.ID = sn.SkillTypeID
76^-- join skills_new sn_base on sn_base.SkillTypeID = stn.Parent and sn_base.CharacterID = sn.CharacterID -- we can't use updated table in subquery, so implicitly copy it into a temporary table
77^join (select SkillTypeID, CharacterID, SkillAmount from skills_new where SkillTypeID = in_newSkillTypeID) as sn_base
78^^on sn_base.SkillTypeID = stn.Parent and sn_base.CharacterID = sn.CharacterID
79^set sn.SkillAmount = (sn.SkillAmount + (sn_base.SkillAmount - 100*10000000))
80^where sn_base.SkillAmount > 100*10000000
81^^-- and sn.SkillAmount < 100*10000000
82^^-- and stn.Parent = 1
83^^and stn.ID in
84^^(
85^^^select min(stn2.ID)
86^^^from skill_type_new stn2
87^^^-- join skills_new sn2 on sn2.SkillTypeID = stn2.ID -- we can't use updated table in subquery, so implicitly copy it into a temporary table
88^^^join (select SkillTypeID, CharacterID, SkillAmount from skills_new where SkillAmount < 100*10000000) as sn2
89^^^^on sn2.SkillTypeID = stn2.ID
90^^^where stn2.Parent = in_newSkillTypeID
91^^^^and sn2.CharacterID = sn.CharacterID
92^^^^-- and sn2.SkillAmount < 100*10000000
93^^);
94^-- order by stn.ID
95^-- limit 1
96
97-- cap skill values at 100
98update skills_new
99^set SkillAmount = 100*10000000
100^where SkillAmount > 100*10000000;
101
102END;
103
104DROP FUNCTION IF EXISTS _getMaxSkillValue;
105CREATE FUNCTION `_getMaxSkillValue`(
106^`in_parentSkillValue` INT UNSIGNED
107)
108^RETURNS INT UNSIGNED
109BEGIN
110^declare skillAmountMult INT UNSIGNED DEFAULT 10000000;
111
112^if(in_parentSkillValue < 30*skillAmountMult) then
113^^return 0;
114^elseif(in_parentSkillValue < 60*skillAmountMult) then
115^^return (30*skillAmountMult - 1);
116^end if;
117
118^return 100*skillAmountMult;
119END;
120
121DROP PROCEDURE IF EXISTS _transferSkillStraight;
122CREATE PROCEDURE _transferSkillStraight(
123^IN `in_oldSkillTypeID` INT UNSIGNED,
124^IN `in_newSkillTypeID` INT UNSIGNED
125)
126BEGIN
127
128declare skillAmountMult INT UNSIGNED DEFAULT 10000000;
129
130-- allocate needed skill with 0 values at first.
131-- don't use "insert ... select on duplicate key update" here - it is not so safe for replication.
132insert into skills_new (CharacterID, SkillTypeID, SkillAmount, LockStatus)
133^select c.ID, in_newSkillTypeID as SkillTypeID, 0 as newSkillAmount, 1 as newLockStatus
134^^from `character` c
135^^join skills s on s.CharacterID = c.ID
136^^where s.SkillTypeID = in_oldSkillTypeID
137^^^and !exists(select * from skills_new sn where sn.CharacterID = c.ID and sn.SkillTypeID = in_newSkillTypeID)
138^^order by c.ID;
139
140-- transfer skill values
141update skills_new sn
142^join skills s
143^^on sn.CharacterID = s.CharacterID
144^^and sn.SkillTypeID = in_newSkillTypeID
145^^and s.SkillTypeID = in_oldSkillTypeID
146^set sn.SkillAmount = (sn.SkillAmount + s.SkillAmount);
147
148-- empty old skill values
149update skills
150^set SkillAmount = 0
151^where SkillTypeID = in_oldSkillTypeID;
152
153-- allocate child skills, if our skill has value >= 30
154insert into skills_new (CharacterID, SkillTypeID, SkillAmount, LockStatus)
155^select sn.CharacterID, stn.ID, 0 as newSkillAmount, 1 as newLockStatus
156^from skill_type_new stn
157^join skills_new sn on sn.SkillTypeID = stn.Parent
158^where stn.Parent = in_newSkillTypeID
159^^and sn.SkillAmount >= 30*skillAmountMult
160^^and !exists(select * from skills_new sn2 where sn2.CharacterID = sn.CharacterID and sn2.SkillTypeID = stn.ID);
161
162-- cap skill values at 100
163update skills_new
164^set SkillAmount = 100*10000000
165^where SkillAmount > 100*10000000;
166
167END;
168
169
170DROP PROCEDURE IF EXISTS _transferSkillToSkillChainLimit;
171CREATE PROCEDURE _transferSkillToSkillChainLimit(
172^IN `in_oldSkillTypeID` INT UNSIGNED,
173^IN `in_newBaseSkillTypeID` INT UNSIGNED,
174^IN `in_skillAmountLimit` INT UNSIGNED
175)
176BEGIN
177
178declare skillAmountMult INT UNSIGNED DEFAULT 10000000;
179declare skillAmountLimit INT UNSIGNED DEFAULT least(greatest(in_skillAmountLimit, 30), 100); -- clamp skill amount limit at 100
180declare newBaseSkillTypeID INT UNSIGNED DEFAULT in_newBaseSkillTypeID; -- currently used parent skill in skill chain
181
182if(in_skillAmountLimit < 30 or in_skillAmountLimit > 100) then
183^SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'in_skillAmountLimit should be between 30 and 100';
184end if;
185
186while newBaseSkillTypeID is not n
187WARN 2017-11-25 15:49:34.977 {02} <initServer> [0] DB::RS(0 ms) SELECT `Value` FROM `_patch_execute_status` LIMIT 1;
188ECHO 2017-11-25 15:49:34.977 {02} <initServer> [0] Patching database [2/2]...
189WARN 2017-11-25 15:49:34.977 {02} <initServer> [0] DB::noRS(0 ms) USE `lif_1`;
190WARN 2017-11-25 15:49:35.305 {02} <initServer> [0] DB::mNoRS(330 ms) /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
191DELETE FROM `objects_types`;
192DELETE FROM `recipe`;
193DELETE FROM `recipe_requirement`;
194DELETE FROM `effects`;
195DELETE FROM `recipe_possible_blueprints`;
196DELETE FROM `skill_type`;
197/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
198--
199-- MySQL dump 10.13 Distrib 5.7.8-rc, for Win32 (AMD64)
200--
201-- Host: 192.168.0.65 Database: cm
202-- ------------------------------------------------------
203-- Server version^5.5.45-MariaDB
204/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
205/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
206/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
207/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
208
209--
210-- Dumping data for table `objects_types`
211--
212-- ORDER BY: `ID`
213
214INSERT INTO `objects_types` (`ID`, `ParentID`, `Name`, `IsContainer`, `IsMovableObject`, `IsUnmovableobject`, `IsTool`, `IsDevice`, `IsDoor`, `MaxContSize`, `Length`, `MaxStackSize`, `UnitWeight`, `BackgndImage`, `WorkAreaTop`, `WorkAreaLeft`, `WorkAreaWidth`, `WorkAreaHeight`, `BtnCloseTop`, `BtnCloseLeft`, `FaceImage`, `Description`, `BasePrice`, `OwnerTimeout`) VALUES
215(1,NULL,'System Objects',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DO NOT TRANSLATE! Root type for other utility types',NULL,NULL),
216(2,NULL,'Gameplay Objects',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DO NOT TRANSLATE! Root type for gameplay types',0,NULL),
217(3,1,'Inventory',1,0,0,0,0,0,1000000,9,0,0,'art\\images\\rootinventory',110,35,340,450,37,381,'','DO NOT TRANSLATE! Root player inventory',NULL,NULL),
218(4,1,'object_inventory',1,0,0,0,0,0,60000000,10,0,0,'art\\images\\building_window.png',352,89,575,177,46,695,'','DO NOT TRANSLATE! Building window inventory',NULL,NULL),
219(5,2,'Equipment Objects',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','DO NOT TRANSLATE! Objects that a present in 3D and 2D world',0,NULL),
220(6,2,'World objects',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','DO NOT TRANSLATE! Objects that a present in 3D world',5,NULL),
221(7,2,'Inventory objects',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','DO NOT TRANSLATE! Objects that a present only in 2D world',0,NULL),
222(8,5,'Weapons',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','DO NOT TRANSLATE! All weapon types',0,NULL),
223(9,5,'Armors',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','DO NOT TRANSLATE! All armor types',3,NULL),
224(10,5,'Tools',0,0,0,1,0,0,0,0,0,0,'',0,0,0,0,0,0,'','DO NOT TRANSLATE! All tool types that can be held in hands and represented in 3D world',1,NULL),
225(11,5,'Miscellaneous',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','',301,NULL),
226(12,6,'Indoor static objects',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','DO NOT TRANSLATE! Small static objects (furniture, decorations, small devices)',5,NULL),
227(13,6,'Buildings',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','DO NOT TRANSLATE! Buildings (modular and not)',10,NULL),
228(14,6,'Outdoor static',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','DO NOT TRANSLATE! Small static objects (devices also)',18500,NULL),
229(15,6,'Movable objects',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','',4800,NULL),
230(16,7,'Raw materials',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','',0,NULL),
231(17,7,'Processed materials',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','',2,NULL),
232(18,7,'Manufactured products',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','',4,NULL),
233(19,7,'Craft tools',0,0,0,1,0,0,0,0,0,0,'',0,0,0,0,0,0,'','',20,NULL),
234(20,5,'Clothes',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','',100,NULL),
235(21,7,'Food and drink',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','',1,NULL),
236(22,7,'Cocktails',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','',150,NULL),
237(23,8,'Throwing weapons',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','DO NOT TRANSLATE! Other weapons',0,NULL),
238(24,9,'Padded',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','DO NOT TRANSLATE! Padded armor of all kinds',12500,NULL),
239(25,9,'Leather',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','DO NOT TRANSLATE! Leather armor of all kinds',3,NULL),
240(26,9,'Chainmail',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','DO NOT TRANSLATE! Chainmail armor of all kinds',300,NULL),
241(27,9,'Scale',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','DO NOT TRANSLATE! Scale armor of all kinds',300,NULL),
242(28,9,'Plate',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','DO NOT TRANSLATE! Plate armor of all kinds',600,NULL),
243(29,9,'Shields',0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,0,'','DO NOT TRANSLATE! Shields of all kinds',800,NULL),
244(30,1031,'Primitive Sickle',0,0,0,1,0,0,0,3,1,1200,'',0,0,0,0,0,0,'art\\2D\\Items\\primitive_sickle.png','',3,NULL),
245(31,10,'Shovel',0,0,0,1,0,0,0,0,0,0,'',0,0,0,0,0,0,'','',3,NULL),
246(32,10,'Hammer',0,0,0,1,0,0,0,0,0,0,'',0,0,0,0,0,0,'','',11,NULL),
247(33,1031,'Sickle',0,0,0,1,0,0,0,2,1,1000,'',0,0,0,0,0,0,'art\\2D\\Items\\herbalists_sickle.png','',3100,NULL),
248(34,10,'Hatchet',0,0,0,1,0,0,0,0,0,0,'',0,0,0,0,0,0,'','',3,NULL),
249(35,10,'Pickaxe',0,0,0,1,0,0,0,0,0,0,'',0,0,0,0,0,0,'','',3,NULL),
250(36,10,'Saw',0,0,0,1,0,0,0,0,0,0,'',0,0,0,0,0,0,'','',17,NULL),
251(37,21,'Alcohol',0,0,0,1,0,0,0,0,0,0,'',0,0,0,0,0,0,'','',6,NULL),
252(38,11,'Torch',0,0,0,0,0,0,0,2,1,1200,'',0,0,0,0,0,0,'art\\2D\\Items\\torch.png','',301,NULL),
253(39,18,'Lamp',0,0,0,0,0,0,0,3,1,3000,'',0,0,0,0,0,0,'art\\2D\\Items\\lamp.png','',12300,NULL),
254(40,31,'Shovel',0,0,0,1,0,0,0,4,1,1800,'',0,0,0,0,0,0,'art\\2D\\Items\\shovel.png','',1500,NULL),
255(41,31,'Primitive Shovel',0,0,0,1,0,0,0,3,1,1200,'',0,0,0,0,0,0,'art\\2D\\Items\\primitive_shovel.png','',3,NULL),
256(42,32,'Blacksmith\'s Hammer',0,0,0,1,0,0,0,3,1,3000,'',0,0,0,0,0,0,'art\\2D\\Items\\blacksmiths_hammer.png','',1501,NULL),
257(43,32,'Primitive Hammer',0,0,0,1,0,0,0,2,1,2000,'',0,0,0,0,0,0,'art\\2D\\Items\\primitive_hammer.png','',11,NULL),
258(44,32,'Mallet',0,0,0,1,0,0,0,2,1,1000,'',0,0,0,0,0,0,'art\\2D\\Items\\mallet.png','',1706,NULL),
259(45,34,'Primitive Axe',0,0,0,1,0,0,0,2,1,1200,'',0,0,0,0,0,0,'art\\2D\\Items\\primitive_axe.png','',3,NULL),
260(46,34,'Hatchet',0,0,0,1,0,0,0,2,1,1300,'',0,0,0,0,0,0,'art\\2D\\Items\\hatchet.png','',3300,NULL),
261(47,35,'Primitive Pickaxe',0,0,0,1,0,0,0
262ECHO 2017-11-25 15:49:35.305 {02} <initServer> [0] Validating database...
263WARN 2017-11-25 15:49:35.414 {02} <initServer> [0] DB::mfRS(107 ms) CALL sp_checkForeignKeys('objects_types', 1, 1);
264WARN 2017-11-25 15:49:35.492 {02} <initServer> [0] DB::mfRS(70 ms) CALL sp_checkForeignKeys('recipe', 1, 0);
265WARN 2017-11-25 15:49:35.555 {02} <initServer> [0] DB::mfRS(69 ms) CALL sp_checkForeignKeys('recipe_requirement', 1, 0);
266WARN 2017-11-25 15:49:35.617 {02} <initServer> [0] DB::mfRS(64 ms) CALL sp_checkForeignKeys('effects', 1, 0);
267WARN 2017-11-25 15:49:35.680 {02} <initServer> [0] DB::mfRS(58 ms) CALL sp_checkForeignKeys('recipe_possible_blueprints', 1, 0);
268WARN 2017-11-25 15:49:35.742 {02} <initServer> [0] DB::mfRS(65 ms) CALL sp_checkForeignKeys('skill_type', 1, 0);
269WARN 2017-11-25 15:49:35.742 {02} <initServer> [0] DB::noRS(0 ms) USE `lif_1`;
270WARN 2017-11-25 15:49:35.742 {02} <initServer> [0] DB::RS(1 ms) SELECT ID, Name, GuildTag, HeraldryID, GuildTypeID, GREATEST(TIMESTAMPDIFF(SECOND, HeraldryChangedTimestamp, NOW()), 0) AS SecSinceHeraldryChange FROM guilds WHERE IsActive > 0;
271WARN 2017-11-25 15:49:35.742 {02} <initServer> [0] DB::RS(0 ms) select ID, GuildID, GuildRoleID from `character` where GuildID is not null;
272WARN 2017-11-25 15:49:35.742 {} <<Thread>> [0] DB::mfRS(2 ms) CALL p_issueIdRange_character(1,1000,0); [T:DBIPrimary:0x0F7C]
273WARN 2017-11-25 15:49:35.742 {02} <initServer> [0] DB::RS(2 ms) select GuildID1, GuildID2, StandingTypeID from guild_standings;
274ECHO 2017-11-25 15:49:35.742 {02} <initServer> [0] Guild ServerManager initialized (48 guilds loaded)
275WARN 2017-11-25 15:49:35.758 {02} <initServer> [0] DB::RS(3 ms) select c.ID, c.GuildLandID, l.GuildID, c.PersonalLandID, p.CharID, c.AdminLandID, s.CharID, s.GuildRoleID, s.GuildID, s.StandingTypeID, r.ID, r.CanEnter, r.CanBuild, r.CanClaim, r.CanUse, r.CanDestroy from `claims` c left join `claim_rules` r on c.ID = r.ClaimID left join `claim_subjects` s on s.ID = r.ClaimSubjectID left join `guild_lands` l on l.ID = c.GuildLandID left join `guilds` g on g.ID = l.GuildID left join `personal_lands` p on p.ID = c.PersonalLandID left join `admin_lands` a on a.ID = c.AdminLandID ;
276WARN 2017-11-25 15:49:35.758 {02} <initServer> [0] DB::RS(0 ms) select ClaimID, UnmovableObjectID from unmovable_objects_claims;
277ECHO 2017-11-25 15:49:35.758 {02} <initServer> [0] Guild actions manager is inited
278WARN 2017-11-25 15:49:35.758 {} <<Thread>> [0] DB::noRS(6 ms) UPDATE guild_actions_queue SET `OwnerConnectionID` = 0, `OwnedTimestamp` = 0 WHERE `OwnerConnectionID` NOT IN( select ID from information_schema.`PROCESSLIST` ) AND `OwnedTimestamp` < CURRENT_TIMESTAMP() -INTERVAL 300 SECOND; [T:DBIGuildsProcess:0x0D7C]
279WARN 2017-11-25 15:49:35.758 {} <<Thread>> [0] DB::noRS(0 ms) START TRANSACTION; [T:DBIGuildsProcess:0x0D7C]
280WARN 2017-11-25 15:49:35.758 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE guild_actions_queue set OwnerConnectionID = CONNECTION_ID(), OwnedTimestamp = CURRENT_TIMESTAMP() where OwnerConnectionID = 0 limit 10; [T:DBIGuildsProcess:0x0D7C]
281WARN 2017-11-25 15:49:35.758 {} <<Thread>> [0] DB::RS(0 ms) select ID, TicketID, ActionType, ProducerCharID, GuildID, CharID, GuildName, GuildTag, GuildCharter, GuildTypeID, CharIsKicked, CharGuildRoleID, ^OtherGuildID, StandingTypeID, UnmovableObjectID, ClaimID, HeraldryID, CanEnter, CanBuild, CanClaim, CanUse, CanDestroy from guild_actions_queue where OwnerConnectionID = CONNECTION_ID(); [T:DBIGuildsProcess:0x0D7C]
282WARN 2017-11-25 15:49:35.758 {} <<Thread>> [0] DB::noRS(0 ms) COMMIT; [T:DBIGuildsProcess:0x0D7C]
283WARN 2017-11-25 15:49:36.102 {02} <initServer> [0] SimObject::registerObject() - datablock ids should be initialized via its 'id' field: FamilyData
284WARN 2017-11-25 15:49:36.102 {02} <initServer> [0] SimObject::registerObject() - datablock ids should be initialized via its 'id' field: FamilyData
285WARN 2017-11-25 15:49:36.102 {02} <initServer> [0] SimObject::registerObject() - datablock ids should be initialized via its 'id' field: FamilyData
286WARN 2017-11-25 15:49:36.102 {02} <initServer> [0] SimObject::registerObject() - datablock ids should be initialized via its 'id' field: FamilyData
287WARN 2017-11-25 15:49:36.102 {02} <initServer> [0] SimObject::registerObject() - datablock ids should be initialized via its 'id' field: FamilyData
288WARN 2017-11-25 15:49:36.102 {02} <initServer> [0] SimObject::registerObject() - datablock ids should be initialized via its 'id' field: FamilyData
289WARN 2017-11-25 15:49:36.102 {02} <initServer> [0] SimObject::registerObject() - datablock ids should be initialized via its 'id' field: FamilyData
290WARN 2017-11-25 15:49:36.102 {02} <initServer> [0] SimObject::registerObject() - datablock ids should be initialized via its 'id' field: FamilyData
291WARN 2017-11-25 15:49:36.102 {02} <initServer> [0] SimObject::registerObject() - datablock ids should be initialized via its 'id' field: FamilyData
292WARN 2017-11-25 15:49:36.102 {02} <initServer> [0] SimObject::registerObject() - datablock ids should be initialized via its 'id' field: FamilyData
293WARN 2017-11-25 15:49:36.102 {02} <initServer> [0] SimObject::registerObject() - datablock ids should be initialized via its 'id' field: FamilyData
294WARN 2017-11-25 15:49:36.102 {02} <initServer> [0] SimObject::registerObject() - datablock ids should be initialized via its 'id' field: FamilyData
295ECHO 2017-11-25 15:49:36.133 {02} <initServer> [0] NavMeshUpdates is initialized
296ECHO 2017-11-25 15:49:36.195 {03} <onServerCreated> [0] BehaviorsManager is initialized
297ERRR 2017-11-25 15:49:36.195 {03} <onServerCreated> [0] ShapeBaseImageData:: Could not resolve state "PreFire" for image "BaseShield"
298ECHO 2017-11-25 15:49:36.195 {03} <onServerCreated> [0] ShapeBaseImageData id=4 objectTypeID=555
299ECHO 2017-11-25 15:49:36.195 {03} <onServerCreated> [0] ShapeBaseImageData id=5 objectTypeID=556
300WARN 2017-11-25 15:49:36.195 {03} <onServerCreated> [0] Hit group#2 is invalid
301ECHO 2017-11-25 15:49:36.195 {03} <onServerCreated> [0] ShapeBaseImageData id=6 objectTypeID=557
302ECHO 2017-11-25 15:49:36.195 {03} <onServerCreated> [0] ShapeBaseImageData id=7 objectTypeID=558
303ECHO 2017-11-25 15:49:36.195 {03} <onServerCreated> [0] ShapeBaseImageData id=8 objectTypeID=559
304ECHO 2017-11-25 15:49:36.195 {03} <onServerCreated> [0] ShapeBaseImageData id=9 objectTypeID=560
305ECHO 2017-11-25 15:49:36.195 {03} <onServerCreated> [0] ShapeBaseImageData id=10 objectTypeID=561
306ECHO 2017-11-25 15:49:36.211 {03} <onServerCreated> [0] ShapeBaseImageData id=11 objectTypeID=562
307ECHO 2017-11-25 15:49:36.211 {03} <onServerCreated> [0] ShapeBaseImageData id=12 objectTypeID=563
308ECHO 2017-11-25 15:49:36.211 {03} <onServerCreated> [0] ShapeBaseImageData id=13 objectTypeID=564
309ECHO 2017-11-25 15:49:36.211 {03} <onServerCreated> [0] ShapeBaseImageData id=14 objectTypeID=565
310ECHO 2017-11-25 15:49:36.211 {03} <onServerCreated> [0] ShapeBaseImageData id=15 objectTypeID=566
311ECHO 2017-11-25 15:49:36.211 {03} <onServerCreated> [0] ShapeBaseImageData id=16 objectTypeID=567
312ECHO 2017-11-25 15:49:36.211 {03} <onServerCreated> [0] ShapeBaseImageData id=17 objectTypeID=568
313ECHO 2017-11-25 15:49:36.211 {03} <onServerCreated> [0] ShapeBaseImageData id=18 objectTypeID=569
314ECHO 2017-11-25 15:49:36.211 {03} <onServerCreated> [0] ShapeBaseImageData id=19 objectTypeID=570
315ECHO 2017-11-25 15:49:36.211 {03} <onServerCreated> [0] ShapeBaseImageData id=20 objectTypeID=571
316ECHO 2017-11-25 15:49:36.211 {03} <onServerCreated> [0] ShapeBaseImageData id=21 objectTypeID=572
317ECHO 2017-11-25 15:49:36.211 {03} <onServerCreated> [0] ShapeBaseImageData id=22 objectTypeID=573
318ECHO 2017-11-25 15:49:36.211 {03} <onServerCreated> [0] ShapeBaseImageData id=23 objectTypeID=574
319ECHO 2017-11-25 15:49:36.211 {03} <onServerCreated> [0] ShapeBaseImageData id=24 objectTypeID=575
320ECHO 2017-11-25 15:49:36.226 {03} <onServerCreated> [0] ShapeBaseImageData id=25 objectTypeID=576
321ECHO 2017-11-25 15:49:36.226 {03} <onServerCreated> [0] ShapeBaseImageData id=26 objectTypeID=577
322ECHO 2017-11-25 15:49:36.226 {03} <onServerCreated> [0] ShapeBaseImageData id=27 objectTypeID=578
323ECHO 2017-11-25 15:49:36.226 {03} <onServerCreated> [0] ShapeBaseImageData id=28 objectTypeID=579
324ECHO 2017-11-25 15:49:36.226 {03} <onServerCreated> [0] ShapeBaseImageData id=29 objectTypeID=580
325ECHO 2017-11-25 15:49:36.226 {03} <onServerCreated> [0] ShapeBaseImageData id=30 objectTypeID=581
326ECHO 2017-11-25 15:49:36.226 {03} <onServerCreated> [0] ShapeBaseImageData id=31 objectTypeID=582
327ECHO 2017-11-25 15:49:36.226 {03} <onServerCreated> [0] ShapeBaseImageData id=32 objectTypeID=583
328ECHO 2017-11-25 15:49:36.226 {03} <onServerCreated> [0] ShapeBaseImageData id=33 objectTypeID=584
329ECHO 2017-11-25 15:49:36.226 {03} <onServerCreated> [0] ShapeBaseImageData id=34 objectTypeID=585
330ECHO 2017-11-25 15:49:36.226 {03} <onServerCreated> [0] ShapeBaseImageData id=35 objectTypeID=586
331ECHO 2017-11-25 15:49:36.226 {03} <onServerCreated> [0] ShapeBaseImageData id=36 objectTypeID=587
332ECHO 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] ShapeBaseImageData id=37 objectTypeID=588
333ECHO 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] ShapeBaseImageData id=38 objectTypeID=589
334ECHO 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] ShapeBaseImageData id=39 objectTypeID=590
335ECHO 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] ShapeBaseImageData id=40 objectTypeID=591
336ECHO 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] ShapeBaseImageData id=41 objectTypeID=592
337ECHO 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] ShapeBaseImageData id=42 objectTypeID=593
338ECHO 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] ShapeBaseImageData id=43 objectTypeID=594
339ECHO 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] ShapeBaseImageData id=44 objectTypeID=595
340ECHO 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] ShapeBaseImageData id=45 objectTypeID=596
341ECHO 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] ShapeBaseImageData id=46 objectTypeID=597
342ECHO 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] ShapeBaseImageData id=47 objectTypeID=598
343ECHO 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] ShapeBaseImageData id=48 objectTypeID=599
344ERRR 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] ShapeBaseImageData:: Could not resolve state "PreFire" for image "Targeshield"
345WARN 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] Hit group#0 is invalid
346WARN 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] Hit group#0 is invalid
347WARN 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] Hit group#0 is invalid
348WARN 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] Hit group#0 is invalid
349WARN 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] No one hit group was linked to hit direction. Targeshield
350ECHO 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] ShapeBaseImageData id=70 objectTypeID=612
351ERRR 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] ShapeBaseImageData:: Could not resolve state "PreFire" for image "Primitiveshield"
352WARN 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] Hit group#0 is invalid
353WARN 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] Hit group#0 is invalid
354WARN 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] Hit group#0 is invalid
355WARN 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] Hit group#0 is invalid
356WARN 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] No one hit group was linked to hit direction. Primitiveshield
357ECHO 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] ShapeBaseImageData id=71 objectTypeID=613
358ERRR 2017-11-25 15:49:36.242 {03} <onServerCreated> [0] ShapeBaseImageData:: Could not resolve state "PreFire" for image "Bucklershield"
359WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
360WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
361WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
362WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
363WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] No one hit group was linked to hit direction. Bucklershield
364ECHO 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] ShapeBaseImageData id=72 objectTypeID=614
365ERRR 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] ShapeBaseImageData:: Could not resolve state "PreFire" for image "Heatershield"
366WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
367WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
368WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
369WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
370WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] No one hit group was linked to hit direction. Heatershield
371ECHO 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] ShapeBaseImageData id=73 objectTypeID=615
372ERRR 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] ShapeBaseImageData:: Could not resolve state "PreFire" for image "Kiteshield"
373WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
374WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
375WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
376WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
377WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] No one hit group was linked to hit direction. Kiteshield
378ECHO 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] ShapeBaseImageData id=74 objectTypeID=616
379ERRR 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] ShapeBaseImageData:: Could not resolve state "PreFire" for image "Towershield"
380WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
381WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
382WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
383WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
384WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] No one hit group was linked to hit direction. Towershield
385ECHO 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] ShapeBaseImageData id=75 objectTypeID=617
386ERRR 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] ShapeBaseImageData:: Could not resolve state "PreFire" for image "Pavise"
387WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
388WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
389WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
390WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] Hit group#0 is invalid
391WARN 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] No one hit group was linked to hit direction. Pavise
392ECHO 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] ShapeBaseImageData id=76 objectTypeID=618
393ECHO 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] ShapeBaseImageData id=120 objectTypeID=40
394ECHO 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] ShapeBaseImageData id=121 objectTypeID=41
395ECHO 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] ShapeBaseImageData id=122 objectTypeID=47
396ECHO 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] ShapeBaseImageData id=123 objectTypeID=48
397ECHO 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] ShapeBaseImageData id=124 objectTypeID=49
398ECHO 2017-11-25 15:49:36.258 {03} <onServerCreated> [0] ShapeBaseImageData id=125 objectTypeID=43
399ECHO 2017-11-25 15:49:36.273 {03} <onServerCreated> [0] ShapeBaseImageData id=126 objectTypeID=42
400ECHO 2017-11-25 15:49:36.273 {03} <onServerCreated> [0] ShapeBaseImageData id=127 objectTypeID=44
401ECHO 2017-11-25 15:49:36.273 {03} <onServerCreated> [0] ShapeBaseImageData id=128 objectTypeID=621
402ECHO 2017-11-25 15:49:36.273 {03} <onServerCreated> [0] ShapeBaseImageData id=129 objectTypeID=45
403ECHO 2017-11-25 15:49:36.273 {03} <onServerCreated> [0] ShapeBaseImageData id=130 objectTypeID=46
404ECHO 2017-11-25 15:49:36.273 {03} <onServerCreated> [0] ShapeBaseImageData id=131 objectTypeID=50
405ECHO 2017-11-25 15:49:36.273 {03} <onServerCreated> [0] ShapeBaseImageData id=132 objectTypeID=51
406ECHO 2017-11-25 15:49:36.273 {03} <onServerCreated> [0] ShapeBaseImageData id=133 objectTypeID=463
407ECHO 2017-11-25 15:49:36.273 {03} <onServerCreated> [0] ShapeBaseImageData id=134 objectTypeID=464
408ECHO 2017-11-25 15:49:36.289 {03} <onServerCreated> [0] ShapeBaseImageData id=135 objectTypeID=30
409ECHO 2017-11-25 15:49:36.289 {03} <onServerCreated> [0] ShapeBaseImageData id=136 objectTypeID=33
410ERRR 2017-11-25 15:49:36.289 {03} <onServerCreated> [0] ShapeBaseImageData:: Could not resolve state "PreFire" for image "HeavyTarge"
411WARN 2017-11-25 15:49:36.289 {03} <onServerCreated> [0] Hit group#0 is invalid
412WARN 2017-11-25 15:49:36.289 {03} <onServerCreated> [0] Hit group#0 is invalid
413WARN 2017-11-25 15:49:36.289 {03} <onServerCreated> [0] Hit group#0 is invalid
414WARN 2017-11-25 15:49:36.289 {03} <onServerCreated> [0] Hit group#0 is invalid
415WARN 2017-11-25 15:49:36.289 {03} <onServerCreated> [0] No one hit group was linked to hit direction. HeavyTarge
416ECHO 2017-11-25 15:49:36.289 {03} <onServerCreated> [0] ShapeBaseImageData id=147 objectTypeID=1066
417ECHO 2017-11-25 15:49:36.289 {03} <onServerCreated> [0] ShapeBaseImageData id=319 objectTypeID=1028
418ECHO 2017-11-25 15:49:36.289 {03} <onServerCreated> [0] ShapeBaseImageData id=320 objectTypeID=1029
419ECHO 2017-11-25 15:49:36.289 {03} <onServerCreated> [0] ShapeBaseImageData id=321 objectTypeID=289
420ECHO 2017-11-25 15:49:36.289 {03} <onServerCreated> [0] ShapeBaseImageData id=322 objectTypeID=290
421ECHO 2017-11-25 15:49:36.289 {03} <onServerCreated> [0] ShapeBaseImageData id=323 objectTypeID=291
422ECHO 2017-11-25 15:49:36.289 {03} <onServerCreated> [0] ShapeBaseImageData id=324 objectTypeID=294
423ECHO 2017-11-25 15:49:36.289 {03} <onServerCreated> [0] ShapeBaseImageData id=336 objectTypeID=620
424ECHO 2017-11-25 15:49:36.305 {03} <onServerCreated> [0] ShapeBaseImageData id=337 objectTypeID=38
425ECHO 2017-11-25 15:49:36.305 {03} <onServerCreated> [0] ShapeBaseImageData id=338 objectTypeID=1141
426ECHO 2017-11-25 15:49:36.305 {03} <onServerCreated> [0] ShapeBaseImageData id=583 objectTypeID=1120
427ECHO 2017-11-25 15:49:36.305 {03} <onServerCreated> [0] ShapeBaseImageData id=584 objectTypeID=1122
428ECHO 2017-11-25 15:49:36.305 {03} <onServerCreated> [0] ShapeBaseImageData id=611 objectTypeID=1414
429WARN 2017-11-25 15:49:36.305 {03} <onServerCreated> [0] No one hit group was linked to hit direction. BodkinArrowLoaded
430WARN 2017-11-25 15:49:36.305 {03} <onServerCreated> [0] No one hit group was linked to hit direction. BodkinArrow
431ECHO 2017-11-25 15:49:36.305 {03} <onServerCreated> [0] ShapeBaseImageData id=559 objectTypeID=656
432WARN 2017-11-25 15:49:36.305 {03} <onServerCreated> [0] No one hit group was linked to hit direction. BroadheadLoaded
433WARN 2017-11-25 15:49:36.305 {03} <onServerCreated> [0] No one hit group was linked to hit direction. BroadheadArrow
434ECHO 2017-11-25 15:49:36.305 {03} <onServerCreated> [0] ShapeBaseImageData id=561 objectTypeID=657
435WARN 2017-11-25 15:49:36.305 {03} <onServerCreated> [0] No one hit group was linked to hit direction. StandArrowLoaded
436WARN 2017-11-25 15:49:36.305 {03} <onServerCreated> [0] No one hit group was linked to hit direction. StandArrow
437ECHO 2017-11-25 15:49:36.305 {03} <onServerCreated> [0] ShapeBaseImageData id=563 objectTypeID=660
438WARN 2017-11-25 15:49:36.305 {03} <onServerCreated> [0] No one hit group was linked to hit direction. DullArrowLoaded
439WARN 2017-11-25 15:49:36.305 {03} <onServerCreated> [0] No one hit group was linked to hit direction. DullArrow
440ECHO 2017-11-25 15:49:36.305 {03} <onServerCreated> [0] ShapeBaseImageData id=565 objectTypeID=659
441WARN 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] No one hit group was linked to hit direction. FireArrowLoaded
442WARN 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] No one hit group was linked to hit direction. FireArrow
443ECHO 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] ShapeBaseImageData id=586 objectTypeID=658
444WARN 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] No one hit group was linked to hit direction. FireworkArrowLoaded
445WARN 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] No one hit group was linked to hit direction. FireworkArrow
446ECHO 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] ShapeBaseImageData id=588 objectTypeID=1339
447WARN 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] No one hit group was linked to hit direction. HeavyBoltLoaded
448WARN 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] No one hit group was linked to hit direction. HeavyBolt
449ECHO 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] ShapeBaseImageData id=567 objectTypeID=664
450WARN 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] No one hit group was linked to hit direction. StandBoltLoaded
451WARN 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] No one hit group was linked to hit direction. StandBolt
452ECHO 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] ShapeBaseImageData id=569 objectTypeID=662
453WARN 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] No one hit group was linked to hit direction. DullBoltLoaded
454WARN 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] No one hit group was linked to hit direction. DullBolt
455ECHO 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] ShapeBaseImageData id=571 objectTypeID=663
456WARN 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] No one hit group was linked to hit direction. FireworkBoltLoaded
457WARN 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] No one hit group was linked to hit direction. FireworkBolt
458ECHO 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] ShapeBaseImageData id=590 objectTypeID=1340
459WARN 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] No one hit group was linked to hit direction. SlingStoneLoaded
460WARN 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] No one hit group was linked to hit direction. SlingStone
461ECHO 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] ShapeBaseImageData id=575 objectTypeID=1096
462WARN 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] No one hit group was linked to hit direction. CompositeBow
463ECHO 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] ShapeBaseImageData id=52 objectTypeID=603
464WARN 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] No one hit group was linked to hit direction. SimpleBow
465ECHO 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] ShapeBaseImageData id=49 objectTypeID=600
466WARN 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] No one hit group was linked to hit direction. ShortBow
467ECHO 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] ShapeBaseImageData id=50 objectTypeID=601
468WARN 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] No one hit group was linked to hit direction. LongBow
469ECHO 2017-11-25 15:49:36.320 {03} <onServerCreated> [0] ShapeBaseImageData id=51 objectTypeID=602
470WARN 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] No one hit group was linked to hit direction. LightCrossbow
471ECHO 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] ShapeBaseImageData id=53 objectTypeID=604
472WARN 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] No one hit group was linked to hit direction. Arbalest
473ECHO 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] ShapeBaseImageData id=54 objectTypeID=605
474WARN 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] No one hit group was linked to hit direction. HeavyCrossbow
475ECHO 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] ShapeBaseImageData id=55 objectTypeID=606
476WARN 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] No one hit group was linked to hit direction. Sling
477ECHO 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] ShapeBaseImageData id=56 objectTypeID=607
478WARN 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] No one hit group was linked to hit direction. ThrowingKnifeProjectile
479WARN 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] No one hit group was linked to hit direction. ThrowingKnife
480ECHO 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] ShapeBaseImageData id=578 objectTypeID=608
481WARN 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] No one hit group was linked to hit direction. ThrowingJavelinProjectile
482WARN 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] No one hit group was linked to hit direction. ThrowingJavelin
483ECHO 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] ShapeBaseImageData id=580 objectTypeID=609
484WARN 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] No one hit group was linked to hit direction. ThrowingAxeProjectile
485WARN 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] No one hit group was linked to hit direction. ThrowingAxe
486ECHO 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] ShapeBaseImageData id=574 objectTypeID=610
487WARN 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] No one hit group was linked to hit direction. ThrowingPotProjectile
488WARN 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] No one hit group was linked to hit direction. ThrowingPot
489ECHO 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] ShapeBaseImageData id=345 objectTypeID=1104
490WARN 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] No one hit group was linked to hit direction. FireworkPotProjectile
491WARN 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] No one hit group was linked to hit direction. FireworkPot
492ECHO 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] ShapeBaseImageData id=591 objectTypeID=1341
493WARN 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] No one hit group was linked to hit direction. SnowballProjectile
494WARN 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] No one hit group was linked to hit direction. Snowball
495ECHO 2017-11-25 15:49:36.336 {03} <onServerCreated> [0] ShapeBaseImageData id=368 objectTypeID=1344
496WARN 2017-11-25 15:49:36.351 {03} <onServerCreated> [0] Warning: shape art/Models/3D/Construction/CombatRelated/SmallTrebuchet/SmallTrebuchet.dts collision detail 8 (Collision-11) bounds exceed that of shape.
497WARN 2017-11-25 15:49:36.351 {03} <onServerCreated> [0] Warning: shape art/Models/3D/Construction/CombatRelated/SmallTrebuchet/SmallTrebuchet.dts collision detail 9 (Collision-12) bounds exceed that of shape.
498WARN 2017-11-25 15:49:36.351 {03} <onServerCreated> [0] Warning: shape art/Models/3D/Construction/CombatRelated/SmallTrebuchet/SmallTrebuchet.dts collision detail 12 (Collision-15) bounds exceed that of shape.
499WARN 2017-11-25 15:49:36.351 {03} <onServerCreated> [0] Warning: shape art/Models/3D/Construction/CombatRelated/SmallTrebuchet/SmallTrebuchet.dts collision detail 13 (Collision-16) bounds exceed that of shape.
500ECHO 2017-11-25 15:49:36.351 {03} <onServerCreated> [0] SiegeWeaponStaticShapeData id=340 objectTypeID=163
501WARN 2017-11-25 15:49:36.351 {03} <onServerCreated> [0] No one hit group was linked to hit direction. SiegeStoneAmmoLoaded
502WARN 2017-11-25 15:49:36.351 {03} <onServerCreated> [0] No one hit group was linked to hit direction. SiegeStoneAmmo
503ECHO 2017-11-25 15:49:36.351 {03} <onServerCreated> [0] ShapeBaseImageData id=341 objectTypeID=1107
504WARN 2017-11-25 15:49:36.351 {03} <onServerCreated> [0] No one hit group was linked to hit direction. BarrelAmmoLoaded
505WARN 2017-11-25 15:49:36.351 {03} <onServerCreated> [0] No one hit group was linked to hit direction. BarrelAmmo
506ECHO 2017-11-25 15:49:36.351 {03} <onServerCreated> [0] ShapeBaseImageData id=343 objectTypeID=1106
507WARN 2017-11-25 15:49:36.351 {03} <onServerCreated> [0] No one hit group was linked to hit direction. NapthaBarrelAmmoLoaded
508WARN 2017-11-25 15:49:36.351 {03} <onServerCreated> [0] No one hit group was linked to hit direction. NapthaBarrelAmmo
509ECHO 2017-11-25 15:49:36.351 {03} <onServerCreated> [0] ShapeBaseImageData id=363 objectTypeID=1123
510WARN 2017-11-25 15:49:36.351 {03} <onServerCreated> [0] No one hit group was linked to hit direction. CowAmmoLoaded
511WARN 2017-11-25 15:49:36.351 {03} <onServerCreated> [0] No one hit group was linked to hit direction. CowAmmo
512ECHO 2017-11-25 15:49:36.351 {03} <onServerCreated> [0] ShapeBaseImageData id=366 objectTypeID=1046
513ERRR 2017-11-25 15:49:37.539 {03} <onServerCreated> [0] 11: Unable to instantiate non-conobject class DecalData.
514ECHO 2017-11-25 15:49:37.539 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiDomesticHorse.xml]
515ECHO 2017-11-25 15:49:37.555 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiDomesticHorse.xml]
516ECHO 2017-11-25 15:49:37.555 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiDomesticHorse.xml]
517ECHO 2017-11-25 15:49:37.555 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiDomesticHorse.xml]
518ECHO 2017-11-25 15:49:37.555 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiDomesticHorse.xml]
519ECHO 2017-11-25 15:49:37.555 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiDomesticHorse.xml]
520ECHO 2017-11-25 15:49:37.555 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiDomesticHorse.xml]
521ECHO 2017-11-25 15:49:37.555 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiDomesticHorse.xml]
522ECHO 2017-11-25 15:49:37.555 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiDomesticHorse.xml]
523ECHO 2017-11-25 15:49:37.555 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiDomesticHorse.xml]
524ECHO 2017-11-25 15:49:37.555 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiDomesticHorse.xml]
525ECHO 2017-11-25 15:49:37.555 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiDomesticHorse.xml]
526ERRR 2017-11-25 15:49:37.555 {03} <onServerCreated> [0] Error: cannot change namespace parent linkage of Armor from PlayerData to AnimalData.
527ECHO 2017-11-25 15:49:37.570 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiDeerMale.xml]
528ERRR 2017-11-25 15:49:37.570 {03} <onServerCreated> [0] Error: cannot change namespace parent linkage of Armor from PlayerData to AnimalData.
529ECHO 2017-11-25 15:49:37.570 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiAurochsBull.xml]
530ERRR 2017-11-25 15:49:37.570 {03} <onServerCreated> [0] Error: cannot change namespace parent linkage of Armor from PlayerData to AnimalData.
531ECHO 2017-11-25 15:49:37.586 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiBear.xml]
532ERRR 2017-11-25 15:49:37.586 {03} <onServerCreated> [0] Error: cannot change namespace parent linkage of Armor from PlayerData to AnimalData.
533ECHO 2017-11-25 15:49:37.586 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiBoar.xml]
534ERRR 2017-11-25 15:49:37.586 {03} <onServerCreated> [0] Error: cannot change namespace parent linkage of Armor from PlayerData to AnimalData.
535ECHO 2017-11-25 15:49:37.586 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiSow.xml]
536ERRR 2017-11-25 15:49:37.601 {03} <onServerCreated> [0] Error: cannot change namespace parent linkage of Armor from PlayerData to AnimalData.
537ECHO 2017-11-25 15:49:37.601 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiWildHorse.xml]
538ERRR 2017-11-25 15:49:37.601 {03} <onServerCreated> [0] Error: cannot change namespace parent linkage of Armor from PlayerData to AnimalData.
539ECHO 2017-11-25 15:49:37.601 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiGrouse.xml]
540ERRR 2017-11-25 15:49:37.601 {03} <onServerCreated> [0] Error: cannot change namespace parent linkage of Armor from PlayerData to AnimalData.
541ECHO 2017-11-25 15:49:37.601 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiHare.xml]
542ERRR 2017-11-25 15:49:37.601 {03} <onServerCreated> [0] Error: cannot change namespace parent linkage of Armor from PlayerData to AnimalData.
543ECHO 2017-11-25 15:49:37.617 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiHind.xml]
544ERRR 2017-11-25 15:49:37.617 {03} <onServerCreated> [0] Error: cannot change namespace parent linkage of Armor from PlayerData to AnimalData.
545ECHO 2017-11-25 15:49:37.617 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiWolf.xml]
546ERRR 2017-11-25 15:49:37.617 {03} <onServerCreated> [0] Error: cannot change namespace parent linkage of Armor from PlayerData to AnimalData.
547ECHO 2017-11-25 15:49:37.633 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiMoose.xml]
548ERRR 2017-11-25 15:49:37.633 {03} <onServerCreated> [0] Error: cannot change namespace parent linkage of Armor from PlayerData to AnimalData.
549ECHO 2017-11-25 15:49:37.633 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiMutton.xml]
550ERRR 2017-11-25 15:49:37.633 {03} <onServerCreated> [0] Error: cannot change namespace parent linkage of Armor from PlayerData to AnimalData.
551ECHO 2017-11-25 15:49:37.648 {03} <onServerCreated> [0] Loading AI behaviour from [data/ai/cmAiAurochsCow.xml]
552WARN 2017-11-25 15:49:37.648 {03} <onServerCreated> [0] Missing file: art/datablocks/audioProfiles.cs!
553WARN 2017-11-25 15:49:37.648 {03} <onServerCreated> [0] No one hit group was linked to hit direction. MountedPlough
554ECHO 2017-11-25 15:49:37.648 {03} <onServerCreated> [0] ShapeBaseImageData id=689 objectTypeID=53
555WARN 2017-11-25 15:49:37.648 {03} <onServerCreated> [0] No one hit group was linked to hit direction. MountedWheelbarrow
556ECHO 2017-11-25 15:49:37.648 {03} <onServerCreated> [0] ShapeBaseImageData id=690 objectTypeID=167
557WARN 2017-11-25 15:49:37.648 {03} <onServerCreated> [0] No one hit group was linked to hit direction. MountedCart
558ECHO 2017-11-25 15:49:37.648 {03} <onServerCreated> [0] ShapeBaseImageData id=691 objectTypeID=168
559WARN 2017-11-25 15:49:37.648 {03} <onServerCreated> [0] No one hit group was linked to hit direction. MountedTrader_cart
560ECHO 2017-11-25 15:49:37.648 {03} <onServerCreated> [0] ShapeBaseImageData id=692 objectTypeID=169
561ERRR 2017-11-25 15:49:37.648 {03} <onServerCreated> [0] 69: Unable to instantiate non-conobject class SFXDescription.
562ECHO 2017-11-25 15:49:37.664 {03} <onServerCreated> [0] MountedShapeData id = 694 objectTypeID = 1437
563ECHO 2017-11-25 15:49:37.680 {03} <onServerCreated> [0] MountedShapeData id = 701 objectTypeID = 1496
564WARN 2017-11-25 15:49:37.680 {03} <onServerCreated> [0] SimObject::registerObject() - datablock ids should be initialized via its 'id' field: FormationDrawData
565WARN 2017-11-25 15:49:37.680 {03} <onServerCreated> [0] SimObject::registerObject() - datablock ids should be initialized via its 'id' field: FormationDrawData
566WARN 2017-11-25 15:49:37.680 {03} <onServerCreated> [0] SimObject::registerObject() - datablock ids should be initialized via its 'id' field: FormationDrawData
567WARN 2017-11-25 15:49:37.680 {03} <onServerCreated> [0] SimObject::registerObject() - datablock ids should be initialized via its 'id' field: FormationDrawData
568ECHO 2017-11-25 15:49:37.695 {} <> [0] Engine initialized...
569ECHO 2017-11-25 15:49:37.695 {03} <portInit> [0] Binding server port to default IP
570ECHO 2017-11-25 15:49:37.695 {03} <portInit> [0] UDP initialized on port 28000
571ECHO 2017-11-25 15:49:37.695 {03} <initTCPServer> [0] initTCPServer( 28000 )
572ECHO 2017-11-25 15:49:37.695 {03} <initTCPServer> [0] start network thread
573ECHO 2017-11-25 15:49:37.695 {02} <prepareManagers> [0] Loading calendar from file [data/weather/cm_weather1.xml]
574WARN 2017-11-25 15:49:37.711 {} <<Thread>> [0] DB::mfRS(6 ms) CALL p_issueIdRange_unmovable_objects(1,1000,0); [T:DBIPrimary:0x0F7C]
575WARN 2017-11-25 15:49:37.711 {} <<Thread>> [0] DB::mfRS(2 ms) CALL p_issueIdRange_movable_objects(1,1000,0); [T:DBIPrimary:0x0F7C]
576WARN 2017-11-25 15:49:37.711 {} <<Thread>> [0] DB::mfRS(1 ms) CALL p_issueIdRange_horses(1,1000,0); [T:DBIPrimary:0x0F7C]
577WARN 2017-11-25 15:49:37.711 {02} <prepareManagers> [0] DB::RS(19 ms) select ID, Name, MaxStackSize, UnitWeight, ParentID, `Length`, MaxContSize, IsContainer, IsMovableObject, IsUnmovableobject, IsTool, IsDevice, IsDoor, ifnull(OwnerTimeout, 0) as OwnerTimeout, ifnull(BasePrice, 0) as BasePrice, (case when exists(select * from recipe where ResultObjectTypeID = t.ID) then 1 else 0 end) as IsRecipe from objects_types t
578INFO 2017-11-25 15:49:37.726 {02} <prepareManagers> [0] CmPlayerManager::_loadObjectTypesFromDb -- 1412 types loaded
579ECHO 2017-11-25 15:49:37.742 {02} <prepareManagers> [0] Loading substances
580ECHO 2017-11-25 15:49:37.742 {02} <prepareManagers> [0] Init of cmPatch
581WARN 2017-11-25 15:49:37.742 {02} <prepareManagers> [0] DB::RS(1 ms) SELECT f_getServerUUID();
582ECHO 2017-11-25 15:49:37.742 {02} <prepareManagers> [0] Loading skills types from [data/skill_types.xml]
583ECHO 2017-11-25 15:49:37.773 {02} <prepareManagers> [0] Cooldowns sorted, number of cooldowning abilities: 40
584WARN 2017-11-25 15:49:37.789 {02} <prepareManagers> [0] DB::RS(10 ms) SELECT `ID`, `RecipeID`, `MaterialObjectTypeID`, `Quality`, `Influence`, `Quantity`, `IsRegionItemRequired` FROM `recipe_requirement`;
585WARN 2017-11-25 15:49:37.836 {02} <prepareManagers> [0] DB::RS(4 ms) SELECT `ID`, `StartingToolsID`, `SkillTypeID`, `SkillLvl`, `ResultObjectTypeID`, `SkillDepends`, `Quantity`, `Autorepeat`, `IsBlueprint` FROM `recipe`;
586ERRR 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] [line #408] CmRecipesManager::_calculateTotalRequirementPrice() - zero price for recipe 919
587INFO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmRecipesManager::_loadRecipesSql() -- loaded 867 recipes...
588ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmRecipesManager initialized.
589WARN 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] DB::RS(0 ms) SELECT `ID`, `NameMessageID` FROM `regions`;
590WARN 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] DB::RS(1 ms) SELECT `ID`, `RegionID` FROM `terrain_blocks`;
591WARN 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] DB::RS(0 ms) SELECT `ID`, `RecipeID`, `BaseRecipeID` FROM `recipe_possible_blueprints`;
592ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] BluePrintsManager initialized.
593ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] DurabilityManager initialized.
594ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmSoundsManager initialized.
595ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmHerbalManager initialized.
596WARN 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] DB::RS(2 ms) SELECT ID, ObjectTypeID FROM `unmovable_objects` WHERE IsComplete =1 AND ObjectTypeID IN (133,134,143,144,517) AND ((GeoDataID >= f_toGeoID(442, 0, 0) and GeoDataID < f_toGeoID(443, 0, 0)) OR (GeoDataID >= f_toGeoID(443, 0, 0) and GeoDataID < f_toGeoID(444, 0, 0)) OR (GeoDataID >= f_toGeoID(444, 0, 0) and GeoDataID < f_toGeoID(445, 0, 0)) OR (GeoDataID >= f_toGeoID(445, 0, 0) and GeoDataID < f_toGeoID(446, 0, 0)) OR (GeoDataID >= f_toGeoID(446, 0, 0) and GeoDataID < f_toGeoID(447, 0, 0)) OR (GeoDataID >= f_toGeoID(447, 0, 0) and GeoDataID < f_toGeoID(448, 0, 0)) OR (GeoDataID >= f_toGeoID(448, 0, 0) and GeoDataID < f_toGeoID(449, 0, 0)) OR (GeoDataID >= f_toGeoID(449, 0, 0) and GeoDataID < f_toGeoID(450, 0, 0)) OR (GeoDataID >= f_toGeoID(450, 0, 0) and GeoDataID < f_toGeoID(451, 0, 0)));
597ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 418 loaded, type 133
598ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 1018 loaded, type 133
599ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 3793 loaded, type 133
600ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 4779 loaded, type 133
601ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 5030 loaded, type 133
602ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 5389 loaded, type 133
603ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 6083 loaded, type 133
604ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 6305 loaded, type 133
605ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 7232 loaded, type 133
606ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 7234 loaded, type 133
607ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 7832 loaded, type 133
608ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 8452 loaded, type 133
609ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 9752 loaded, type 133
610ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 9858 loaded, type 133
611ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 966 loaded, type 134
612ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 2933 loaded, type 134
613ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 4495 loaded, type 134
614ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 5228 loaded, type 134
615ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 6899 loaded, type 134
616ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 7237 loaded, type 134
617ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 8211 loaded, type 134
618ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 1095 loaded, type 143
619ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 2005 loaded, type 143
620ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 3183 loaded, type 143
621ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 3187 loaded, type 143
622ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 4583 loaded, type 143
623ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 6012 loaded, type 143
624ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 6121 loaded, type 143
625ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 6122 loaded, type 143
626ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 6387 loaded, type 143
627ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 6692 loaded, type 143
628ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 7242 loaded, type 143
629ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 7632 loaded, type 143
630ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 196 loaded, type 144
631ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 419 loaded, type 144
632ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 420 loaded, type 144
633ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 660 loaded, type 144
634ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 965 loaded, type 144
635ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 1810 loaded, type 144
636ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 2034 loaded, type 144
637ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 2035 loaded, type 144
638ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 2071 loaded, type 144
639ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 2072 loaded, type 144
640ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 2267 loaded, type 144
641ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 2325 loaded, type 144
642ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 2652 loaded, type 144
643ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 2695 loaded, type 144
644ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 2703 loaded, type 144
645ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 2704 loaded, type 144
646ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 2830 loaded, type 144
647ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 2846 loaded, type 144
648ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 2939 loaded, type 144
649ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 3497 loaded, type 144
650ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 3498 loaded, type 144
651ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 3499 loaded, type 144
652ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 3502 loaded, type 144
653ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 3515 loaded, type 144
654ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 3516 loaded, type 144
655ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 4067 loaded, type 144
656ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 4068 loaded, type 144
657ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 4069 loaded, type 144
658ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 4070 loaded, type 144
659ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 4071 loaded, type 144
660ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 4072 loaded, type 144
661ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 4186 loaded, type 144
662ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 4187 loaded, type 144
663ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 4221 loaded, type 144
664ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 4461 loaded, type 144
665ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 4462 loaded, type 144
666ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 4593 loaded, type 144
667ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 4594 loaded, type 144
668ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 4757 loaded, type 144
669ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 5510 loaded, type 144
670ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 5511 loaded, type 144
671ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 5512 loaded, type 144
672ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 6566 loaded, type 144
673ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 6731 loaded, type 144
674ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 6732 loaded, type 144
675ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 6953 loaded, type 144
676ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 7627 loaded, type 144
677ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 7628 loaded, type 144
678ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 7629 loaded, type 144
679ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 7633 loaded, type 144
680ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 7670 loaded, type 144
681ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 7937 loaded, type 144
682ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 7938 loaded, type 144
683ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 8016 loaded, type 144
684ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 8017 loaded, type 144
685ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 8019 loaded, type 144
686ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 8020 loaded, type 144
687ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 8171 loaded, type 144
688ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 8598 loaded, type 144
689ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 8715 loaded, type 144
690ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 9113 loaded, type 144
691ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 9362 loaded, type 144
692ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 9551 loaded, type 144
693ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 9875 loaded, type 144
694ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 10001 loaded, type 144
695ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 10426 loaded, type 144
696ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 425 loaded, type 517
697ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 2689 loaded, type 517
698ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 2690 loaded, type 517
699ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 2691 loaded, type 517
700ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 3313 loaded, type 517
701ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 5915 loaded, type 517
702ECHO 2017-11-25 15:49:37.867 {02} <prepareManagers> [0] CmStable object 8249 loaded, type 517
703WARN 2017-11-25 15:49:37.914 {02} <prepareManagers> [0] DB::RS(48 ms) SELECT sl.UnmovableObjectID, sl.EventTime, sl.MsgID, sl.Param1, sl.Param2, sl.Param3 FROM `stables_logs` sl JOIN `unmovable_objects` uo ON uo.ID = sl.UnmovableObjectID WHERE IsComplete =1 AND ObjectTypeID IN (133,134,143,144,517) AND ((GeoDataID >= f_toGeoID(442, 0, 0) and GeoDataID < f_toGeoID(443, 0, 0)) OR (GeoDataID >= f_toGeoID(443, 0, 0) and GeoDataID < f_toGeoID(444, 0, 0)) OR (GeoDataID >= f_toGeoID(444, 0, 0) and GeoDataID < f_toGeoID(445, 0, 0)) OR (GeoDataID >= f_toGeoID(445, 0, 0) and GeoDataID < f_toGeoID(446, 0, 0)) OR (GeoDataID >= f_toGeoID(446, 0, 0) and GeoDataID < f_toGeoID(447, 0, 0)) OR (GeoDataID >= f_toGeoID(447, 0, 0) and GeoDataID < f_toGeoID(448, 0, 0)) OR (GeoDataID >= f_toGeoID(448, 0, 0) and GeoDataID < f_toGeoID(449, 0, 0)) OR (GeoDataID >= f_toGeoID(449, 0, 0) and GeoDataID < f_toGeoID(450, 0, 0)) OR (GeoDataID >= f_toGeoID(450, 0, 0) and GeoDataID < f_toGeoID(451, 0, 0))) ORDER BY sl.EventTime;
704WARN 2017-11-25 15:49:37.930 {02} <prepareManagers> [0] DB::RS(1 ms) SELECT sl.UnmovableObjectID, sl.ItemID, sl.Slot FROM `stables_pens` sl JOIN `unmovable_objects` uo ON uo.ID = sl.UnmovableObjectID WHERE IsComplete =1 AND ObjectTypeID IN (133,134,143,144,517) AND ((GeoDataID >= f_toGeoID(442, 0, 0) and GeoDataID < f_toGeoID(443, 0, 0)) OR (GeoDataID >= f_toGeoID(443, 0, 0) and GeoDataID < f_toGeoID(444, 0, 0)) OR (GeoDataID >= f_toGeoID(444, 0, 0) and GeoDataID < f_toGeoID(445, 0, 0)) OR (GeoDataID >= f_toGeoID(445, 0, 0) and GeoDataID < f_toGeoID(446, 0, 0)) OR (GeoDataID >= f_toGeoID(446, 0, 0) and GeoDataID < f_toGeoID(447, 0, 0)) OR (GeoDataID >= f_toGeoID(447, 0, 0) and GeoDataID < f_toGeoID(448, 0, 0)) OR (GeoDataID >= f_toGeoID(448, 0, 0) and GeoDataID < f_toGeoID(449, 0, 0)) OR (GeoDataID >= f_toGeoID(449, 0, 0) and GeoDataID < f_toGeoID(450, 0, 0)) OR (GeoDataID >= f_toGeoID(450, 0, 0) and GeoDataID < f_toGeoID(451, 0, 0)));
705WARN 2017-11-25 15:49:37.945 {02} <prepareManagers> [0] DB::RS(3 ms) SELECT sl.UnmovableObjectID, sl.FoodConsumeRatio, sl.DungMeter, sl.HarvestAmount, sl.HarvestQuality, sl.FoodLeft, sl.FoodQuality, sl.DungQuantity, sl.DungQuality, sl.Starving, sl.Dirty FROM `stables_data` sl JOIN `unmovable_objects` uo ON uo.ID = sl.UnmovableObjectID WHERE IsComplete =1 AND ObjectTypeID IN (133,134,143,144,517) AND ((GeoDataID >= f_toGeoID(442, 0, 0) and GeoDataID < f_toGeoID(443, 0, 0)) OR (GeoDataID >= f_toGeoID(443, 0, 0) and GeoDataID < f_toGeoID(444, 0, 0)) OR (GeoDataID >= f_toGeoID(444, 0, 0) and GeoDataID < f_toGeoID(445, 0, 0)) OR (GeoDataID >= f_toGeoID(445, 0, 0) and GeoDataID < f_toGeoID(446, 0, 0)) OR (GeoDataID >= f_toGeoID(446, 0, 0) and GeoDataID < f_toGeoID(447, 0, 0)) OR (GeoDataID >= f_toGeoID(447, 0, 0) and GeoDataID < f_toGeoID(448, 0, 0)) OR (GeoDataID >= f_toGeoID(448, 0, 0) and GeoDataID < f_toGeoID(449, 0, 0)) OR (GeoDataID >= f_toGeoID(449, 0, 0) and GeoDataID < f_toGeoID(450, 0, 0)) OR (GeoDataID >= f_toGeoID(450, 0, 0) and GeoDataID < f_toGeoID(451, 0, 0)));
706ECHO 2017-11-25 15:49:37.945 {02} <prepareManagers> [0] CmBreedingManager initialized.
707ECHO 2017-11-25 15:49:37.945 {02} <prepareManagers> [0] CmChatServer initialized.
708ECHO 2017-11-25 15:49:37.945 {02} <prepareManagers> [0] XML file [data/cm_customisation.xml] loaded.
709ECHO 2017-11-25 15:49:37.945 {02} <prepareManagers> [0] XML file [data/cm_createchar.xml] loaded.
710ECHO 2017-11-25 15:49:37.945 {02} <prepareManagers> [0] XML file [data/cm_random_events.xml] loaded.
711ECHO 2017-11-25 15:49:37.976 {02} <prepareManagers> [0] Datablock for object [Mounted_typeID_53_datablock] (Plough) already exist. it is ok situation.
712WARN 2017-11-25 15:49:37.992 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
713ECHO 2017-11-25 15:49:37.992 {02} <prepareManagers> [0] ShapeBaseImageData id=800 objectTypeID=78
714WARN 2017-11-25 15:49:37.992 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
715ECHO 2017-11-25 15:49:37.992 {02} <prepareManagers> [0] ShapeBaseImageData id=801 objectTypeID=79
716WARN 2017-11-25 15:49:37.992 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
717ECHO 2017-11-25 15:49:37.992 {02} <prepareManagers> [0] ShapeBaseImageData id=802 objectTypeID=80
718WARN 2017-11-25 15:49:37.992 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
719ECHO 2017-11-25 15:49:37.992 {02} <prepareManagers> [0] ShapeBaseImageData id=803 objectTypeID=81
720WARN 2017-11-25 15:49:37.992 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
721ECHO 2017-11-25 15:49:37.992 {02} <prepareManagers> [0] ShapeBaseImageData id=804 objectTypeID=82
722WARN 2017-11-25 15:49:38.992 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
723ECHO 2017-11-25 15:49:38.992 {02} <prepareManagers> [0] ShapeBaseImageData id=805 objectTypeID=83
724WARN 2017-11-25 15:49:38.992 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
725ECHO 2017-11-25 15:49:38.992 {02} <prepareManagers> [0] ShapeBaseImageData id=806 objectTypeID=84
726WARN 2017-11-25 15:49:38.992 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
727ECHO 2017-11-25 15:49:38.992 {02} <prepareManagers> [0] ShapeBaseImageData id=807 objectTypeID=85
728WARN 2017-11-25 15:49:38.992 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
729ECHO 2017-11-25 15:49:38.992 {02} <prepareManagers> [0] ShapeBaseImageData id=808 objectTypeID=86
730WARN 2017-11-25 15:49:38.992 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
731ECHO 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] ShapeBaseImageData id=809 objectTypeID=87
732WARN 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
733ECHO 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] ShapeBaseImageData id=810 objectTypeID=88
734WARN 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
735ECHO 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] ShapeBaseImageData id=811 objectTypeID=97
736WARN 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
737ECHO 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] ShapeBaseImageData id=812 objectTypeID=98
738WARN 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
739ECHO 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] ShapeBaseImageData id=813 objectTypeID=99
740WARN 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
741ECHO 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] ShapeBaseImageData id=814 objectTypeID=100
742WARN 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
743ECHO 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] ShapeBaseImageData id=815 objectTypeID=101
744WARN 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
745ECHO 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] ShapeBaseImageData id=816 objectTypeID=103
746WARN 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
747ECHO 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] ShapeBaseImageData id=817 objectTypeID=104
748WARN 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
749ECHO 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] ShapeBaseImageData id=818 objectTypeID=105
750WARN 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
751ECHO 2017-11-25 15:49:38.008 {02} <prepareManagers> [0] ShapeBaseImageData id=819 objectTypeID=106
752WARN 2017-11-25 15:49:38.023 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
753ECHO 2017-11-25 15:49:38.023 {02} <prepareManagers> [0] ShapeBaseImageData id=820 objectTypeID=109
754WARN 2017-11-25 15:49:38.023 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
755ECHO 2017-11-25 15:49:38.023 {02} <prepareManagers> [0] ShapeBaseImageData id=821 objectTypeID=115
756WARN 2017-11-25 15:49:38.023 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
757ECHO 2017-11-25 15:49:38.023 {02} <prepareManagers> [0] ShapeBaseImageData id=822 objectTypeID=116
758WARN 2017-11-25 15:49:38.023 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
759ECHO 2017-11-25 15:49:38.023 {02} <prepareManagers> [0] ShapeBaseImageData id=823 objectTypeID=118
760WARN 2017-11-25 15:49:38.023 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
761ECHO 2017-11-25 15:49:38.023 {02} <prepareManagers> [0] ShapeBaseImageData id=824 objectTypeID=120
762WARN 2017-11-25 15:49:38.039 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
763ECHO 2017-11-25 15:49:38.039 {02} <prepareManagers> [0] ShapeBaseImageData id=825 objectTypeID=121
764WARN 2017-11-25 15:49:38.039 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
765ECHO 2017-11-25 15:49:38.039 {02} <prepareManagers> [0] ShapeBaseImageData id=826 objectTypeID=122
766WARN 2017-11-25 15:49:38.039 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
767ECHO 2017-11-25 15:49:38.039 {02} <prepareManagers> [0] ShapeBaseImageData id=827 objectTypeID=123
768WARN 2017-11-25 15:49:38.039 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
769ECHO 2017-11-25 15:49:38.039 {02} <prepareManagers> [0] ShapeBaseImageData id=828 objectTypeID=119
770WARN 2017-11-25 15:49:38.039 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fences/Stone_fence_door/stone_fence_door.dts collision detail 0 (Collision-3) bounds exceed that of shape.
771WARN 2017-11-25 15:49:38.039 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fences/Stone_fence_door/stone_fence_door.dts collision detail 3 (Collision-6) bounds exceed that of shape.
772WARN 2017-11-25 15:49:38.039 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fences/Stone_fence_door/stone_fence_door_dmg.dts collision detail 0 (Collision-3) bounds exceed that of shape.
773WARN 2017-11-25 15:49:38.039 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fences/Stone_fence_door/stone_fence_door_dmg.dts collision detail 3 (Collision-6) bounds exceed that of shape.
774WARN 2017-11-25 15:49:38.055 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Storage/large_warehouse/large_warehouse.dts collision detail 0 (Collision-3) bounds exceed that of shape.
775WARN 2017-11-25 15:49:38.055 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Storage/large_warehouse/large_warehouse.dts collision detail 1 (Collision-4) bounds exceed that of shape.
776WARN 2017-11-25 15:49:38.055 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Storage/large_warehouse/large_warehouse.dts collision detail 2 (Collision-5) bounds exceed that of shape.
777WARN 2017-11-25 15:49:38.055 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Storage/large_warehouse/large_warehouse.dts collision detail 3 (Collision-6) bounds exceed that of shape.
778WARN 2017-11-25 15:49:38.055 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Storage/large_warehouse/large_warehouse.dts collision detail 5 (Collision-8) bounds exceed that of shape.
779WARN 2017-11-25 15:49:38.055 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Storage/large_warehouse/large_warehouse.dts collision detail 6 (Collision-9) bounds exceed that of shape.
780WARN 2017-11-25 15:49:38.055 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Storage/large_warehouse/large_warehouse.dts collision detail 7 (Collision-10) bounds exceed that of shape.
781WARN 2017-11-25 15:49:38.070 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/CarpenterShop/carpenter_shop.dts collision detail 0 (Collision-3) bounds exceed that of shape.
782WARN 2017-11-25 15:49:38.070 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/CarpenterShop/carpenter_shop.dts collision detail 1 (Collision-4) bounds exceed that of shape.
783WARN 2017-11-25 15:49:38.070 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/CarpenterShop/carpenter_shop.dts collision detail 3 (Collision-6) bounds exceed that of shape.
784WARN 2017-11-25 15:49:38.070 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/CarpenterShop/carpenter_shop.dts collision detail 4 (Collision-7) bounds exceed that of shape.
785WARN 2017-11-25 15:49:38.070 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/CarpenterShop/carpenter_shop.dts collision detail 5 (Collision-8) bounds exceed that of shape.
786WARN 2017-11-25 15:49:38.070 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/CarpenterShop/carpenter_shop.dts collision detail 6 (Collision-9) bounds exceed that of shape.
787WARN 2017-11-25 15:49:38.070 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/CarpenterShop/carpenter_shop.dts collision detail 10 (Collision-13) bounds exceed that of shape.
788WARN 2017-11-25 15:49:38.070 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/HerbalistShop/herbalist_shop.dts collision detail 0 (Collision-3) bounds exceed that of shape.
789WARN 2017-11-25 15:49:38.070 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/HerbalistShop/herbalist_shop.dts collision detail 1 (Collision-4) bounds exceed that of shape.
790WARN 2017-11-25 15:49:38.070 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/HerbalistShop/herbalist_shop.dts collision detail 3 (Collision-6) bounds exceed that of shape.
791WARN 2017-11-25 15:49:38.070 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/HerbalistShop/herbalist_shop.dts collision detail 4 (Collision-7) bounds exceed that of shape.
792WARN 2017-11-25 15:49:38.070 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/HerbalistShop/herbalist_shop.dts collision detail 5 (Collision-8) bounds exceed that of shape.
793WARN 2017-11-25 15:49:38.070 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/HerbalistShop/herbalist_shop.dts collision detail 6 (Collision-9) bounds exceed that of shape.
794WARN 2017-11-25 15:49:38.070 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/HerbalistShop/herbalist_shop.dts collision detail 8 (Collision-11) bounds exceed that of shape.
795WARN 2017-11-25 15:49:38.086 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/Small_wooden_house/small_wooden_house.dts collision detail 0 (Collision-3) bounds exceed that of shape.
796WARN 2017-11-25 15:49:38.086 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/Small_wooden_house/small_wooden_house.dts collision detail 1 (Collision-4) bounds exceed that of shape.
797WARN 2017-11-25 15:49:38.086 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/Small_wooden_house/small_wooden_house.dts collision detail 3 (Collision-6) bounds exceed that of shape.
798WARN 2017-11-25 15:49:38.086 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/Small_wooden_house/small_wooden_house.dts collision detail 4 (Collision-7) bounds exceed that of shape.
799WARN 2017-11-25 15:49:38.086 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/Small_wooden_house/small_wooden_house.dts collision detail 5 (Collision-8) bounds exceed that of shape.
800WARN 2017-11-25 15:49:38.086 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/Small_wooden_house/small_wooden_house.dts collision detail 6 (Collision-9) bounds exceed that of shape.
801WARN 2017-11-25 15:49:38.086 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/Small_wooden_house/small_wooden_house.dts collision detail 7 (Collision-10) bounds exceed that of shape.
802WARN 2017-11-25 15:49:38.086 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/Small_wooden_house/small_wooden_house.dts collision detail 11 (Collision-14) bounds exceed that of shape.
803WARN 2017-11-25 15:49:38.086 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/Small_wooden_house/small_wooden_house.dts collision detail 12 (Collision-15) bounds exceed that of shape.
804WARN 2017-11-25 15:49:38.102 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/Middle_plaster_house/Middle_plaster_house.dts collision detail 8 (Collision-11) bounds exceed that of shape.
805WARN 2017-11-25 15:49:38.102 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/Middle_plaster_house/Middle_plaster_house.dts collision detail 9 (Collision-12) bounds exceed that of shape.
806WARN 2017-11-25 15:49:38.117 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
807ECHO 2017-11-25 15:49:38.117 {02} <prepareManagers> [0] ShapeBaseImageData id=829 objectTypeID=156
808WARN 2017-11-25 15:49:38.117 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
809ECHO 2017-11-25 15:49:38.117 {02} <prepareManagers> [0] ShapeBaseImageData id=830 objectTypeID=159
810ECHO 2017-11-25 15:49:38.117 {02} <prepareManagers> [0] Datablock for object [Mounted_typeID_167_datablock] (Wheelbarrow) already exist. it is ok situation.
811ECHO 2017-11-25 15:49:38.117 {02} <prepareManagers> [0] Datablock for object [Mounted_typeID_168_datablock] (Cart) already exist. it is ok situation.
812ECHO 2017-11-25 15:49:38.117 {02} <prepareManagers> [0] Datablock for object [Mounted_typeID_169_datablock] (Trader Cart) already exist. it is ok situation.
813WARN 2017-11-25 15:49:38.117 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
814ECHO 2017-11-25 15:49:38.117 {02} <prepareManagers> [0] ShapeBaseImageData id=831 objectTypeID=1437
815WARN 2017-11-25 15:49:38.133 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
816ECHO 2017-11-25 15:49:38.133 {02} <prepareManagers> [0] ShapeBaseImageData id=832 objectTypeID=1461
817WARN 2017-11-25 15:49:38.133 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
818ECHO 2017-11-25 15:49:38.133 {02} <prepareManagers> [0] ShapeBaseImageData id=833 objectTypeID=1496
819WARN 2017-11-25 15:49:38.148 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
820ECHO 2017-11-25 15:49:38.148 {02} <prepareManagers> [0] ShapeBaseImageData id=834 objectTypeID=1497
821WARN 2017-11-25 15:49:38.148 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=170
822WARN 2017-11-25 15:49:38.148 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=170
823WARN 2017-11-25 15:49:38.414 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/CastleConstructions/LargeKeep/LargeKeep.dts collision detail 89 (Collision-92) bounds exceed that of shape.
824WARN 2017-11-25 15:49:38.430 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
825ECHO 2017-11-25 15:49:38.430 {02} <prepareManagers> [0] ShapeBaseImageData id=835 objectTypeID=472
826WARN 2017-11-25 15:49:38.445 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/Wooden_gate/wooden_gate.dts collision detail 3 (Collision-6) bounds exceed that of shape.
827WARN 2017-11-25 15:49:38.445 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/Wooden_gate/wooden_gate.dts collision detail 4 (Collision-7) bounds exceed that of shape.
828WARN 2017-11-25 15:49:38.445 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/Wooden_gate/wooden_gate.dts collision detail 6 (Collision-9) bounds exceed that of shape.
829WARN 2017-11-25 15:49:38.445 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/Wooden_gate/wooden_gate.dts collision detail 8 (Collision-11) bounds exceed that of shape.
830WARN 2017-11-25 15:49:38.445 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/Wooden_barbacan/wooden_barbacan.dts collision detail 0 (Collision-3) bounds exceed that of shape.
831WARN 2017-11-25 15:49:38.445 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/Wooden_barbacan/wooden_barbacan.dts collision detail 4 (Collision-7) bounds exceed that of shape.
832WARN 2017-11-25 15:49:38.445 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/Wooden_barbacan/wooden_barbacan.dts collision detail 8 (Collision-11) bounds exceed that of shape.
833WARN 2017-11-25 15:49:38.445 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/Wooden_barbacan/wooden_barbacan.dts collision detail 9 (Collision-12) bounds exceed that of shape.
834WARN 2017-11-25 15:49:38.445 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/Wooden_barbacan/wooden_barbacan.dts collision detail 18 (Collision-21) bounds exceed that of shape.
835WARN 2017-11-25 15:49:38.445 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=505
836WARN 2017-11-25 15:49:38.445 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=505
837WARN 2017-11-25 15:49:38.462 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/Stone_wall4m_gate/stone_wall4m_gate.dts collision detail 0 (Collision-3) bounds exceed that of shape.
838WARN 2017-11-25 15:49:38.462 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/Stone_wall4m_gate/stone_wall4m_gate.dts collision detail 1 (Collision-4) bounds exceed that of shape.
839WARN 2017-11-25 15:49:38.462 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/Stone_wall4m_gate/stone_wall4m_gate.dts collision detail 5 (Collision-8) bounds exceed that of shape.
840WARN 2017-11-25 15:49:38.462 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/Stone_wall4m_gate/stone_wall4m_gate_alternate.dts collision detail 0 (Collision-3) bounds exceed that of shape.
841WARN 2017-11-25 15:49:38.462 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/Stone_wall4m_gate/stone_wall4m_gate_alternate.dts collision detail 1 (Collision-4) bounds exceed that of shape.
842WARN 2017-11-25 15:49:38.462 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/Stone_wall4m_gate/stone_wall4m_gate_alternate.dts collision detail 5 (Collision-8) bounds exceed that of shape.
843WARN 2017-11-25 15:49:38.462 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=510
844WARN 2017-11-25 15:49:38.462 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=510
845WARN 2017-11-25 15:49:38.462 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=511
846WARN 2017-11-25 15:49:38.462 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=511
847WARN 2017-11-25 15:49:38.555 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/CastleConstructions/Gate/Gate.dts collision detail 0 (Collision-3) bounds exceed that of shape.
848WARN 2017-11-25 15:49:38.555 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/CastleConstructions/Gate/Gate.dts collision detail 8 (Collision-11) bounds exceed that of shape.
849WARN 2017-11-25 15:49:38.664 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_CarpenterShop/wooden_carpenter_shop.dts collision detail 0 (Collision-3) bounds exceed that of shape.
850WARN 2017-11-25 15:49:38.664 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_CarpenterShop/wooden_carpenter_shop.dts collision detail 1 (Collision-4) bounds exceed that of shape.
851WARN 2017-11-25 15:49:38.664 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_CarpenterShop/wooden_carpenter_shop.dts collision detail 3 (Collision-6) bounds exceed that of shape.
852WARN 2017-11-25 15:49:38.664 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_CarpenterShop/wooden_carpenter_shop.dts collision detail 4 (Collision-7) bounds exceed that of shape.
853WARN 2017-11-25 15:49:38.664 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_CarpenterShop/wooden_carpenter_shop.dts collision detail 5 (Collision-8) bounds exceed that of shape.
854WARN 2017-11-25 15:49:38.664 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_CarpenterShop/wooden_carpenter_shop.dts collision detail 6 (Collision-9) bounds exceed that of shape.
855WARN 2017-11-25 15:49:38.664 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_CarpenterShop/wooden_carpenter_shop.dts collision detail 10 (Collision-13) bounds exceed that of shape.
856WARN 2017-11-25 15:49:38.680 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_HerbalistShop/wooden_herbalist_shop.dts collision detail 0 (Collision-3) bounds exceed that of shape.
857WARN 2017-11-25 15:49:38.680 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_HerbalistShop/wooden_herbalist_shop.dts collision detail 1 (Collision-4) bounds exceed that of shape.
858WARN 2017-11-25 15:49:38.680 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_HerbalistShop/wooden_herbalist_shop.dts collision detail 3 (Collision-6) bounds exceed that of shape.
859WARN 2017-11-25 15:49:38.680 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_HerbalistShop/wooden_herbalist_shop.dts collision detail 4 (Collision-7) bounds exceed that of shape.
860WARN 2017-11-25 15:49:38.680 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_HerbalistShop/wooden_herbalist_shop.dts collision detail 5 (Collision-8) bounds exceed that of shape.
861WARN 2017-11-25 15:49:38.680 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_HerbalistShop/wooden_herbalist_shop.dts collision detail 10 (Collision-13) bounds exceed that of shape.
862WARN 2017-11-25 15:49:38.680 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_school/wooden_school.dts collision detail 0 (Collision-3) bounds exceed that of shape.
863WARN 2017-11-25 15:49:38.680 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_school/wooden_school.dts collision detail 1 (Collision-4) bounds exceed that of shape.
864WARN 2017-11-25 15:49:38.680 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_school/wooden_school.dts collision detail 3 (Collision-6) bounds exceed that of shape.
865WARN 2017-11-25 15:49:38.680 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_school/wooden_school.dts collision detail 4 (Collision-7) bounds exceed that of shape.
866WARN 2017-11-25 15:49:38.680 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_school/wooden_school.dts collision detail 5 (Collision-8) bounds exceed that of shape.
867WARN 2017-11-25 15:49:38.680 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_school/wooden_school.dts collision detail 6 (Collision-9) bounds exceed that of shape.
868WARN 2017-11-25 15:49:38.680 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_school/wooden_school.dts collision detail 7 (Collision-10) bounds exceed that of shape.
869WARN 2017-11-25 15:49:38.680 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_school/wooden_school.dts collision detail 12 (Collision-15) bounds exceed that of shape.
870WARN 2017-11-25 15:49:38.680 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_school/wooden_school.dts collision detail 13 (Collision-16) bounds exceed that of shape.
871WARN 2017-11-25 15:49:38.680 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_school/wooden_school.dts collision detail 17 (Collision-20) bounds exceed that of shape.
872WARN 2017-11-25 15:49:38.680 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_school/wooden_school.dts collision detail 18 (Collision-21) bounds exceed that of shape.
873WARN 2017-11-25 15:49:38.680 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/CraftingBonus/Wooden_school/wooden_school.dts collision detail 19 (Collision-22) bounds exceed that of shape.
874WARN 2017-11-25 15:49:38.695 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
875ECHO 2017-11-25 15:49:38.695 {02} <prepareManagers> [0] ShapeBaseImageData id=836 objectTypeID=522
876WARN 2017-11-25 15:49:38.695 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
877ECHO 2017-11-25 15:49:38.695 {02} <prepareManagers> [0] ShapeBaseImageData id=837 objectTypeID=523
878WARN 2017-11-25 15:49:38.695 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
879ECHO 2017-11-25 15:49:38.695 {02} <prepareManagers> [0] ShapeBaseImageData id=838 objectTypeID=626
880WARN 2017-11-25 15:49:38.695 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
881ECHO 2017-11-25 15:49:38.695 {02} <prepareManagers> [0] ShapeBaseImageData id=839 objectTypeID=653
882WARN 2017-11-25 15:49:38.695 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
883ECHO 2017-11-25 15:49:38.695 {02} <prepareManagers> [0] ShapeBaseImageData id=840 objectTypeID=911
884WARN 2017-11-25 15:49:38.695 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
885ECHO 2017-11-25 15:49:38.695 {02} <prepareManagers> [0] ShapeBaseImageData id=841 objectTypeID=912
886WARN 2017-11-25 15:49:38.695 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
887ECHO 2017-11-25 15:49:38.695 {02} <prepareManagers> [0] ShapeBaseImageData id=842 objectTypeID=913
888WARN 2017-11-25 15:49:38.695 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
889ECHO 2017-11-25 15:49:38.695 {02} <prepareManagers> [0] ShapeBaseImageData id=843 objectTypeID=914
890WARN 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
891ECHO 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] ShapeBaseImageData id=844 objectTypeID=915
892WARN 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
893ECHO 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] ShapeBaseImageData id=845 objectTypeID=916
894WARN 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
895ECHO 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] ShapeBaseImageData id=846 objectTypeID=917
896WARN 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
897ECHO 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] ShapeBaseImageData id=847 objectTypeID=918
898WARN 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
899ECHO 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] ShapeBaseImageData id=848 objectTypeID=919
900WARN 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
901ECHO 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] ShapeBaseImageData id=849 objectTypeID=920
902WARN 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
903ECHO 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] ShapeBaseImageData id=850 objectTypeID=921
904WARN 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
905ECHO 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] ShapeBaseImageData id=851 objectTypeID=922
906WARN 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
907ECHO 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] ShapeBaseImageData id=852 objectTypeID=923
908WARN 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/Small_plaster_house/Small_plaster_house.dts collision detail 7 (Collision-10) bounds exceed that of shape.
909WARN 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
910ECHO 2017-11-25 15:49:38.711 {02} <prepareManagers> [0] ShapeBaseImageData id=853 objectTypeID=1071
911WARN 2017-11-25 15:49:38.727 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=1072
912WARN 2017-11-25 15:49:38.727 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=1072
913WARN 2017-11-25 15:49:38.727 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
914ECHO 2017-11-25 15:49:38.727 {02} <prepareManagers> [0] ShapeBaseImageData id=854 objectTypeID=1078
915WARN 2017-11-25 15:49:38.727 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
916ECHO 2017-11-25 15:49:38.727 {02} <prepareManagers> [0] ShapeBaseImageData id=855 objectTypeID=1079
917WARN 2017-11-25 15:49:38.727 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
918ECHO 2017-11-25 15:49:38.727 {02} <prepareManagers> [0] ShapeBaseImageData id=856 objectTypeID=1080
919WARN 2017-11-25 15:49:38.727 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
920ECHO 2017-11-25 15:49:38.727 {02} <prepareManagers> [0] ShapeBaseImageData id=857 objectTypeID=1070
921WARN 2017-11-25 15:49:38.742 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
922ECHO 2017-11-25 15:49:38.742 {02} <prepareManagers> [0] ShapeBaseImageData id=858 objectTypeID=1083
923ERRR 2017-11-25 15:49:38.742 {02} <prepareManagers> [0] Error: shape art/Models/3D/Construction/Residence/Middle_wooden_house/Middle_wooden_house.dts-collision detail 9 (Collision-12) bounds box invalid!
924WARN 2017-11-25 15:49:38.805 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/3Floor_big_plaster_house/3Floor_big_plaster_house.dts collision detail 0 (Collision-3) bounds exceed that of shape.
925WARN 2017-11-25 15:49:38.805 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/3Floor_big_plaster_house/3Floor_big_plaster_house.dts collision detail 3 (Collision-6) bounds exceed that of shape.
926WARN 2017-11-25 15:49:38.805 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/3Floor_big_plaster_house/3Floor_big_plaster_house.dts collision detail 4 (Collision-7) bounds exceed that of shape.
927WARN 2017-11-25 15:49:38.805 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/3Floor_big_plaster_house/3Floor_big_plaster_house.dts collision detail 5 (Collision-8) bounds exceed that of shape.
928WARN 2017-11-25 15:49:38.805 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/3Floor_big_plaster_house/3Floor_big_plaster_house.dts collision detail 6 (Collision-9) bounds exceed that of shape.
929WARN 2017-11-25 15:49:38.805 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/3Floor_big_plaster_house/3Floor_big_plaster_house.dts collision detail 7 (Collision-10) bounds exceed that of shape.
930WARN 2017-11-25 15:49:38.805 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/3Floor_big_plaster_house/3Floor_big_plaster_house.dts collision detail 8 (Collision-11) bounds exceed that of shape.
931WARN 2017-11-25 15:49:38.805 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/3Floor_big_plaster_house/3Floor_big_plaster_house.dts collision detail 9 (Collision-12) bounds exceed that of shape.
932WARN 2017-11-25 15:49:38.805 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/3Floor_big_plaster_house/3Floor_big_plaster_house.dts collision detail 10 (Collision-13) bounds exceed that of shape.
933WARN 2017-11-25 15:49:38.805 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/3Floor_big_plaster_house/3Floor_big_plaster_house.dts collision detail 11 (Collision-14) bounds exceed that of shape.
934WARN 2017-11-25 15:49:38.805 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/3Floor_big_plaster_house/3Floor_big_plaster_house.dts collision detail 12 (Collision-15) bounds exceed that of shape.
935WARN 2017-11-25 15:49:38.805 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/3Floor_big_plaster_house/3Floor_big_plaster_house.dts collision detail 13 (Collision-16) bounds exceed that of shape.
936WARN 2017-11-25 15:49:38.805 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/3Floor_big_plaster_house/3Floor_big_plaster_house.dts collision detail 14 (Collision-17) bounds exceed that of shape.
937WARN 2017-11-25 15:49:38.805 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/3Floor_big_plaster_house/3Floor_big_plaster_house.dts collision detail 15 (Collision-18) bounds exceed that of shape.
938WARN 2017-11-25 15:49:38.805 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/3Floor_big_plaster_house/3Floor_big_plaster_house.dts collision detail 16 (Collision-19) bounds exceed that of shape.
939WARN 2017-11-25 15:49:38.805 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/3Floor_big_plaster_house/3Floor_big_plaster_house.dts collision detail 17 (Collision-20) bounds exceed that of shape.
940WARN 2017-11-25 15:49:38.805 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Residence/3Floor_big_plaster_house/3Floor_big_plaster_house.dts collision detail 18 (Collision-21) bounds exceed that of shape.
941WARN 2017-11-25 15:49:38.805 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
942ECHO 2017-11-25 15:49:38.805 {02} <prepareManagers> [0] ShapeBaseImageData id=859 objectTypeID=1090
943WARN 2017-11-25 15:49:38.898 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
944ECHO 2017-11-25 15:49:38.898 {02} <prepareManagers> [0] ShapeBaseImageData id=860 objectTypeID=91
945WARN 2017-11-25 15:49:38.898 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
946ECHO 2017-11-25 15:49:38.898 {02} <prepareManagers> [0] ShapeBaseImageData id=861 objectTypeID=90
947WARN 2017-11-25 15:49:38.898 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
948ECHO 2017-11-25 15:49:38.898 {02} <prepareManagers> [0] ShapeBaseImageData id=862 objectTypeID=89
949WARN 2017-11-25 15:49:38.898 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
950ECHO 2017-11-25 15:49:38.898 {02} <prepareManagers> [0] ShapeBaseImageData id=863 objectTypeID=1405
951WARN 2017-11-25 15:49:38.898 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
952ECHO 2017-11-25 15:49:38.898 {02} <prepareManagers> [0] ShapeBaseImageData id=864 objectTypeID=1406
953WARN 2017-11-25 15:49:38.914 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
954ECHO 2017-11-25 15:49:38.914 {02} <prepareManagers> [0] ShapeBaseImageData id=865 objectTypeID=1407
955WARN 2017-11-25 15:49:38.914 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
956ECHO 2017-11-25 15:49:38.914 {02} <prepareManagers> [0] ShapeBaseImageData id=866 objectTypeID=92
957WARN 2017-11-25 15:49:38.914 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
958ECHO 2017-11-25 15:49:38.914 {02} <prepareManagers> [0] ShapeBaseImageData id=867 objectTypeID=93
959WARN 2017-11-25 15:49:38.914 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
960ECHO 2017-11-25 15:49:38.914 {02} <prepareManagers> [0] ShapeBaseImageData id=868 objectTypeID=94
961WARN 2017-11-25 15:49:38.914 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
962ECHO 2017-11-25 15:49:38.914 {02} <prepareManagers> [0] ShapeBaseImageData id=869 objectTypeID=1142
963WARN 2017-11-25 15:49:38.914 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
964ECHO 2017-11-25 15:49:38.914 {02} <prepareManagers> [0] ShapeBaseImageData id=870 objectTypeID=1143
965WARN 2017-11-25 15:49:38.914 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
966ECHO 2017-11-25 15:49:38.914 {02} <prepareManagers> [0] ShapeBaseImageData id=871 objectTypeID=1144
967WARN 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
968ECHO 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] ShapeBaseImageData id=872 objectTypeID=1145
969WARN 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
970ECHO 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] ShapeBaseImageData id=873 objectTypeID=1146
971WARN 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
972ECHO 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] ShapeBaseImageData id=874 objectTypeID=1147
973WARN 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
974ECHO 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] ShapeBaseImageData id=875 objectTypeID=1148
975WARN 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
976ECHO 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] ShapeBaseImageData id=876 objectTypeID=1149
977WARN 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
978ECHO 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] ShapeBaseImageData id=877 objectTypeID=1150
979WARN 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
980ECHO 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] ShapeBaseImageData id=878 objectTypeID=1151
981WARN 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
982ECHO 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] ShapeBaseImageData id=879 objectTypeID=1152
983WARN 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
984ECHO 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] ShapeBaseImageData id=880 objectTypeID=1323
985WARN 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
986ECHO 2017-11-25 15:49:38.930 {02} <prepareManagers> [0] ShapeBaseImageData id=881 objectTypeID=1333
987WARN 2017-11-25 15:49:38.945 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
988ECHO 2017-11-25 15:49:38.945 {02} <prepareManagers> [0] ShapeBaseImageData id=882 objectTypeID=1334
989WARN 2017-11-25 15:49:38.945 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
990ECHO 2017-11-25 15:49:38.945 {02} <prepareManagers> [0] ShapeBaseImageData id=883 objectTypeID=1350
991WARN 2017-11-25 15:49:38.945 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
992ECHO 2017-11-25 15:49:38.945 {02} <prepareManagers> [0] ShapeBaseImageData id=884 objectTypeID=1351
993WARN 2017-11-25 15:49:38.945 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
994ECHO 2017-11-25 15:49:38.945 {02} <prepareManagers> [0] ShapeBaseImageData id=885 objectTypeID=1352
995WARN 2017-11-25 15:49:38.945 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/Stone_wall4m_gate_middle/Stone_wall4m_gate_middle_dmg.dts collision detail 2 (Collision-5) bounds exceed that of shape.
996WARN 2017-11-25 15:49:38.945 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/Stone_wall4m_gate_middle/Stone_wall4m_gate_middle_dmg.dts collision detail 6 (Collision-9) bounds exceed that of shape.
997WARN 2017-11-25 15:49:38.945 {02} <prepareManagers> [0] Warning: shape art/Models/3D/Construction/Fortifications/Stone_wall4m_gate_middle/Stone_wall4m_gate_middle_dmg.dts collision detail 7 (Collision-10) bounds exceed that of shape.
998WARN 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
999ECHO 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] ShapeBaseImageData id=886 objectTypeID=1361
1000WARN 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1001ECHO 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] ShapeBaseImageData id=887 objectTypeID=1362
1002WARN 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1003ECHO 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] ShapeBaseImageData id=888 objectTypeID=1363
1004WARN 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1005ECHO 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] ShapeBaseImageData id=889 objectTypeID=1364
1006WARN 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1007ECHO 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] ShapeBaseImageData id=890 objectTypeID=1365
1008WARN 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1009ECHO 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] ShapeBaseImageData id=891 objectTypeID=1366
1010WARN 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1011ECHO 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] ShapeBaseImageData id=892 objectTypeID=1367
1012WARN 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1013ECHO 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] ShapeBaseImageData id=893 objectTypeID=1368
1014WARN 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1015ECHO 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] ShapeBaseImageData id=894 objectTypeID=1372
1016WARN 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1017ECHO 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] ShapeBaseImageData id=895 objectTypeID=1369
1018WARN 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1019ECHO 2017-11-25 15:49:38.961 {02} <prepareManagers> [0] ShapeBaseImageData id=896 objectTypeID=1370
1020WARN 2017-11-25 15:49:38.976 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1021ECHO 2017-11-25 15:49:38.976 {02} <prepareManagers> [0] ShapeBaseImageData id=897 objectTypeID=1371
1022WARN 2017-11-25 15:49:38.976 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1023ECHO 2017-11-25 15:49:38.976 {02} <prepareManagers> [0] ShapeBaseImageData id=898 objectTypeID=1374
1024WARN 2017-11-25 15:49:38.976 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1025ECHO 2017-11-25 15:49:38.976 {02} <prepareManagers> [0] ShapeBaseImageData id=899 objectTypeID=1375
1026WARN 2017-11-25 15:49:38.976 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=501
1027WARN 2017-11-25 15:49:38.976 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=501
1028WARN 2017-11-25 15:49:38.976 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1029ECHO 2017-11-25 15:49:38.976 {02} <prepareManagers> [0] ShapeBaseImageData id=900 objectTypeID=1383
1030WARN 2017-11-25 15:49:38.976 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1031ECHO 2017-11-25 15:49:38.976 {02} <prepareManagers> [0] ShapeBaseImageData id=901 objectTypeID=1384
1032WARN 2017-11-25 15:49:38.976 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=1385
1033WARN 2017-11-25 15:49:38.976 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=1385
1034WARN 2017-11-25 15:49:38.992 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1035ECHO 2017-11-25 15:49:38.992 {02} <prepareManagers> [0] ShapeBaseImageData id=902 objectTypeID=1394
1036WARN 2017-11-25 15:49:38.992 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1037ECHO 2017-11-25 15:49:38.992 {02} <prepareManagers> [0] ShapeBaseImageData id=903 objectTypeID=1445
1038WARN 2017-11-25 15:49:38.992 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1039ECHO 2017-11-25 15:49:38.992 {02} <prepareManagers> [0] ShapeBaseImageData id=904 objectTypeID=1446
1040WARN 2017-11-25 15:49:38.992 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1041ECHO 2017-11-25 15:49:38.992 {02} <prepareManagers> [0] ShapeBaseImageData id=905 objectTypeID=1448
1042WARN 2017-11-25 15:49:38.992 {02} <prepareManagers> [0] No one hit group was linked to hit direction. (null)
1043ECHO 2017-11-25 15:49:38.992 {02} <prepareManagers> [0] ShapeBaseImageData id=906 objectTypeID=1449
1044WARN 2017-11-25 15:49:39.992 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=1478
1045WARN 2017-11-25 15:49:39.992 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=1478
1046WARN 2017-11-25 15:49:39.992 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=1479
1047WARN 2017-11-25 15:49:39.992 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=1479
1048WARN 2017-11-25 15:49:39.992 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=1503
1049WARN 2017-11-25 15:49:39.992 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=1503
1050WARN 2017-11-25 15:49:39.992 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=1483
1051WARN 2017-11-25 15:49:39.992 {02} <prepareManagers> [0] ValidateType() RotationStep!=0 for sloped object id=1483
1052ECHO 2017-11-25 15:49:39.039 {02} <prepareManagers> [0] Loading effects from file [data/cm_effects.xml]
1053WARN 2017-11-25 15:49:39.039 {02} <prepareManagers> [0] DB::RS(1 ms) SELECT ID, ResultPreparationID, ResultPotionID, PlayerEffectID FROM `effects`;
1054WARN 2017-11-25 15:49:39.039 {02} <prepareManagers> [0] DB::RS(0 ms) SELECT ID, EffectID1, EffectID2, EffectID3 FROM `effects_sets`;
1055ECHO 2017-11-25 15:49:39.039 {02} <prepareManagers> [0] CmMixingManager initialized.
1056WARN 2017-11-25 15:49:39.039 {02} <prepareManagers> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID FROM `unmovable_objects` WHERE ObjectTypeID=1121
1057ECHO 2017-11-25 15:49:39.039 {02} <prepareManagers> [0] CmBeehiveManager initialized.
1058ECHO 2017-11-25 15:49:39.039 {02} <prepareManagers> [0] MentoringManager initialized.
1059ECHO 2017-11-25 15:49:39.039 {02} <prepareManagers> [0] Mentoring manager is inited
1060ECHO 2017-11-25 15:49:39.039 {02} <prepareManagers> [0] Bomberman initialized.
1061ECHO 2017-11-25 15:49:39.039 {02} <prepareManagers> [0] Bomberman is inited
1062WARN 2017-11-25 15:49:39.039 {02} <prepareManagers> [0] DB::RS(1 ms) select gl.ID as LandID, c.ID as ClaimID, gl.GuildID as GuildID, gl.CenterGeoID as CenterGeoID, gl.Radius as Radius,^gl.SupportPoints as SupportPoints from guild_lands gl join claims c on gl.ID = c.GuildLandID where gl.LandType = 1 /*core*/;
1063WARN 2017-11-25 15:49:39.039 {02} <prepareManagers> [0] DB::RS(1 ms) select pl.ID as PersonalLandID, c.ID as ClaimID, pl.GeoID1 as FirstGeoID, pl.GeoID2 as SecondGeoID, pl.CharID as OwnerCharID, pl.SupportPoints as SupportPoints, pl.IsTemp as TempStatus from personal_lands plBase join claims c on plBase.ID = c.PersonalLandID join personal_lands pl on plBase.CharID = pl.CharID where((pl.GeoID1 >= f_toGeoID(442, 0, 0) and pl.GeoID1 < f_toGeoID(443, 0, 0)) or (pl.GeoID1 >= f_toGeoID(443, 0, 0) and pl.GeoID1 < f_toGeoID(444, 0, 0)) or (pl.GeoID1 >= f_toGeoID(444, 0, 0) and pl.GeoID1 < f_toGeoID(445, 0, 0)) or (pl.GeoID1 >= f_toGeoID(445, 0, 0) and pl.GeoID1 < f_toGeoID(446, 0, 0)) or (pl.GeoID1 >= f_toGeoID(446, 0, 0) and pl.GeoID1 < f_toGeoID(447, 0, 0)) or (pl.GeoID1 >= f_toGeoID(447, 0, 0) and pl.GeoID1 < f_toGeoID(448, 0, 0)) or (pl.GeoID1 >= f_toGeoID(448, 0, 0) and pl.GeoID1 < f_toGeoID(449, 0, 0)) or (pl.GeoID1 >= f_toGeoID(449, 0, 0) and pl.GeoID1 < f_toGeoID(450, 0, 0)) or (pl.GeoID1 >= f_toGeoID(450, 0, 0) and pl.GeoID1 < f_toGeoID(451, 0, 0)));
1064WARN 2017-11-25 15:49:39.039 {02} <prepareManagers> [0] DB::RS(1 ms) select al.ID as AdminLandID, c.ID as ClaimID, al.GeoID1 as FirstGeoID, al.GeoID2 as SecondGeoID from admin_lands al join claims c on al.ID = c.AdminLandID where((al.GeoID1 >= f_toGeoID(442, 0, 0) and al.GeoID1 < f_toGeoID(443, 0, 0)) or (al.GeoID1 >= f_toGeoID(443, 0, 0) and al.GeoID1 < f_toGeoID(444, 0, 0)) or (al.GeoID1 >= f_toGeoID(444, 0, 0) and al.GeoID1 < f_toGeoID(445, 0, 0)) or (al.GeoID1 >= f_toGeoID(445, 0, 0) and al.GeoID1 < f_toGeoID(446, 0, 0)) or (al.GeoID1 >= f_toGeoID(446, 0, 0) and al.GeoID1 < f_toGeoID(447, 0, 0)) or (al.GeoID1 >= f_toGeoID(447, 0, 0) and al.GeoID1 < f_toGeoID(448, 0, 0)) or (al.GeoID1 >= f_toGeoID(448, 0, 0) and al.GeoID1 < f_toGeoID(449, 0, 0)) or (al.GeoID1 >= f_toGeoID(449, 0, 0) and al.GeoID1 < f_toGeoID(450, 0, 0)) or (al.GeoID1 >= f_toGeoID(450, 0, 0) and al.GeoID1 < f_toGeoID(451, 0, 0)));
1065ECHO 2017-11-25 15:49:39.039 {02} <prepareManagers> [0] Reloading data for special attacks from data/cm_special_attacks.xml
1066ECHO 2017-11-25 15:49:39.039 {02} <createWorld> [0] Loading terrain list
1067WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] DB::noRS(1 ms) START TRANSACTION;
1068WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] DB::RS(0 ms) select ID, CachedGeoVersion, CachedTerCRC, CachedServerGeoIdxCRC, CachedServerGeoDatCRC, CachedClientGeoIdxCRC, CachedClientGeoDatCRC, PackedTerCRC, PackedClientGeoIdxCRC, PackedClientGeoDatCRC, CachedClientGeoIdxSize, CachedClientGeoDatSize from terrain_blocks where CachedGeoVersion is not null and CachedTerCRC is not null and CachedServerGeoIdxCRC is not null and CachedServerGeoDatCRC is not null and CachedClientGeoIdxCRC is not null and CachedClientGeoDatCRC is not null and PackedTerCRC is not null and PackedClientGeoIdxCRC is not null and PackedClientGeoDatCRC is not null and CachedClientGeoIdxSize is not null and CachedClientGeoDatSize is not null and ID in (442,443,444,445,446,447,448,449,450);
1069WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc442w1-211284_ter_pack
1070WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc442w1-211284_ter2idxcl_pack
1071WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc442w1-211284_ter2datcl_pack
1072WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::init() - can't init packed data for ter/geo#442
1073WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::_loadCachedFilesInfoTer() - can't init cached info for terID#442
1074WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc443w1-180981_ter_pack
1075WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc443w1-180981_ter2idxcl_pack
1076WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc443w1-180981_ter2datcl_pack
1077WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::init() - can't init packed data for ter/geo#443
1078WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::_loadCachedFilesInfoTer() - can't init cached info for terID#443
1079WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc444w1-1862_ter_pack
1080WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc444w1-1862_ter2idxcl_pack
1081WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc444w1-1862_ter2datcl_pack
1082WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::init() - can't init packed data for ter/geo#444
1083WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::_loadCachedFilesInfoTer() - can't init cached info for terID#444
1084WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc445w1-57963_ter_pack
1085WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc445w1-57963_ter2idxcl_pack
1086WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc445w1-57963_ter2datcl_pack
1087WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::init() - can't init packed data for ter/geo#445
1088WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::_loadCachedFilesInfoTer() - can't init cached info for terID#445
1089WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc446w1-130927_ter_pack
1090WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc446w1-130927_ter2idxcl_pack
1091WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc446w1-130927_ter2datcl_pack
1092WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::init() - can't init packed data for ter/geo#446
1093WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::_loadCachedFilesInfoTer() - can't init cached info for terID#446
1094WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc447w1-13094_ter_pack
1095WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc447w1-13094_ter2idxcl_pack
1096WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc447w1-13094_ter2datcl_pack
1097WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::init() - can't init packed data for ter/geo#447
1098WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::_loadCachedFilesInfoTer() - can't init cached info for terID#447
1099WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc448w1-28774_ter_pack
1100WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc448w1-28774_ter2idxcl_pack
1101WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc448w1-28774_ter2datcl_pack
1102WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::init() - can't init packed data for ter/geo#448
1103WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::_loadCachedFilesInfoTer() - can't init cached info for terID#448
1104WARN 2017-11-25 15:49:39.039 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc449w1-58860_ter_pack
1105WARN 2017-11-25 15:49:39.055 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc449w1-58860_ter2idxcl_pack
1106WARN 2017-11-25 15:49:39.055 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc449w1-58860_ter2datcl_pack
1107WARN 2017-11-25 15:49:39.055 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::init() - can't init packed data for ter/geo#449
1108WARN 2017-11-25 15:49:39.055 {02} <createWorld> [0] CmPatcher::_loadCachedFilesInfoTer() - can't init cached info for terID#449
1109WARN 2017-11-25 15:49:39.055 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc450w1-165193_ter_pack
1110WARN 2017-11-25 15:49:39.055 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc450w1-165193_ter2idxcl_pack
1111WARN 2017-11-25 15:49:39.055 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::_initPackedFileLists() - packed directory not found: data/terrains/cached/w1/tc450w1-165193_ter2datcl_pack
1112WARN 2017-11-25 15:49:39.055 {02} <createWorld> [0] CmPatcher::CachedTerGeoInfo::init() - can't init packed data for ter/geo#450
1113WARN 2017-11-25 15:49:39.055 {02} <createWorld> [0] CmPatcher::_loadCachedFilesInfoTer() - can't init cached info for terID#450
1114WARN 2017-11-25 15:49:39.055 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1115WARN 2017-11-25 15:49:39.055 {02} <createWorld> [0] DB::RS(1 ms) select FileCRC, FileSize, FileTimestamp from nav_mesh_cache where ServerID = 1;
1116WARN 2017-11-25 15:49:39.055 {02} <createWorld> [0] DB::RS(0 ms) select TerID, ObjectsVersion, ForestVersion, GeoVersion from nav_mesh_cache_ter_versions where ServerID = 1
1117WARN 2017-11-25 15:49:39.055 {02} <createWorld> [0] CmPatcher::CachedNavMeshInfo::validateCachedFiles() - cached file not found: data/navMeshes/cached/w1/nmc1w1-1511563067.nmesh
1118WARN 2017-11-25 15:49:39.055 {02} <createWorld> [0] CmPatcher::_setCachedNavMeshInfo() - cached file is invalid
1119WARN 2017-11-25 15:49:39.055 {02} <createWorld> [0] CmPatcher::_loadCachedFilesInfoMavMesh() - can't set cached nav mesh info
1120WARN 2017-11-25 15:49:39.055 {02} <createWorld> [0] CmPatcher::_clearCachedFilesNavMesh() - can't scan folder data/navMeshes/cached/w1
1121ECHO 2017-11-25 15:49:39.055 {02} <createWorld> [0] Create ter#442 from: data/terrains/t442.ter
1122ECHO 2017-11-25 15:49:39.086 {02} <createWorld> [0] Terrain [442] loaded from file in 31ms. Memory usage: 5.016 MB
1123INFO 2017-11-25 15:49:39.617 {02} <createWorld> [0] TerrainDeformer::_registerTerrain(442)!
1124WARN 2017-11-25 15:49:39.617 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1125WARN 2017-11-25 15:49:39.617 {02} <createWorld> [0] DB::RS(0 ms) SELECT `ForestVersion` FROM `terrain_blocks` WHERE `ID`=442
1126WARN 2017-11-25 15:49:39.617 {02} <createWorld> [0] DB::RS(13 ms) select GeoDataID, TreeType, TreePlantMethod, SubcellMask, AgeTime, Quality from forest where GeoDataID >= 115867648 and GeoDataID < 116129792 order by GeoDataID;
1127WARN 2017-11-25 15:49:39.633 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1128ECHO 2017-11-25 15:49:39.633 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#442
1129ECHO 2017-11-25 15:49:39.648 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#442
1130ECHO 2017-11-25 15:49:39.648 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#442
1131ECHO 2017-11-25 15:49:39.648 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#442
1132ECHO 2017-11-25 15:49:39.648 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#442
1133ECHO 2017-11-25 15:49:39.648 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#442
1134INFO 2017-11-25 15:49:39.648 {02} <createWorld> [0] CmPatcher::attachTerrain(442) -- creating new (full load: 1)!
1135INFO 2017-11-25 15:49:39.648 {02} <createWorld> [0] CmChangeStore::init(442) -- was not inited before!
1136WARN 2017-11-25 15:49:39.648 {02} <createWorld> [0] DB::RS(0 ms) SELECT TerCRC, GeoIdxCRC, GeoDatCRC, ObjectsCRC, ForestCRC FROM `terrain_blocks` WHERE `ID`=442
1137WARN 2017-11-25 15:49:39.648 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1138WARN 2017-11-25 15:49:39.648 {02} <createWorld> [0] DB::RS(0 ms) SELECT `GeoVersion` FROM `terrain_blocks` WHERE `ID`=442
1139WARN 2017-11-25 15:49:41.977 {02} <createWorld> [0] DB::RS(2332 ms) SELECT `Version`, `ChangeIndex`, `IsServerOnly`, `Action`, `GeoDataID`, `Altitude`, `Substance`, `LevelFlags`, `Quantity`, `Quality` FROM `geo_patch` WHERE `TerID` = 442 and `Version` > 0 ORDER BY `Version`, `ChangeIndex`;
1140WARN 2017-11-25 15:49:41.977 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1141WARN 2017-11-25 15:49:45.648 {02} <createWorld> [0] DB::noRS(1 ms) START TRANSACTION;
1142WARN 2017-11-25 15:49:45.648 {02} <createWorld> [0] DB::RS(1 ms) SELECT `ObjectsVersion` FROM `terrain_blocks` WHERE `ID`=442
1143WARN 2017-11-25 15:49:45.773 {02} <createWorld> [0] DB::RS(131 ms) SELECT `Version`, `Action`, `ObjectSuperType`, `ObjectID`, `ObjectTypeID`, `GeoDataID`, `TurnAngle`, `Altitude`, `OffsetX`, `OffsetY`, `OffsetZ`, `IsComplete` FROM `objects_patch` WHERE `TerID`=442 ORDER BY `Version`
1144WARN 2017-11-25 15:49:45.773 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1145WARN 2017-11-25 15:49:46.352 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1146WARN 2017-11-25 15:49:46.352 {02} <createWorld> [0] DB::RS(1 ms) SELECT `ForestVersion` FROM `terrain_blocks` WHERE `ID`=442
1147WARN 2017-11-25 15:49:46.414 {02} <createWorld> [0] DB::RS(55 ms) SELECT `Version`, `Action`, `GeoDataID`, `SubcellMask`, `TreeType`, `TreeHealth`, `TreePlantMethod`, `AddTime` FROM `forest_patch` WHERE `TerID`=442 ORDER BY `Version`
1148WARN 2017-11-25 15:49:46.414 {02} <createWorld> [0] DB::noRS(1 ms) COMMIT;
1149WARN 2017-11-25 15:49:46.430 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1150WARN 2017-11-25 15:49:46.430 {02} <createWorld> [0] DB::RS(1 ms) SELECT `ObjectsVersion` FROM `terrain_blocks` WHERE `ID`=442
1151WARN 2017-11-25 15:49:46.430 {02} <createWorld> [0] DB::RS(8 ms) SELECT u.ID, u.ObjectTypeID, u.GeoDataID, u.TurnAngle, u.isComplete, u.CreatedDurability, u.Durability, IFNULL(u.OwnerID, 0) as OwnerID, IFNULL(GREATEST(TIMESTAMPDIFF(SECOND, u.DroppedTime, now()), 0), 0) as SecSinceDrop, c.Name, c.LastName FROM unmovable_objects u LEFT JOIN `character` c on c.ID = u.OwnerID WHERE GeoDataID>=115867648 AND GeoDataID<116129792 ORDER BY u.ID;
1152WARN 2017-11-25 15:49:46.445 {02} <createWorld> [0] DB::RS(14 ms) SELECT m.ID, m.ObjectTypeID, m.GeoDataID, m.TurnAngle, m.isComplete, m.OffsetMmX, m.OffsetMmY, m.OffsetMmZ, m.Altitude, m.CreatedDurability, m.Durability, IFNULL(m.OwnerID, 0) as OwnerID, IFNULL(GREATEST(TIMESTAMPDIFF(SECOND, m.DroppedTime, now()), 0), 0) as SecSinceDrop, c.Name, c.LastName FROM movable_objects m LEFT JOIN `character` c on c.ID=m.OwnerID WHERE CarrierCharacterID IS NULL AND CarrierHorseID IS NULL AND CarrierMovableID IS NULL AND GeoDataID>=115867648 AND GeoDataID<116129792 ORDER BY m.ID;
1153WARN 2017-11-25 15:49:46.445 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1154ERRR 2017-11-25 15:49:46.867 {02} <createWorld> [0] CheckTerrain() - Not flattened cell found
1155ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116123556 posn.z=1028.500000 pos.z=1028.500000 it=0,0
1156ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116124067 posn.z=1029.500000 pos.z=1028.500000 it=-1,1
1157ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116123555 posn.z=1029.500000 pos.z=1028.500000 it=-1,0
1158ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116124068 posn.z=1028.500000 pos.z=1028.500000 it=0,1
1159ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116123554 posn.z=1030.500000 pos.z=1030.500000 it=0,0
1160ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116124065 posn.z=1031.500000 pos.z=1030.500000 it=-1,1
1161ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116123553 posn.z=1031.500000 pos.z=1030.500000 it=-1,0
1162ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116124066 posn.z=1030.500000 pos.z=1030.500000 it=0,1
1163ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116123552 posn.z=1032.500000 pos.z=1032.500000 it=0,0
1164ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116124063 posn.z=1033.500000 pos.z=1032.500000 it=-1,1
1165ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116123551 posn.z=1033.500000 pos.z=1032.500000 it=-1,0
1166ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116124064 posn.z=1032.500000 pos.z=1032.500000 it=0,1
1167ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116123550 posn.z=1034.500000 pos.z=1034.500000 it=0,0
1168ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116124061 posn.z=1035.500000 pos.z=1034.500000 it=-1,1
1169ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116123549 posn.z=1035.500000 pos.z=1034.500000 it=-1,0
1170ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116124062 posn.z=1034.500000 pos.z=1034.500000 it=0,1
1171ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116123548 posn.z=1036.500000 pos.z=1036.500000 it=0,0
1172ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116124059 posn.z=1037.500000 pos.z=1036.500000 it=-1,1
1173ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116123547 posn.z=1037.500000 pos.z=1036.500000 it=-1,0
1174ECHO 2017-11-25 15:49:47.008 {02} <createWorld> [0] SLOPE: dir=West geoid=116124060 posn.z=1036.500000 pos.z=1036.500000 it=0,1
1175WARN 2017-11-25 15:49:47.133 {02} <createWorld> [0] DB::RS(0 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 88;
1176WARN 2017-11-25 15:49:47.148 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=1511) then 1 else 0 end as haveItems;
1177WARN 2017-11-25 15:49:47.148 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=1513) then 1 else 0 end as haveItems;
1178WARN 2017-11-25 15:49:47.148 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=1515) then 1 else 0 end as haveItems;
1179WARN 2017-11-25 15:49:47.148 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=1516) then 1 else 0 end as haveItems;
1180WARN 2017-11-25 15:49:47.148 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=1517) then 1 else 0 end as haveItems;
1181WARN 2017-11-25 15:49:47.148 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=1520) then 1 else 0 end as haveItems;
1182WARN 2017-11-25 15:49:47.164 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2171) then 1 else 0 end as haveItems;
1183WARN 2017-11-25 15:49:47.164 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2172) then 1 else 0 end as haveItems;
1184WARN 2017-11-25 15:49:47.164 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2173) then 1 else 0 end as haveItems;
1185WARN 2017-11-25 15:49:47.164 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2174) then 1 else 0 end as haveItems;
1186WARN 2017-11-25 15:49:47.164 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2175) then 1 else 0 end as haveItems;
1187WARN 2017-11-25 15:49:47.164 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2176) then 1 else 0 end as haveItems;
1188WARN 2017-11-25 15:49:47.164 {02} <createWorld> [0] DB::RS(0 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 2616;
1189WARN 2017-11-25 15:49:47.164 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2746) then 1 else 0 end as haveItems;
1190WARN 2017-11-25 15:49:47.164 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2747) then 1 else 0 end as haveItems;
1191WARN 2017-11-25 15:49:47.164 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2748) then 1 else 0 end as haveItems;
1192WARN 2017-11-25 15:49:47.164 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2750) then 1 else 0 end as haveItems;
1193WARN 2017-11-25 15:49:47.164 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2751) then 1 else 0 end as haveItems;
1194WARN 2017-11-25 15:49:47.164 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2752) then 1 else 0 end as haveItems;
1195WARN 2017-11-25 15:49:47.164 {02} <createWorld> [0] DB::RS(2 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3066) then 1 else 0 end as haveItems;
1196WARN 2017-11-25 15:49:47.180 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3067) then 1 else 0 end as haveItems;
1197WARN 2017-11-25 15:49:47.180 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3245) then 1 else 0 end as haveItems;
1198WARN 2017-11-25 15:49:47.180 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3247) then 1 else 0 end as haveItems;
1199WARN 2017-11-25 15:49:47.180 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3249) then 1 else 0 end as haveItems;
1200WARN 2017-11-25 15:49:47.180 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3251) then 1 else 0 end as haveItems;
1201WARN 2017-11-25 15:49:47.180 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3867) then 1 else 0 end as haveItems;
1202WARN 2017-11-25 15:49:47.180 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3869) then 1 else 0 end as haveItems;
1203WARN 2017-11-25 15:49:47.180 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3870) then 1 else 0 end as haveItems;
1204WARN 2017-11-25 15:49:47.180 {02} <createWorld> [0] DB::RS(3 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3871) then 1 else 0 end as haveItems;
1205WARN 2017-11-25 15:49:47.180 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3873) then 1 else 0 end as haveItems;
1206WARN 2017-11-25 15:49:47.180 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3874) then 1 else 0 end as haveItems;
1207WARN 2017-11-25 15:49:47.180 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3913) then 1 else 0 end as haveItems;
1208WARN 2017-11-25 15:49:47.180 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3914) then 1 else 0 end as haveItems;
1209WARN 2017-11-25 15:49:47.180 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3915) then 1 else 0 end as haveItems;
1210WARN 2017-11-25 15:49:47.195 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3917) then 1 else 0 end as haveItems;
1211WARN 2017-11-25 15:49:47.195 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3918) then 1 else 0 end as haveItems;
1212WARN 2017-11-25 15:49:47.195 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3919) then 1 else 0 end as haveItems;
1213WARN 2017-11-25 15:49:47.195 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=4423) then 1 else 0 end as haveItems;
1214WARN 2017-11-25 15:49:47.195 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=4424) then 1 else 0 end as haveItems;
1215WARN 2017-11-25 15:49:47.195 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=4425) then 1 else 0 end as haveItems;
1216WARN 2017-11-25 15:49:47.195 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=4427) then 1 else 0 end as haveItems;
1217WARN 2017-11-25 15:49:47.211 {02} <createWorld> [0] DB::RS(0 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 4703;
1218WARN 2017-11-25 15:49:47.226 {02} <createWorld> [0] DB::RS(0 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 7058;
1219WARN 2017-11-25 15:49:47.226 {02} <createWorld> [0] DB::RS(1 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 7059;
1220WARN 2017-11-25 15:49:47.258 {02} <createWorld> [0] DB::RS(0 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 9761;
1221WARN 2017-11-25 15:49:47.258 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=10299) then 1 else 0 end as haveItems;
1222WARN 2017-11-25 15:49:47.258 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=10300) then 1 else 0 end as haveItems;
1223WARN 2017-11-25 15:49:47.258 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=10301) then 1 else 0 end as haveItems;
1224WARN 2017-11-25 15:49:47.258 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=10302) then 1 else 0 end as haveItems;
1225WARN 2017-11-25 15:49:47.258 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=10303) then 1 else 0 end as haveItems;
1226WARN 2017-11-25 15:49:47.258 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=10388) then 1 else 0 end as haveItems;
1227WARN 2017-11-25 15:49:47.258 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=10390) then 1 else 0 end as haveItems;
1228WARN 2017-11-25 15:49:47.258 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=10391) then 1 else 0 end as haveItems;
1229WARN 2017-11-25 15:49:47.258 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=10392) then 1 else 0 end as haveItems;
1230WARN 2017-11-25 15:49:47.258 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=10393) then 1 else 0 end as haveItems;
1231WARN 2017-11-25 15:49:47.258 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=10394) then 1 else 0 end as haveItems;
1232WARN 2017-11-25 15:49:47.258 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=10395) then 1 else 0 end as haveItems;
1233WARN 2017-11-25 15:49:47.258 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=10396) then 1 else 0 end as haveItems;
1234WARN 2017-11-25 15:49:47.273 {02} <createWorld> [0] DB::RS(1 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 11071;
1235WARN 2017-11-25 15:49:47.305 {02} <createWorld> [0] DB::RS(0 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 11748;
1236WARN 2017-11-25 15:49:47.305 {02} <createWorld> [0] DB::RS(0 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 12061;
1237ECHO 2017-11-25 15:49:47.338 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1238ECHO 2017-11-25 15:49:47.338 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1239ECHO 2017-11-25 15:49:47.338 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1240WARN 2017-11-25 15:49:47.338 {02} <createWorld> [0] DB::RS(1 ms) SELECT m.ID, m.CarrierCharacterID, m.ObjectTypeID, c.GeoID, c.GeoAlt FROM movable_objects m JOIN `character` c ON c.ID=m.CarrierCharacterID AND c.GeoID>=115867648 AND c.GeoID<116129792;
1241ECHO 2017-11-25 15:49:47.338 {02} <createWorld> [0] _attachTerrain: 442, server
1242ECHO 2017-11-25 15:49:47.338 {02} <createWorld> [0] Create ter#443 from: data/terrains/t443.ter
1243ECHO 2017-11-25 15:49:47.383 {02} <createWorld> [0] Terrain [443] loaded from file in 45ms. Memory usage: 5.016 MB
1244INFO 2017-11-25 15:49:47.899 {02} <createWorld> [0] TerrainDeformer::_registerTerrain(443)!
1245WARN 2017-11-25 15:49:47.899 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1246WARN 2017-11-25 15:49:47.899 {02} <createWorld> [0] DB::RS(0 ms) SELECT `ForestVersion` FROM `terrain_blocks` WHERE `ID`=443
1247WARN 2017-11-25 15:49:47.945 {02} <createWorld> [0] DB::RS(42 ms) select GeoDataID, TreeType, TreePlantMethod, SubcellMask, AgeTime, Quality from forest where GeoDataID >= 116129792 and GeoDataID < 116391936 order by GeoDataID;
1248WARN 2017-11-25 15:49:47.945 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1249ECHO 2017-11-25 15:49:48.023 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#443
1250ECHO 2017-11-25 15:49:48.023 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#443
1251ECHO 2017-11-25 15:49:48.023 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#443
1252ECHO 2017-11-25 15:49:48.023 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#443
1253ECHO 2017-11-25 15:49:48.023 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#443
1254ECHO 2017-11-25 15:49:48.023 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#443
1255INFO 2017-11-25 15:49:48.023 {02} <createWorld> [0] CmPatcher::attachTerrain(443) -- creating new (full load: 1)!
1256INFO 2017-11-25 15:49:48.023 {02} <createWorld> [0] CmChangeStore::init(443) -- was not inited before!
1257WARN 2017-11-25 15:49:48.023 {02} <createWorld> [0] DB::RS(1 ms) SELECT TerCRC, GeoIdxCRC, GeoDatCRC, ObjectsCRC, ForestCRC FROM `terrain_blocks` WHERE `ID`=443
1258WARN 2017-11-25 15:49:48.023 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1259WARN 2017-11-25 15:49:48.023 {02} <createWorld> [0] DB::RS(1 ms) SELECT `GeoVersion` FROM `terrain_blocks` WHERE `ID`=443
1260WARN 2017-11-25 15:49:49.789 {02} <createWorld> [0] DB::RS(1763 ms) SELECT `Version`, `ChangeIndex`, `IsServerOnly`, `Action`, `GeoDataID`, `Altitude`, `Substance`, `LevelFlags`, `Quantity`, `Quality` FROM `geo_patch` WHERE `TerID` = 443 and `Version` > 0 ORDER BY `Version`, `ChangeIndex`;
1261WARN 2017-11-25 15:49:49.789 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1262WARN 2017-11-25 15:49:53.039 {02} <createWorld> [0] DB::noRS(1 ms) START TRANSACTION;
1263WARN 2017-11-25 15:49:53.039 {02} <createWorld> [0] DB::RS(0 ms) SELECT `ObjectsVersion` FROM `terrain_blocks` WHERE `ID`=443
1264WARN 2017-11-25 15:49:53.117 {02} <createWorld> [0] DB::RS(77 ms) SELECT `Version`, `Action`, `ObjectSuperType`, `ObjectID`, `ObjectTypeID`, `GeoDataID`, `TurnAngle`, `Altitude`, `OffsetX`, `OffsetY`, `OffsetZ`, `IsComplete` FROM `objects_patch` WHERE `TerID`=443 ORDER BY `Version`
1265WARN 2017-11-25 15:49:53.117 {02} <createWorld> [0] DB::noRS(1 ms) COMMIT;
1266WARN 2017-11-25 15:49:53.352 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1267WARN 2017-11-25 15:49:53.352 {02} <createWorld> [0] DB::RS(1 ms) SELECT `ForestVersion` FROM `terrain_blocks` WHERE `ID`=443
1268WARN 2017-11-25 15:49:53.445 {02} <createWorld> [0] DB::RS(91 ms) SELECT `Version`, `Action`, `GeoDataID`, `SubcellMask`, `TreeType`, `TreeHealth`, `TreePlantMethod`, `AddTime` FROM `forest_patch` WHERE `TerID`=443 ORDER BY `Version`
1269WARN 2017-11-25 15:49:53.445 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1270WARN 2017-11-25 15:49:53.461 {02} <createWorld> [0] DB::noRS(1 ms) START TRANSACTION;
1271WARN 2017-11-25 15:49:53.461 {02} <createWorld> [0] DB::RS(0 ms) SELECT `ObjectsVersion` FROM `terrain_blocks` WHERE `ID`=443
1272WARN 2017-11-25 15:49:53.477 {02} <createWorld> [0] DB::RS(8 ms) SELECT u.ID, u.ObjectTypeID, u.GeoDataID, u.TurnAngle, u.isComplete, u.CreatedDurability, u.Durability, IFNULL(u.OwnerID, 0) as OwnerID, IFNULL(GREATEST(TIMESTAMPDIFF(SECOND, u.DroppedTime, now()), 0), 0) as SecSinceDrop, c.Name, c.LastName FROM unmovable_objects u LEFT JOIN `character` c on c.ID = u.OwnerID WHERE GeoDataID>=116129792 AND GeoDataID<116391936 ORDER BY u.ID;
1273WARN 2017-11-25 15:49:53.492 {02} <createWorld> [0] DB::RS(11 ms) SELECT m.ID, m.ObjectTypeID, m.GeoDataID, m.TurnAngle, m.isComplete, m.OffsetMmX, m.OffsetMmY, m.OffsetMmZ, m.Altitude, m.CreatedDurability, m.Durability, IFNULL(m.OwnerID, 0) as OwnerID, IFNULL(GREATEST(TIMESTAMPDIFF(SECOND, m.DroppedTime, now()), 0), 0) as SecSinceDrop, c.Name, c.LastName FROM movable_objects m LEFT JOIN `character` c on c.ID=m.OwnerID WHERE CarrierCharacterID IS NULL AND CarrierHorseID IS NULL AND CarrierMovableID IS NULL AND GeoDataID>=116129792 AND GeoDataID<116391936 ORDER BY m.ID;
1274WARN 2017-11-25 15:49:53.492 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1275ECHO 2017-11-25 15:49:53.758 {02} <createWorld> [0] SLOPE: dir=North geoid=116304202 posn.z=1068.500000 pos.z=1068.500000 it=0,0
1276ECHO 2017-11-25 15:49:53.758 {02} <createWorld> [0] SLOPE: dir=North geoid=116304715 posn.z=1069.500000 pos.z=1068.500000 it=1,1
1277ECHO 2017-11-25 15:49:53.758 {02} <createWorld> [0] SLOPE: dir=North geoid=116304203 posn.z=1068.500000 pos.z=1068.500000 it=1,0
1278ECHO 2017-11-25 15:49:53.758 {02} <createWorld> [0] SLOPE: dir=North geoid=116304714 posn.z=1069.500000 pos.z=1068.500000 it=0,1
1279ERRR 2017-11-25 15:49:53.773 {02} <createWorld> [0] CheckTerrain() - Not flattened cell found
1280ECHO 2017-11-25 15:49:53.805 {02} <createWorld> [0] SLOPE: dir=West geoid=116293447 posn.z=1050.500000 pos.z=1050.500000 it=0,0
1281ECHO 2017-11-25 15:49:53.805 {02} <createWorld> [0] SLOPE: dir=West geoid=116293446 posn.z=1051.500000 pos.z=1051.500000 it=0,0
1282ECHO 2017-11-25 15:49:53.805 {02} <createWorld> [0] SLOPE: dir=West geoid=116293445 posn.z=1052.500000 pos.z=1052.500000 it=0,0
1283ECHO 2017-11-25 15:49:53.805 {02} <createWorld> [0] SLOPE: dir=West geoid=116293444 posn.z=1053.500000 pos.z=1053.500000 it=0,0
1284ECHO 2017-11-25 15:49:53.805 {02} <createWorld> [0] SLOPE: dir=West geoid=116293443 posn.z=1054.500000 pos.z=1054.500000 it=0,0
1285ECHO 2017-11-25 15:49:53.805 {02} <createWorld> [0] SLOPE: dir=West geoid=116293442 posn.z=1055.500000 pos.z=1055.500000 it=0,0
1286ECHO 2017-11-25 15:49:53.805 {02} <createWorld> [0] SLOPE: dir=West geoid=116293441 posn.z=1056.500000 pos.z=1056.500000 it=0,0
1287ECHO 2017-11-25 15:49:53.805 {02} <createWorld> [0] SLOPE: dir=West geoid=116293440 posn.z=1057.500000 pos.z=1057.500000 it=0,0
1288ECHO 2017-11-25 15:49:53.805 {02} <createWorld> [0] SLOPE: dir=West geoid=116293439 posn.z=1058.500000 pos.z=1058.500000 it=0,0
1289ECHO 2017-11-25 15:49:53.805 {02} <createWorld> [0] SLOPE: dir=West geoid=116293438 posn.z=1059.500000 pos.z=1059.500000 it=0,0
1290ECHO 2017-11-25 15:49:53.805 {02} <createWorld> [0] SLOPE: dir=West geoid=116293437 posn.z=1060.500000 pos.z=1060.500000 it=0,0
1291ECHO 2017-11-25 15:49:53.805 {02} <createWorld> [0] SLOPE: dir=West geoid=116293436 posn.z=1061.500000 pos.z=1061.500000 it=0,0
1292ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116294968 posn.z=1062.500000 pos.z=1062.500000 it=0,0
1293ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116295481 posn.z=1063.500000 pos.z=1062.500000 it=1,1
1294ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116294969 posn.z=1062.500000 pos.z=1062.500000 it=1,0
1295ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116295480 posn.z=1063.500000 pos.z=1062.500000 it=0,1
1296ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116302154 posn.z=1064.500000 pos.z=1064.500000 it=0,0
1297ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116302667 posn.z=1065.500000 pos.z=1064.500000 it=1,1
1298ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116302155 posn.z=1064.500000 pos.z=1064.500000 it=1,0
1299ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116302666 posn.z=1065.500000 pos.z=1064.500000 it=0,1
1300ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116303178 posn.z=1066.500000 pos.z=1066.500000 it=0,0
1301ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116303691 posn.z=1067.500000 pos.z=1066.500000 it=1,1
1302ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116303179 posn.z=1066.500000 pos.z=1066.500000 it=1,0
1303ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116303690 posn.z=1067.500000 pos.z=1066.500000 it=0,1
1304ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116304250 posn.z=1068.500000 pos.z=1068.500000 it=0,0
1305ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116304763 posn.z=1069.500000 pos.z=1068.500000 it=1,1
1306ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116304762 posn.z=1069.500000 pos.z=1068.500000 it=0,1
1307ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116304251 posn.z=1068.500000 pos.z=1068.500000 it=1,0
1308ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116303226 posn.z=1066.500000 pos.z=1066.500000 it=0,0
1309ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116303739 posn.z=1067.500000 pos.z=1066.500000 it=1,1
1310ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116303738 posn.z=1067.500000 pos.z=1066.500000 it=0,1
1311ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116303227 posn.z=1066.500000 pos.z=1066.500000 it=1,0
1312ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116302202 posn.z=1064.500000 pos.z=1064.500000 it=0,0
1313ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116302715 posn.z=1065.500000 pos.z=1064.500000 it=1,1
1314ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116302714 posn.z=1065.500000 pos.z=1064.500000 it=0,1
1315ECHO 2017-11-25 15:49:53.852 {02} <createWorld> [0] SLOPE: dir=North geoid=116302203 posn.z=1064.500000 pos.z=1064.500000 it=1,0
1316ERRR 2017-11-25 15:49:53.867 {02} <createWorld> [0] CheckTerrain() - Not flattened cell found
1317ECHO 2017-11-25 15:49:53.930 {02} <createWorld> [0] SLOPE: dir=West geoid=116301181 posn.z=1062.500000 pos.z=1062.500000 it=0,0
1318ECHO 2017-11-25 15:49:53.945 {02} <createWorld> [0] SLOPE: dir=West geoid=116301692 posn.z=1063.500000 pos.z=1062.500000 it=-1,1
1319ECHO 2017-11-25 15:49:53.945 {02} <createWorld> [0] SLOPE: dir=West geoid=116301180 posn.z=1063.500000 pos.z=1062.500000 it=-1,0
1320ECHO 2017-11-25 15:49:53.945 {02} <createWorld> [0] SLOPE: dir=West geoid=116301693 posn.z=1062.500000 pos.z=1062.500000 it=0,1
1321ERRR 2017-11-25 15:49:53.945 {02} <createWorld> [0] CheckTerrain() - Not flattened cell found
1322WARN 2017-11-25 15:49:53.945 {02} <createWorld> [0] DB::RS(0 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 11;
1323WARN 2017-11-25 15:49:53.945 {02} <createWorld> [0] DB::RS(0 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 12;
1324WARN 2017-11-25 15:49:53.945 {02} <createWorld> [0] DB::RS(0 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 85;
1325WARN 2017-11-25 15:49:53.945 {02} <createWorld> [0] DB::RS(1 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 420;
1326WARN 2017-11-25 15:49:53.961 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=1219) then 1 else 0 end as haveItems;
1327WARN 2017-11-25 15:49:53.961 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=1221) then 1 else 0 end as haveItems;
1328WARN 2017-11-25 15:49:53.961 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=1222) then 1 else 0 end as haveItems;
1329WARN 2017-11-25 15:49:53.961 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=1223) then 1 else 0 end as haveItems;
1330WARN 2017-11-25 15:49:53.961 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=1224) then 1 else 0 end as haveItems;
1331WARN 2017-11-25 15:49:53.961 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=1225) then 1 else 0 end as haveItems;
1332WARN 2017-11-25 15:49:53.961 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=1226) then 1 else 0 end as haveItems;
1333WARN 2017-11-25 15:49:53.961 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=1227) then 1 else 0 end as haveItems;
1334WARN 2017-11-25 15:49:53.961 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=1228) then 1 else 0 end as haveItems;
1335WARN 2017-11-25 15:49:53.961 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=1229) then 1 else 0 end as haveItems;
1336WARN 2017-11-25 15:49:53.961 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=1230) then 1 else 0 end as haveItems;
1337WARN 2017-11-25 15:49:53.976 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2990) then 1 else 0 end as haveItems;
1338WARN 2017-11-25 15:49:53.976 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=4303) then 1 else 0 end as haveItems;
1339WARN 2017-11-25 15:49:53.976 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=4304) then 1 else 0 end as haveItems;
1340WARN 2017-11-25 15:49:53.976 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=4483) then 1 else 0 end as haveItems;
1341WARN 2017-11-25 15:49:53.992 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=4484) then 1 else 0 end as haveItems;
1342WARN 2017-11-25 15:49:54.992 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5025) then 1 else 0 end as haveItems;
1343WARN 2017-11-25 15:49:54.992 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5026) then 1 else 0 end as haveItems;
1344WARN 2017-11-25 15:49:54.992 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5964) then 1 else 0 end as haveItems;
1345WARN 2017-11-25 15:49:54.992 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5965) then 1 else 0 end as haveItems;
1346WARN 2017-11-25 15:49:54.992 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5973) then 1 else 0 end as haveItems;
1347WARN 2017-11-25 15:49:54.008 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5974) then 1 else 0 end as haveItems;
1348WARN 2017-11-25 15:49:54.008 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5975) then 1 else 0 end as haveItems;
1349WARN 2017-11-25 15:49:54.008 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5976) then 1 else 0 end as haveItems;
1350WARN 2017-11-25 15:49:54.008 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5978) then 1 else 0 end as haveItems;
1351WARN 2017-11-25 15:49:54.008 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5984) then 1 else 0 end as haveItems;
1352WARN 2017-11-25 15:49:54.008 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5985) then 1 else 0 end as haveItems;
1353WARN 2017-11-25 15:49:54.008 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5989) then 1 else 0 end as haveItems;
1354WARN 2017-11-25 15:49:54.008 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5993) then 1 else 0 end as haveItems;
1355WARN 2017-11-25 15:49:54.008 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5995) then 1 else 0 end as haveItems;
1356WARN 2017-11-25 15:49:54.008 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5998) then 1 else 0 end as haveItems;
1357WARN 2017-11-25 15:49:54.008 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5999) then 1 else 0 end as haveItems;
1358WARN 2017-11-25 15:49:54.008 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=6000) then 1 else 0 end as haveItems;
1359WARN 2017-11-25 15:49:54.008 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=6002) then 1 else 0 end as haveItems;
1360WARN 2017-11-25 15:49:54.008 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=6004) then 1 else 0 end as haveItems;
1361WARN 2017-11-25 15:49:54.008 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=6005) then 1 else 0 end as haveItems;
1362WARN 2017-11-25 15:49:54.023 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=6038) then 1 else 0 end as haveItems;
1363WARN 2017-11-25 15:49:54.023 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=6039) then 1 else 0 end as haveItems;
1364WARN 2017-11-25 15:49:54.023 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=6058) then 1 else 0 end as haveItems;
1365WARN 2017-11-25 15:49:54.023 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=6576) then 1 else 0 end as haveItems;
1366WARN 2017-11-25 15:49:54.023 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=6577) then 1 else 0 end as haveItems;
1367WARN 2017-11-25 15:49:54.039 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=6578) then 1 else 0 end as haveItems;
1368WARN 2017-11-25 15:49:54.039 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=6579) then 1 else 0 end as haveItems;
1369WARN 2017-11-25 15:49:54.039 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=6580) then 1 else 0 end as haveItems;
1370WARN 2017-11-25 15:49:54.039 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=6581) then 1 else 0 end as haveItems;
1371WARN 2017-11-25 15:49:54.055 {02} <createWorld> [0] DB::RS(0 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 8551;
1372WARN 2017-11-25 15:49:54.055 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=8597) then 1 else 0 end as haveItems;
1373WARN 2017-11-25 15:49:54.055 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=8598) then 1 else 0 end as haveItems;
1374WARN 2017-11-25 15:49:54.055 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=8599) then 1 else 0 end as haveItems;
1375WARN 2017-11-25 15:49:54.055 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=8601) then 1 else 0 end as haveItems;
1376WARN 2017-11-25 15:49:54.055 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=8602) then 1 else 0 end as haveItems;
1377WARN 2017-11-25 15:49:54.055 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=8603) then 1 else 0 end as haveItems;
1378WARN 2017-11-25 15:49:54.055 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=8604) then 1 else 0 end as haveItems;
1379WARN 2017-11-25 15:49:54.055 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=8605) then 1 else 0 end as haveItems;
1380WARN 2017-11-25 15:49:54.070 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=11402) then 1 else 0 end as haveItems;
1381WARN 2017-11-25 15:49:54.086 {02} <createWorld> [0] DB::RS(0 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 11810;
1382WARN 2017-11-25 15:49:54.086 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=11854) then 1 else 0 end as haveItems;
1383WARN 2017-11-25 15:49:54.086 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=11868) then 1 else 0 end as haveItems;
1384WARN 2017-11-25 15:49:54.102 {02} <createWorld> [0] DB::RS(1 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 13473;
1385WARN 2017-11-25 15:49:54.102 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=13478) then 1 else 0 end as haveItems;
1386WARN 2017-11-25 15:49:54.102 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=13479) then 1 else 0 end as haveItems;
1387WARN 2017-11-25 15:49:54.102 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=13481) then 1 else 0 end as haveItems;
1388WARN 2017-11-25 15:49:54.102 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=13483) then 1 else 0 end as haveItems;
1389WARN 2017-11-25 15:49:54.102 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=13642) then 1 else 0 end as haveItems;
1390WARN 2017-11-25 15:49:54.102 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=14157) then 1 else 0 end as haveItems;
1391WARN 2017-11-25 15:49:54.117 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=14158) then 1 else 0 end as haveItems;
1392WARN 2017-11-25 15:49:54.117 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=14159) then 1 else 0 end as haveItems;
1393WARN 2017-11-25 15:49:54.117 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=14160) then 1 else 0 end as haveItems;
1394WARN 2017-11-25 15:49:54.117 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=14557) then 1 else 0 end as haveItems;
1395WARN 2017-11-25 15:49:54.117 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=14558) then 1 else 0 end as haveItems;
1396WARN 2017-11-25 15:49:54.117 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=14559) then 1 else 0 end as haveItems;
1397WARN 2017-11-25 15:49:54.133 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=15601) then 1 else 0 end as haveItems;
1398WARN 2017-11-25 15:49:54.133 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=15610) then 1 else 0 end as haveItems;
1399WARN 2017-11-25 15:49:54.133 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=15612) then 1 else 0 end as haveItems;
1400ECHO 2017-11-25 15:49:54.133 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1401ECHO 2017-11-25 15:49:54.133 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1402ECHO 2017-11-25 15:49:54.133 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1403ECHO 2017-11-25 15:49:54.133 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1404ECHO 2017-11-25 15:49:54.133 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1405ECHO 2017-11-25 15:49:54.133 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1406ECHO 2017-11-25 15:49:54.133 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1407ECHO 2017-11-25 15:49:54.133 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1408ECHO 2017-11-25 15:49:54.133 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1409ECHO 2017-11-25 15:49:54.133 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1410WARN 2017-11-25 15:49:54.148 {02} <createWorld> [0] DB::RS(1 ms) SELECT m.ID, m.CarrierCharacterID, m.ObjectTypeID, c.GeoID, c.GeoAlt FROM movable_objects m JOIN `character` c ON c.ID=m.CarrierCharacterID AND c.GeoID>=116129792 AND c.GeoID<116391936;
1411ECHO 2017-11-25 15:49:54.148 {02} <createWorld> [0] _attachTerrain: 443, server
1412ECHO 2017-11-25 15:49:54.148 {02} <createWorld> [0] Create ter#444 from: data/terrains/t444.ter
1413ECHO 2017-11-25 15:49:54.180 {02} <createWorld> [0] Terrain [444] loaded from file in 32ms. Memory usage: 5.016 MB
1414INFO 2017-11-25 15:49:54.726 {02} <createWorld> [0] TerrainDeformer::_registerTerrain(444)!
1415WARN 2017-11-25 15:49:54.726 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1416WARN 2017-11-25 15:49:54.726 {02} <createWorld> [0] DB::RS(1 ms) SELECT `ForestVersion` FROM `terrain_blocks` WHERE `ID`=444
1417WARN 2017-11-25 15:49:54.742 {02} <createWorld> [0] DB::RS(8 ms) select GeoDataID, TreeType, TreePlantMethod, SubcellMask, AgeTime, Quality from forest where GeoDataID >= 116391936 and GeoDataID < 116654080 order by GeoDataID;
1418WARN 2017-11-25 15:49:54.742 {02} <createWorld> [0] DB::noRS(1 ms) COMMIT;
1419ECHO 2017-11-25 15:49:54.773 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#444
1420ECHO 2017-11-25 15:49:54.773 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#444
1421ECHO 2017-11-25 15:49:54.773 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#444
1422ECHO 2017-11-25 15:49:54.773 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#444
1423ECHO 2017-11-25 15:49:54.773 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#444
1424ECHO 2017-11-25 15:49:54.773 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#444
1425INFO 2017-11-25 15:49:54.773 {02} <createWorld> [0] CmPatcher::attachTerrain(444) -- creating new (full load: 1)!
1426INFO 2017-11-25 15:49:54.773 {02} <createWorld> [0] CmChangeStore::init(444) -- was not inited before!
1427WARN 2017-11-25 15:49:54.773 {02} <createWorld> [0] DB::RS(0 ms) SELECT TerCRC, GeoIdxCRC, GeoDatCRC, ObjectsCRC, ForestCRC FROM `terrain_blocks` WHERE `ID`=444
1428WARN 2017-11-25 15:49:54.773 {02} <createWorld> [0] DB::noRS(1 ms) START TRANSACTION;
1429WARN 2017-11-25 15:49:54.773 {02} <createWorld> [0] DB::RS(0 ms) SELECT `GeoVersion` FROM `terrain_blocks` WHERE `ID`=444
1430WARN 2017-11-25 15:49:54.805 {02} <createWorld> [0] DB::RS(33 ms) SELECT `Version`, `ChangeIndex`, `IsServerOnly`, `Action`, `GeoDataID`, `Altitude`, `Substance`, `LevelFlags`, `Quantity`, `Quality` FROM `geo_patch` WHERE `TerID` = 444 and `Version` > 0 ORDER BY `Version`, `ChangeIndex`;
1431WARN 2017-11-25 15:49:54.820 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1432WARN 2017-11-25 15:49:54.867 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1433WARN 2017-11-25 15:49:54.867 {02} <createWorld> [0] DB::RS(0 ms) SELECT `ObjectsVersion` FROM `terrain_blocks` WHERE `ID`=444
1434WARN 2017-11-25 15:49:54.867 {02} <createWorld> [0] DB::RS(4 ms) SELECT `Version`, `Action`, `ObjectSuperType`, `ObjectID`, `ObjectTypeID`, `GeoDataID`, `TurnAngle`, `Altitude`, `OffsetX`, `OffsetY`, `OffsetZ`, `IsComplete` FROM `objects_patch` WHERE `TerID`=444 ORDER BY `Version`
1435WARN 2017-11-25 15:49:54.867 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1436WARN 2017-11-25 15:49:54.883 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1437WARN 2017-11-25 15:49:54.883 {02} <createWorld> [0] DB::RS(1 ms) SELECT `ForestVersion` FROM `terrain_blocks` WHERE `ID`=444
1438WARN 2017-11-25 15:49:54.883 {02} <createWorld> [0] DB::RS(14 ms) SELECT `Version`, `Action`, `GeoDataID`, `SubcellMask`, `TreeType`, `TreeHealth`, `TreePlantMethod`, `AddTime` FROM `forest_patch` WHERE `TerID`=444 ORDER BY `Version`
1439WARN 2017-11-25 15:49:54.883 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1440WARN 2017-11-25 15:49:54.898 {02} <createWorld> [0] DB::noRS(1 ms) START TRANSACTION;
1441WARN 2017-11-25 15:49:54.898 {02} <createWorld> [0] DB::RS(0 ms) SELECT `ObjectsVersion` FROM `terrain_blocks` WHERE `ID`=444
1442WARN 2017-11-25 15:49:54.898 {02} <createWorld> [0] DB::RS(1 ms) SELECT u.ID, u.ObjectTypeID, u.GeoDataID, u.TurnAngle, u.isComplete, u.CreatedDurability, u.Durability, IFNULL(u.OwnerID, 0) as OwnerID, IFNULL(GREATEST(TIMESTAMPDIFF(SECOND, u.DroppedTime, now()), 0), 0) as SecSinceDrop, c.Name, c.LastName FROM unmovable_objects u LEFT JOIN `character` c on c.ID = u.OwnerID WHERE GeoDataID>=116391936 AND GeoDataID<116654080 ORDER BY u.ID;
1443WARN 2017-11-25 15:49:54.914 {02} <createWorld> [0] DB::RS(23 ms) SELECT m.ID, m.ObjectTypeID, m.GeoDataID, m.TurnAngle, m.isComplete, m.OffsetMmX, m.OffsetMmY, m.OffsetMmZ, m.Altitude, m.CreatedDurability, m.Durability, IFNULL(m.OwnerID, 0) as OwnerID, IFNULL(GREATEST(TIMESTAMPDIFF(SECOND, m.DroppedTime, now()), 0), 0) as SecSinceDrop, c.Name, c.LastName FROM movable_objects m LEFT JOIN `character` c on c.ID=m.OwnerID WHERE CarrierCharacterID IS NULL AND CarrierHorseID IS NULL AND CarrierMovableID IS NULL AND GeoDataID>=116391936 AND GeoDataID<116654080 ORDER BY m.ID;
1444WARN 2017-11-25 15:49:54.914 {02} <createWorld> [0] DB::noRS(1 ms) COMMIT;
1445ERRR 2017-11-25 15:49:54.930 {02} <createWorld> [0] CheckTerrain() - Not flattened cell found
1446WARN 2017-11-25 15:49:54.930 {02} <createWorld> [0] DB::RS(1 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 860;
1447WARN 2017-11-25 15:49:54.930 {02} <createWorld> [0] DB::RS(1 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 10782;
1448ECHO 2017-11-25 15:49:54.930 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1449ECHO 2017-11-25 15:49:54.945 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1450ECHO 2017-11-25 15:49:54.945 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1451WARN 2017-11-25 15:49:54.945 {02} <createWorld> [0] DB::RS(1 ms) SELECT m.ID, m.CarrierCharacterID, m.ObjectTypeID, c.GeoID, c.GeoAlt FROM movable_objects m JOIN `character` c ON c.ID=m.CarrierCharacterID AND c.GeoID>=116391936 AND c.GeoID<116654080;
1452ECHO 2017-11-25 15:49:54.945 {02} <createWorld> [0] _attachTerrain: 444, server
1453ECHO 2017-11-25 15:49:54.945 {02} <createWorld> [0] Create ter#445 from: data/terrains/t445.ter
1454ECHO 2017-11-25 15:49:54.976 {02} <createWorld> [0] Terrain [445] loaded from file in 31ms. Memory usage: 5.016 MB
1455INFO 2017-11-25 15:49:55.539 {02} <createWorld> [0] TerrainDeformer::_registerTerrain(445)!
1456WARN 2017-11-25 15:49:55.539 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1457WARN 2017-11-25 15:49:55.539 {02} <createWorld> [0] DB::RS(0 ms) SELECT `ForestVersion` FROM `terrain_blocks` WHERE `ID`=445
1458WARN 2017-11-25 15:49:55.570 {02} <createWorld> [0] DB::RS(25 ms) select GeoDataID, TreeType, TreePlantMethod, SubcellMask, AgeTime, Quality from forest where GeoDataID >= 116654080 and GeoDataID < 116916224 order by GeoDataID;
1459WARN 2017-11-25 15:49:55.570 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1460ECHO 2017-11-25 15:49:55.680 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#445
1461ECHO 2017-11-25 15:49:55.680 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#445
1462ECHO 2017-11-25 15:49:55.680 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#445
1463ECHO 2017-11-25 15:49:55.680 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#445
1464ECHO 2017-11-25 15:49:55.680 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#445
1465ECHO 2017-11-25 15:49:55.680 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#445
1466INFO 2017-11-25 15:49:55.680 {02} <createWorld> [0] CmPatcher::attachTerrain(445) -- creating new (full load: 1)!
1467INFO 2017-11-25 15:49:55.680 {02} <createWorld> [0] CmChangeStore::init(445) -- was not inited before!
1468WARN 2017-11-25 15:49:55.680 {02} <createWorld> [0] DB::RS(0 ms) SELECT TerCRC, GeoIdxCRC, GeoDatCRC, ObjectsCRC, ForestCRC FROM `terrain_blocks` WHERE `ID`=445
1469WARN 2017-11-25 15:49:55.680 {02} <createWorld> [0] DB::noRS(1 ms) START TRANSACTION;
1470WARN 2017-11-25 15:49:55.680 {02} <createWorld> [0] DB::RS(0 ms) SELECT `GeoVersion` FROM `terrain_blocks` WHERE `ID`=445
1471WARN 2017-11-25 15:49:56.258 {02} <createWorld> [0] DB::RS(576 ms) SELECT `Version`, `ChangeIndex`, `IsServerOnly`, `Action`, `GeoDataID`, `Altitude`, `Substance`, `LevelFlags`, `Quantity`, `Quality` FROM `geo_patch` WHERE `TerID` = 445 and `Version` > 0 ORDER BY `Version`, `ChangeIndex`;
1472WARN 2017-11-25 15:49:56.258 {02} <createWorld> [0] DB::noRS(1 ms) COMMIT;
1473WARN 2017-11-25 15:49:57.492 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1474WARN 2017-11-25 15:49:57.492 {02} <createWorld> [0] DB::RS(1 ms) SELECT `ObjectsVersion` FROM `terrain_blocks` WHERE `ID`=445
1475WARN 2017-11-25 15:49:57.539 {02} <createWorld> [0] DB::RS(40 ms) SELECT `Version`, `Action`, `ObjectSuperType`, `ObjectID`, `ObjectTypeID`, `GeoDataID`, `TurnAngle`, `Altitude`, `OffsetX`, `OffsetY`, `OffsetZ`, `IsComplete` FROM `objects_patch` WHERE `TerID`=445 ORDER BY `Version`
1476WARN 2017-11-25 15:49:57.539 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1477WARN 2017-11-25 15:49:57.617 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1478WARN 2017-11-25 15:49:57.617 {02} <createWorld> [0] DB::RS(1 ms) SELECT `ForestVersion` FROM `terrain_blocks` WHERE `ID`=445
1479WARN 2017-11-25 15:49:57.664 {02} <createWorld> [0] DB::RS(42 ms) SELECT `Version`, `Action`, `GeoDataID`, `SubcellMask`, `TreeType`, `TreeHealth`, `TreePlantMethod`, `AddTime` FROM `forest_patch` WHERE `TerID`=445 ORDER BY `Version`
1480WARN 2017-11-25 15:49:57.664 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1481WARN 2017-11-25 15:49:57.680 {02} <createWorld> [0] DB::noRS(1 ms) START TRANSACTION;
1482WARN 2017-11-25 15:49:57.680 {02} <createWorld> [0] DB::RS(0 ms) SELECT `ObjectsVersion` FROM `terrain_blocks` WHERE `ID`=445
1483WARN 2017-11-25 15:49:57.680 {02} <createWorld> [0] DB::RS(4 ms) SELECT u.ID, u.ObjectTypeID, u.GeoDataID, u.TurnAngle, u.isComplete, u.CreatedDurability, u.Durability, IFNULL(u.OwnerID, 0) as OwnerID, IFNULL(GREATEST(TIMESTAMPDIFF(SECOND, u.DroppedTime, now()), 0), 0) as SecSinceDrop, c.Name, c.LastName FROM unmovable_objects u LEFT JOIN `character` c on c.ID = u.OwnerID WHERE GeoDataID>=116654080 AND GeoDataID<116916224 ORDER BY u.ID;
1484WARN 2017-11-25 15:49:57.695 {02} <createWorld> [0] DB::RS(11 ms) SELECT m.ID, m.ObjectTypeID, m.GeoDataID, m.TurnAngle, m.isComplete, m.OffsetMmX, m.OffsetMmY, m.OffsetMmZ, m.Altitude, m.CreatedDurability, m.Durability, IFNULL(m.OwnerID, 0) as OwnerID, IFNULL(GREATEST(TIMESTAMPDIFF(SECOND, m.DroppedTime, now()), 0), 0) as SecSinceDrop, c.Name, c.LastName FROM movable_objects m LEFT JOIN `character` c on c.ID=m.OwnerID WHERE CarrierCharacterID IS NULL AND CarrierHorseID IS NULL AND CarrierMovableID IS NULL AND GeoDataID>=116654080 AND GeoDataID<116916224 ORDER BY m.ID;
1485WARN 2017-11-25 15:49:57.695 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1486ERRR 2017-11-25 15:49:57.805 {02} <createWorld> [0] CheckTerrain() - Not flattened cell found
1487WARN 2017-11-25 15:49:57.867 {02} <createWorld> [0] DB::RS(1 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 1490;
1488WARN 2017-11-25 15:49:57.883 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5355) then 1 else 0 end as haveItems;
1489WARN 2017-11-25 15:49:57.883 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5356) then 1 else 0 end as haveItems;
1490WARN 2017-11-25 15:49:57.883 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5357) then 1 else 0 end as haveItems;
1491WARN 2017-11-25 15:49:57.898 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5361) then 1 else 0 end as haveItems;
1492WARN 2017-11-25 15:49:57.898 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5362) then 1 else 0 end as haveItems;
1493WARN 2017-11-25 15:49:57.898 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5363) then 1 else 0 end as haveItems;
1494WARN 2017-11-25 15:49:57.898 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5630) then 1 else 0 end as haveItems;
1495WARN 2017-11-25 15:49:57.898 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5632) then 1 else 0 end as haveItems;
1496WARN 2017-11-25 15:49:57.898 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=5633) then 1 else 0 end as haveItems;
1497ECHO 2017-11-25 15:49:57.898 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1498WARN 2017-11-25 15:49:57.914 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=8266) then 1 else 0 end as haveItems;
1499WARN 2017-11-25 15:49:57.914 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=8268) then 1 else 0 end as haveItems;
1500WARN 2017-11-25 15:49:57.914 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=8269) then 1 else 0 end as haveItems;
1501WARN 2017-11-25 15:49:57.945 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=15493) then 1 else 0 end as haveItems;
1502WARN 2017-11-25 15:49:57.945 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=15495) then 1 else 0 end as haveItems;
1503WARN 2017-11-25 15:49:57.945 {02} <createWorld> [0] DB::RS(1 ms) SELECT m.ID, m.CarrierCharacterID, m.ObjectTypeID, c.GeoID, c.GeoAlt FROM movable_objects m JOIN `character` c ON c.ID=m.CarrierCharacterID AND c.GeoID>=116654080 AND c.GeoID<116916224;
1504ECHO 2017-11-25 15:49:57.945 {02} <createWorld> [0] _attachTerrain: 445, server
1505ECHO 2017-11-25 15:49:57.945 {02} <createWorld> [0] Create ter#446 from: data/terrains/t446.ter
1506ECHO 2017-11-25 15:49:57.992 {02} <createWorld> [0] Terrain [446] loaded from file in 47ms. Memory usage: 5.016 MB
1507INFO 2017-11-25 15:49:58.523 {02} <createWorld> [0] TerrainDeformer::_registerTerrain(446)!
1508WARN 2017-11-25 15:49:58.523 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1509WARN 2017-11-25 15:49:58.523 {02} <createWorld> [0] DB::RS(1 ms) SELECT `ForestVersion` FROM `terrain_blocks` WHERE `ID`=446
1510WARN 2017-11-25 15:49:58.586 {02} <createWorld> [0] DB::RS(59 ms) select GeoDataID, TreeType, TreePlantMethod, SubcellMask, AgeTime, Quality from forest where GeoDataID >= 116916224 and GeoDataID < 117178368 order by GeoDataID;
1511WARN 2017-11-25 15:49:58.586 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1512ECHO 2017-11-25 15:49:58.836 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#446
1513ECHO 2017-11-25 15:49:58.836 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#446
1514ECHO 2017-11-25 15:49:58.836 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#446
1515ECHO 2017-11-25 15:49:58.836 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#446
1516ECHO 2017-11-25 15:49:58.836 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#446
1517ECHO 2017-11-25 15:49:58.836 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#446
1518INFO 2017-11-25 15:49:58.836 {02} <createWorld> [0] CmPatcher::attachTerrain(446) -- creating new (full load: 1)!
1519INFO 2017-11-25 15:49:58.836 {02} <createWorld> [0] CmChangeStore::init(446) -- was not inited before!
1520WARN 2017-11-25 15:49:58.836 {02} <createWorld> [0] DB::RS(1 ms) SELECT TerCRC, GeoIdxCRC, GeoDatCRC, ObjectsCRC, ForestCRC FROM `terrain_blocks` WHERE `ID`=446
1521WARN 2017-11-25 15:49:58.836 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1522WARN 2017-11-25 15:49:58.836 {02} <createWorld> [0] DB::RS(0 ms) SELECT `GeoVersion` FROM `terrain_blocks` WHERE `ID`=446
1523WARN 2017-11-25 15:50:00.070 {02} <createWorld> [0] DB::RS(1220 ms) SELECT `Version`, `ChangeIndex`, `IsServerOnly`, `Action`, `GeoDataID`, `Altitude`, `Substance`, `LevelFlags`, `Quantity`, `Quality` FROM `geo_patch` WHERE `TerID` = 446 and `Version` > 0 ORDER BY `Version`, `ChangeIndex`;
1524WARN 2017-11-25 15:50:00.070 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1525WARN 2017-11-25 15:50:02.664 {02} <createWorld> [0] DB::noRS(1 ms) START TRANSACTION;
1526WARN 2017-11-25 15:50:02.664 {02} <createWorld> [0] DB::RS(0 ms) SELECT `ObjectsVersion` FROM `terrain_blocks` WHERE `ID`=446
1527WARN 2017-11-25 15:50:02.758 {02} <createWorld> [0] DB::RS(85 ms) SELECT `Version`, `Action`, `ObjectSuperType`, `ObjectID`, `ObjectTypeID`, `GeoDataID`, `TurnAngle`, `Altitude`, `OffsetX`, `OffsetY`, `OffsetZ`, `IsComplete` FROM `objects_patch` WHERE `TerID`=446 ORDER BY `Version`
1528WARN 2017-11-25 15:50:02.758 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1529WARN 2017-11-25 15:50:03.070 {02} <createWorld> [0] DB::noRS(1 ms) START TRANSACTION;
1530WARN 2017-11-25 15:50:03.070 {02} <createWorld> [0] DB::RS(0 ms) SELECT `ForestVersion` FROM `terrain_blocks` WHERE `ID`=446
1531WARN 2017-11-25 15:50:03.180 {02} <createWorld> [0] DB::RS(115 ms) SELECT `Version`, `Action`, `GeoDataID`, `SubcellMask`, `TreeType`, `TreeHealth`, `TreePlantMethod`, `AddTime` FROM `forest_patch` WHERE `TerID`=446 ORDER BY `Version`
1532WARN 2017-11-25 15:50:03.180 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1533WARN 2017-11-25 15:50:03.211 {02} <createWorld> [0] DB::noRS(1 ms) START TRANSACTION;
1534WARN 2017-11-25 15:50:03.211 {02} <createWorld> [0] DB::RS(0 ms) SELECT `ObjectsVersion` FROM `terrain_blocks` WHERE `ID`=446
1535WARN 2017-11-25 15:50:03.211 {02} <createWorld> [0] DB::RS(4 ms) SELECT u.ID, u.ObjectTypeID, u.GeoDataID, u.TurnAngle, u.isComplete, u.CreatedDurability, u.Durability, IFNULL(u.OwnerID, 0) as OwnerID, IFNULL(GREATEST(TIMESTAMPDIFF(SECOND, u.DroppedTime, now()), 0), 0) as SecSinceDrop, c.Name, c.LastName FROM unmovable_objects u LEFT JOIN `character` c on c.ID = u.OwnerID WHERE GeoDataID>=116916224 AND GeoDataID<117178368 ORDER BY u.ID;
1536WARN 2017-11-25 15:50:03.226 {02} <createWorld> [0] DB::RS(14 ms) SELECT m.ID, m.ObjectTypeID, m.GeoDataID, m.TurnAngle, m.isComplete, m.OffsetMmX, m.OffsetMmY, m.OffsetMmZ, m.Altitude, m.CreatedDurability, m.Durability, IFNULL(m.OwnerID, 0) as OwnerID, IFNULL(GREATEST(TIMESTAMPDIFF(SECOND, m.DroppedTime, now()), 0), 0) as SecSinceDrop, c.Name, c.LastName FROM movable_objects m LEFT JOIN `character` c on c.ID=m.OwnerID WHERE CarrierCharacterID IS NULL AND CarrierHorseID IS NULL AND CarrierMovableID IS NULL AND GeoDataID>=116916224 AND GeoDataID<117178368 ORDER BY m.ID;
1537WARN 2017-11-25 15:50:03.226 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1538ERRR 2017-11-25 15:50:03.398 {02} <createWorld> [0] CheckTerrain() - Not flattened cell found
1539ERRR 2017-11-25 15:50:03.398 {02} <createWorld> [0] CheckTerrain() - Not flattened cell found
1540ERRR 2017-11-25 15:50:03.477 {02} <createWorld> [0] StaticShape::onAdd(10031 [art/Models/3D/Construction/Fortifications/CastleConstructions/Gate/GateBridge.dts]), missing or couldn't find a colNode
1541ERRR 2017-11-25 15:50:03.477 {02} <createWorld> [0] StaticShape::onAdd(10031 [art/Models/3D/Construction/Fortifications/CastleConstructions/Gate/GateBridge.dts]), missing or couldn't find a colNode
1542ERRR 2017-11-25 15:50:03.477 {02} <createWorld> [0] StaticShape::onAdd(10031 [art/Models/3D/Construction/Fortifications/CastleConstructions/Gate/GateBridge.dts]), missing or couldn't find a colNode
1543ERRR 2017-11-25 15:50:03.477 {02} <createWorld> [0] StaticShape::onAdd(10031 [art/Models/3D/Construction/Fortifications/CastleConstructions/Gate/GateBridge.dts]), missing or couldn't find a colNode
1544ERRR 2017-11-25 15:50:03.477 {02} <createWorld> [0] StaticShape::onAdd(10031 [art/Models/3D/Construction/Fortifications/CastleConstructions/Gate/GateBridge.dts]), missing or couldn't find a colNode
1545ERRR 2017-11-25 15:50:03.477 {02} <createWorld> [0] StaticShape::onAdd(10031 [art/Models/3D/Construction/Fortifications/CastleConstructions/Gate/GateBridge.dts]), missing or couldn't find a colNode
1546ERRR 2017-11-25 15:50:03.477 {02} <createWorld> [0] StaticShape::onAdd(10031 [art/Models/3D/Construction/Fortifications/CastleConstructions/Gate/GateBridge.dts]), missing or couldn't find a colNode
1547ERRR 2017-11-25 15:50:03.477 {02} <createWorld> [0] StaticShape::onAdd(10031 [art/Models/3D/Construction/Fortifications/CastleConstructions/Gate/GateBridge.dts]), missing or couldn't find a colNode
1548ERRR 2017-11-25 15:50:03.477 {02} <createWorld> [0] StaticShape::onAdd(10031 [art/Models/3D/Construction/Fortifications/CastleConstructions/Gate/GateBridge.dts]), missing or couldn't find a colNode
1549ERRR 2017-11-25 15:50:03.477 {02} <createWorld> [0] StaticShape::onAdd(10031 [art/Models/3D/Construction/Fortifications/CastleConstructions/Gate/GateBridge.dts]), missing or couldn't find a colNode
1550ERRR 2017-11-25 15:50:03.477 {02} <createWorld> [0] StaticShape::onAdd(10031 [art/Models/3D/Construction/Fortifications/CastleConstructions/Gate/GateBridge.dts]), missing or couldn't find a colNode
1551ERRR 2017-11-25 15:50:03.477 {02} <createWorld> [0] StaticShape::onAdd(10031 [art/Models/3D/Construction/Fortifications/CastleConstructions/Gate/GateBridge.dts]), missing or couldn't find a colNode
1552ERRR 2017-11-25 15:50:03.477 {02} <createWorld> [0] StaticShape::onAdd(10031 [art/Models/3D/Construction/Fortifications/CastleConstructions/Gate/GateBridge.dts]), missing or couldn't find a colNode
1553WARN 2017-11-25 15:50:03.758 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=94) then 1 else 0 end as haveItems;
1554WARN 2017-11-25 15:50:03.758 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=95) then 1 else 0 end as haveItems;
1555WARN 2017-11-25 15:50:03.758 {02} <createWorld> [0] DB::RS(1 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 341;
1556WARN 2017-11-25 15:50:03.773 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=1261) then 1 else 0 end as haveItems;
1557WARN 2017-11-25 15:50:03.773 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2022) then 1 else 0 end as haveItems;
1558WARN 2017-11-25 15:50:03.773 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2023) then 1 else 0 end as haveItems;
1559WARN 2017-11-25 15:50:03.773 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2024) then 1 else 0 end as haveItems;
1560WARN 2017-11-25 15:50:03.773 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2087) then 1 else 0 end as haveItems;
1561WARN 2017-11-25 15:50:03.789 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2256) then 1 else 0 end as haveItems;
1562WARN 2017-11-25 15:50:03.789 {02} <createWorld> [0] DB::RS(0 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 2260;
1563WARN 2017-11-25 15:50:03.789 {02} <createWorld> [0] DB::RS(1 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 2422;
1564WARN 2017-11-25 15:50:03.789 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2755) then 1 else 0 end as haveItems;
1565WARN 2017-11-25 15:50:03.789 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2926) then 1 else 0 end as haveItems;
1566WARN 2017-11-25 15:50:03.805 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2927) then 1 else 0 end as haveItems;
1567WARN 2017-11-25 15:50:03.805 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2929) then 1 else 0 end as haveItems;
1568WARN 2017-11-25 15:50:03.805 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2931) then 1 else 0 end as haveItems;
1569WARN 2017-11-25 15:50:03.805 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3034) then 1 else 0 end as haveItems;
1570WARN 2017-11-25 15:50:03.805 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3035) then 1 else 0 end as haveItems;
1571WARN 2017-11-25 15:50:03.805 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3036) then 1 else 0 end as haveItems;
1572WARN 2017-11-25 15:50:03.805 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3037) then 1 else 0 end as haveItems;
1573WARN 2017-11-25 15:50:03.805 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3038) then 1 else 0 end as haveItems;
1574WARN 2017-11-25 15:50:03.805 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3039) then 1 else 0 end as haveItems;
1575WARN 2017-11-25 15:50:03.805 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3040) then 1 else 0 end as haveItems;
1576WARN 2017-11-25 15:50:03.820 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3041) then 1 else 0 end as haveItems;
1577WARN 2017-11-25 15:50:03.820 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3070) then 1 else 0 end as haveItems;
1578WARN 2017-11-25 15:50:03.820 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3071) then 1 else 0 end as haveItems;
1579WARN 2017-11-25 15:50:03.820 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3072) then 1 else 0 end as haveItems;
1580WARN 2017-11-25 15:50:03.820 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3073) then 1 else 0 end as haveItems;
1581WARN 2017-11-25 15:50:03.820 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3074) then 1 else 0 end as haveItems;
1582WARN 2017-11-25 15:50:03.820 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3075) then 1 else 0 end as haveItems;
1583WARN 2017-11-25 15:50:03.820 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=3076) then 1 else 0 end as haveItems;
1584WARN 2017-11-25 15:50:03.851 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=4849) then 1 else 0 end as haveItems;
1585WARN 2017-11-25 15:50:03.851 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=4850) then 1 else 0 end as haveItems;
1586WARN 2017-11-25 15:50:03.867 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=4851) then 1 else 0 end as haveItems;
1587WARN 2017-11-25 15:50:03.867 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=4852) then 1 else 0 end as haveItems;
1588WARN 2017-11-25 15:50:03.867 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=4853) then 1 else 0 end as haveItems;
1589WARN 2017-11-25 15:50:03.867 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=4854) then 1 else 0 end as haveItems;
1590WARN 2017-11-25 15:50:03.867 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=4855) then 1 else 0 end as haveItems;
1591WARN 2017-11-25 15:50:03.867 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=4857) then 1 else 0 end as haveItems;
1592WARN 2017-11-25 15:50:03.867 {02} <createWorld> [0] DB::RS(0 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 5074;
1593WARN 2017-11-25 15:50:03.883 {02} <createWorld> [0] DB::RS(0 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 6265;
1594WARN 2017-11-25 15:50:03.914 {02} <createWorld> [0] DB::RS(1 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 7735;
1595WARN 2017-11-25 15:50:03.945 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=8170) then 1 else 0 end as haveItems;
1596WARN 2017-11-25 15:50:03.961 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=8532) then 1 else 0 end as haveItems;
1597WARN 2017-11-25 15:50:03.961 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=8535) then 1 else 0 end as haveItems;
1598WARN 2017-11-25 15:50:03.961 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=8537) then 1 else 0 end as haveItems;
1599WARN 2017-11-25 15:50:03.961 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=8538) then 1 else 0 end as haveItems;
1600WARN 2017-11-25 15:50:03.961 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=8578) then 1 else 0 end as haveItems;
1601WARN 2017-11-25 15:50:03.961 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=8579) then 1 else 0 end as haveItems;
1602WARN 2017-11-25 15:50:03.961 {02} <createWorld> [0] DB::RS(0 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 8638;
1603WARN 2017-11-25 15:50:03.961 {02} <createWorld> [0] DB::RS(1 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 8640;
1604WARN 2017-11-25 15:50:04.039 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=9082) then 1 else 0 end as haveItems;
1605WARN 2017-11-25 15:50:04.039 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=9083) then 1 else 0 end as haveItems;
1606WARN 2017-11-25 15:50:04.039 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=9084) then 1 else 0 end as haveItems;
1607WARN 2017-11-25 15:50:04.070 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=10547) then 1 else 0 end as haveItems;
1608WARN 2017-11-25 15:50:04.070 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=10550) then 1 else 0 end as haveItems;
1609WARN 2017-11-25 15:50:04.086 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=10944) then 1 else 0 end as haveItems;
1610WARN 2017-11-25 15:50:04.086 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=10945) then 1 else 0 end as haveItems;
1611ECHO 2017-11-25 15:50:04.086 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1612ECHO 2017-11-25 15:50:04.086 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1613ECHO 2017-11-25 15:50:04.086 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1614ECHO 2017-11-25 15:50:04.086 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1615ECHO 2017-11-25 15:50:04.086 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1616ECHO 2017-11-25 15:50:04.086 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1617ECHO 2017-11-25 15:50:04.086 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1618ECHO 2017-11-25 15:50:04.101 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1619ECHO 2017-11-25 15:50:04.101 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1620ECHO 2017-11-25 15:50:04.101 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1621ECHO 2017-11-25 15:50:04.101 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1622WARN 2017-11-25 15:50:04.117 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=11783) then 1 else 0 end as haveItems;
1623WARN 2017-11-25 15:50:04.117 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=11785) then 1 else 0 end as haveItems;
1624WARN 2017-11-25 15:50:04.117 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=11786) then 1 else 0 end as haveItems;
1625WARN 2017-11-25 15:50:04.117 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=11787) then 1 else 0 end as haveItems;
1626WARN 2017-11-25 15:50:04.117 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=11788) then 1 else 0 end as haveItems;
1627WARN 2017-11-25 15:50:04.117 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=11789) then 1 else 0 end as haveItems;
1628WARN 2017-11-25 15:50:04.117 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=11790) then 1 else 0 end as haveItems;
1629WARN 2017-11-25 15:50:04.117 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=11792) then 1 else 0 end as haveItems;
1630ECHO 2017-11-25 15:50:04.148 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1631WARN 2017-11-25 15:50:04.164 {02} <createWorld> [0] DB::RS(1 ms) select ID, ObjectTypeID from `movable_objects` where CarrierMovableID = 15289;
1632ECHO 2017-11-25 15:50:04.180 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1633ECHO 2017-11-25 15:50:04.180 {02} <createWorld> [0] CmCraftworkManager::startTrapTimer() - setup timer.
1634WARN 2017-11-25 15:50:04.180 {02} <createWorld> [0] DB::RS(0 ms) SELECT m.ID, m.CarrierCharacterID, m.ObjectTypeID, c.GeoID, c.GeoAlt FROM movable_objects m JOIN `character` c ON c.ID=m.CarrierCharacterID AND c.GeoID>=116916224 AND c.GeoID<117178368;
1635ECHO 2017-11-25 15:50:04.180 {02} <createWorld> [0] _attachTerrain: 446, server
1636ECHO 2017-11-25 15:50:04.180 {02} <createWorld> [0] Create ter#447 from: data/terrains/t447.ter
1637ECHO 2017-11-25 15:50:04.211 {02} <createWorld> [0] Terrain [447] loaded from file in 31ms. Memory usage: 5.016 MB
1638INFO 2017-11-25 15:50:04.820 {02} <createWorld> [0] TerrainDeformer::_registerTerrain(447)!
1639WARN 2017-11-25 15:50:04.820 {02} <createWorld> [0] DB::noRS(1 ms) START TRANSACTION;
1640WARN 2017-11-25 15:50:04.820 {02} <createWorld> [0] DB::RS(0 ms) SELECT `ForestVersion` FROM `terrain_blocks` WHERE `ID`=447
1641WARN 2017-11-25 15:50:04.836 {02} <createWorld> [0] DB::RS(17 ms) select GeoDataID, TreeType, TreePlantMethod, SubcellMask, AgeTime, Quality from forest where GeoDataID >= 117178368 and GeoDataID < 117440512 order by GeoDataID;
1642WARN 2017-11-25 15:50:04.836 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1643ECHO 2017-11-25 15:50:04.930 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#447
1644ECHO 2017-11-25 15:50:04.930 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#447
1645ECHO 2017-11-25 15:50:04.930 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#447
1646ECHO 2017-11-25 15:50:04.930 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#447
1647ECHO 2017-11-25 15:50:04.930 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#447
1648ECHO 2017-11-25 15:50:04.930 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#447
1649INFO 2017-11-25 15:50:04.930 {02} <createWorld> [0] CmPatcher::attachTerrain(447) -- creating new (full load: 1)!
1650INFO 2017-11-25 15:50:04.930 {02} <createWorld> [0] CmChangeStore::init(447) -- was not inited before!
1651WARN 2017-11-25 15:50:04.930 {02} <createWorld> [0] DB::RS(1 ms) SELECT TerCRC, GeoIdxCRC, GeoDatCRC, ObjectsCRC, ForestCRC FROM `terrain_blocks` WHERE `ID`=447
1652WARN 2017-11-25 15:50:04.930 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1653WARN 2017-11-25 15:50:04.930 {02} <createWorld> [0] DB::RS(1 ms) SELECT `GeoVersion` FROM `terrain_blocks` WHERE `ID`=447
1654WARN 2017-11-25 15:50:05.086 {02} <createWorld> [0] DB::RS(144 ms) SELECT `Version`, `ChangeIndex`, `IsServerOnly`, `Action`, `GeoDataID`, `Altitude`, `Substance`, `LevelFlags`, `Quantity`, `Quality` FROM `geo_patch` WHERE `TerID` = 447 and `Version` > 0 ORDER BY `Version`, `ChangeIndex`;
1655WARN 2017-11-25 15:50:05.086 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1656WARN 2017-11-25 15:50:05.398 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1657WARN 2017-11-25 15:50:05.398 {02} <createWorld> [0] DB::RS(1 ms) SELECT `ObjectsVersion` FROM `terrain_blocks` WHERE `ID`=447
1658WARN 2017-11-25 15:50:05.414 {02} <createWorld> [0] DB::RS(9 ms) SELECT `Version`, `Action`, `ObjectSuperType`, `ObjectID`, `ObjectTypeID`, `GeoDataID`, `TurnAngle`, `Altitude`, `OffsetX`, `OffsetY`, `OffsetZ`, `IsComplete` FROM `objects_patch` WHERE `TerID`=447 ORDER BY `Version`
1659WARN 2017-11-25 15:50:05.414 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1660WARN 2017-11-25 15:50:05.414 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1661WARN 2017-11-25 15:50:05.414 {02} <createWorld> [0] DB::RS(0 ms) SELECT `ForestVersion` FROM `terrain_blocks` WHERE `ID`=447
1662WARN 2017-11-25 15:50:05.445 {02} <createWorld> [0] DB::RS(24 ms) SELECT `Version`, `Action`, `GeoDataID`, `SubcellMask`, `TreeType`, `TreeHealth`, `TreePlantMethod`, `AddTime` FROM `forest_patch` WHERE `TerID`=447 ORDER BY `Version`
1663WARN 2017-11-25 15:50:05.445 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1664WARN 2017-11-25 15:50:05.445 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1665WARN 2017-11-25 15:50:05.445 {02} <createWorld> [0] DB::RS(1 ms) SELECT `ObjectsVersion` FROM `terrain_blocks` WHERE `ID`=447
1666WARN 2017-11-25 15:50:05.445 {02} <createWorld> [0] DB::RS(1 ms) SELECT u.ID, u.ObjectTypeID, u.GeoDataID, u.TurnAngle, u.isComplete, u.CreatedDurability, u.Durability, IFNULL(u.OwnerID, 0) as OwnerID, IFNULL(GREATEST(TIMESTAMPDIFF(SECOND, u.DroppedTime, now()), 0), 0) as SecSinceDrop, c.Name, c.LastName FROM unmovable_objects u LEFT JOIN `character` c on c.ID = u.OwnerID WHERE GeoDataID>=117178368 AND GeoDataID<117440512 ORDER BY u.ID;
1667WARN 2017-11-25 15:50:05.461 {02} <createWorld> [0] DB::RS(8 ms) SELECT m.ID, m.ObjectTypeID, m.GeoDataID, m.TurnAngle, m.isComplete, m.OffsetMmX, m.OffsetMmY, m.OffsetMmZ, m.Altitude, m.CreatedDurability, m.Durability, IFNULL(m.OwnerID, 0) as OwnerID, IFNULL(GREATEST(TIMESTAMPDIFF(SECOND, m.DroppedTime, now()), 0), 0) as SecSinceDrop, c.Name, c.LastName FROM movable_objects m LEFT JOIN `character` c on c.ID=m.OwnerID WHERE CarrierCharacterID IS NULL AND CarrierHorseID IS NULL AND CarrierMovableID IS NULL AND GeoDataID>=117178368 AND GeoDataID<117440512 ORDER BY m.ID;
1668WARN 2017-11-25 15:50:05.461 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1669WARN 2017-11-25 15:50:05.555 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2459) then 1 else 0 end as haveItems;
1670WARN 2017-11-25 15:50:05.555 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2843) then 1 else 0 end as haveItems;
1671WARN 2017-11-25 15:50:05.555 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2844) then 1 else 0 end as haveItems;
1672WARN 2017-11-25 15:50:05.555 {02} <createWorld> [0] DB::RS(1 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2845) then 1 else 0 end as haveItems;
1673WARN 2017-11-25 15:50:05.555 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2847) then 1 else 0 end as haveItems;
1674WARN 2017-11-25 15:50:05.555 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2981) then 1 else 0 end as haveItems;
1675WARN 2017-11-25 15:50:05.555 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2985) then 1 else 0 end as haveItems;
1676WARN 2017-11-25 15:50:05.570 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2986) then 1 else 0 end as haveItems;
1677WARN 2017-11-25 15:50:05.570 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2987) then 1 else 0 end as haveItems;
1678WARN 2017-11-25 15:50:05.570 {02} <createWorld> [0] DB::RS(0 ms) select case when exists(select * from items i join movable_objects mo on mo.RootContainerID=i.ContainerID where mo.ID=2988) then 1 else 0 end as haveItems;
1679WARN 2017-11-25 15:50:05.601 {02} <createWorld> [0] DB::RS(2 ms) SELECT m.ID, m.CarrierCharacterID, m.ObjectTypeID, c.GeoID, c.GeoAlt FROM movable_objects m JOIN `character` c ON c.ID=m.CarrierCharacterID AND c.GeoID>=117178368 AND c.GeoID<117440512;
1680ECHO 2017-11-25 15:50:05.601 {02} <createWorld> [0] _attachTerrain: 447, server
1681ECHO 2017-11-25 15:50:05.601 {02} <createWorld> [0] Create ter#448 from: data/terrains/t448.ter
1682ECHO 2017-11-25 15:50:05.633 {02} <createWorld> [0] Terrain [448] loaded from file in 32ms. Memory usage: 5.016 MB
1683INFO 2017-11-25 15:50:06.180 {02} <createWorld> [0] TerrainDeformer::_registerTerrain(448)!
1684WARN 2017-11-25 15:50:06.180 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1685WARN 2017-11-25 15:50:06.180 {02} <createWorld> [0] DB::RS(0 ms) SELECT `ForestVersion` FROM `terrain_blocks` WHERE `ID`=448
1686WARN 2017-11-25 15:50:06.195 {02} <createWorld> [0] DB::RS(14 ms) select GeoDataID, TreeType, TreePlantMethod, SubcellMask, AgeTime, Quality from forest where GeoDataID >= 117440512 and GeoDataID < 117702656 order by GeoDataID;
1687WARN 2017-11-25 15:50:06.195 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1688ECHO 2017-11-25 15:50:06.289 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#448
1689ECHO 2017-11-25 15:50:06.289 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#448
1690ECHO 2017-11-25 15:50:06.289 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#448
1691ECHO 2017-11-25 15:50:06.289 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#448
1692ECHO 2017-11-25 15:50:06.289 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#448
1693ECHO 2017-11-25 15:50:06.289 {02} <createWorld> [0] Lands::Manager::GeoCacheLayer::attachTer(): - attach ter#448
1694INFO 2017-11-25 15:50:06.289 {02} <createWorld> [0] CmPatcher::attachTerrain(448) -- creating new (full load: 1)!
1695INFO 2017-11-25 15:50:06.289 {02} <createWorld> [0] CmChangeStore::init(448) -- was not inited before!
1696WARN 2017-11-25 15:50:06.289 {02} <createWorld> [0] DB::RS(1 ms) SELECT TerCRC, GeoIdxCRC, GeoDatCRC, ObjectsCRC, ForestCRC FROM `terrain_blocks` WHERE `ID`=448
1697WARN 2017-11-25 15:50:06.289 {02} <createWorld> [0] DB::noRS(0 ms) START TRANSACTION;
1698WARN 2017-11-25 15:50:06.289 {02} <createWorld> [0] DB::RS(0 ms) SELECT `GeoVersion` FROM `terrain_blocks` WHERE `ID`=448
1699WARN 2017-11-25 15:50:06.602 {02} <createWorld> [0] DB::RS(302 ms) SELECT `Version`, `ChangeIndex`, `IsServerOnly`, `Action`, `GeoDataID`, `Altitude`, `Substance`, `LevelFlags`, `Quantity`, `Quality` FROM `geo_patch` WHERE `TerID` = 448 and `Version` > 0 ORDER BY `Version`, `ChangeIndex`;
1700WARN 2017-11-25 15:50:06.602 {02} <createWorld> [0] DB::noRS(0 ms) COMMIT;
1701ERRR 2017-11-25 15:50:07.273 {02} <createWorld> [0] [line #6497] CmChangeStore::setLastChangeID() - new version of geo is not matched to version of current changes for terid=448 (db=28796, curr=28795)
1702ERRR 2017-11-25 15:50:07.273 {02} <createWorld> [0] [line #5460] CmChangeStore::_loadDbChanges() - can't set last version
1703ERRR 2017-11-25 15:50:07.273 {02} <createWorld> [0] [line #4519] CmChangeStore::init() - can't read all patches from db(terid=448)
1704ERRR 2017-11-25 15:50:07.289 {02} <createWorld> [0] [line #343] CmPatcher::attachTerrain() - can't init CmChangeStore class. terID=448
1705INFO 2017-11-25 15:50:07.289 {02} <createWorld> [0] CmPatcher::detachTerrain(448) -- removing previous store!
1706ERRR 2017-11-25 15:50:07.289 {02} <createWorld> [0] [line #6237] TerrainDeformer::_attachTerrain() - can't register terrain#448 within patcher
1707ERRR 2017-11-25 15:50:07.289 {02} <createWorld> [0] Fatal: Can't init terrain list (mirror path=""). Terminating.
1708ERRR 2017-11-25 15:50:07.289 {03} <[shutdownRequest]quit> [0] Quit requested!!!
1709ERRR 2017-11-25 15:50:07.289 {03} <[shutdownRequest]quit> [0] Shutting down!!!
1710ECHO 2017-11-25 15:50:07.289 {05} <destroyWorld> [0] *** ENDING MISSION
1711ERRR 2017-11-25 15:50:07.289 {05} <destroyWorld> [0] endGame: No game running!
1712WARN 2017-11-25 15:50:09.023 {05} <onServerDestroyed> [0] BtWorld::~BtWorld()
1713ECHO 2017-11-25 15:50:09.023 {04} <destroyServer> [0] TerrainBlock deleted!, id = 448
1714ECHO 2017-11-25 15:50:09.023 {04} <destroyServer> [0] TerrainBlock deleted!, id = 447
1715ECHO 2017-11-25 15:50:09.039 {04} <destroyServer> [0] TerrainBlock deleted!, id = 446
1716ECHO 2017-11-25 15:50:09.039 {04} <destroyServer> [0] TerrainBlock deleted!, id = 445
1717ECHO 2017-11-25 15:50:09.039 {04} <destroyServer> [0] TerrainBlock deleted!, id = 444
1718ECHO 2017-11-25 15:50:09.039 {04} <destroyServer> [0] TerrainBlock deleted!, id = 443
1719ECHO 2017-11-25 15:50:09.039 {04} <destroyServer> [0] TerrainBlock deleted!, id = 442
1720ECHO 2017-11-25 15:50:09.055 {} <> [0] TerrainFile deleted!, id = 448
1721ECHO 2017-11-25 15:50:09.055 {} <> [0] TerrainFile deleted!, id = 447
1722ECHO 2017-11-25 15:50:09.055 {} <> [0] TerrainFile deleted!, id = 446
1723ECHO 2017-11-25 15:50:09.055 {} <> [0] TerrainFile deleted!, id = 445
1724ECHO 2017-11-25 15:50:09.055 {} <> [0] TerrainFile deleted!, id = 444
1725ECHO 2017-11-25 15:50:09.055 {} <> [0] TerrainFile deleted!, id = 443
1726ECHO 2017-11-25 15:50:09.055 {} <> [0] TerrainFile deleted!, id = 442
1727ERRR 2017-11-25 15:50:09.055 {01} <[shutdownRequest]quit> [0] Quit requested!!!
1728INFO 2017-11-25 15:50:09.055 {01} <[shutdownRequest]quit> [0] Final shutdown initiated!
1729quit() -- quit requested!
1730WARN 2017-11-25 15:50:09.055 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 2325;
1731WARN 2017-11-25 15:50:09.055 {} <> [0] DB::RS(2 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=2809;
1732WARN 2017-11-25 15:50:09.055 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=2809;
1733WARN 2017-11-25 15:50:09.055 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=2809;
1734ECHO 2017-11-25 15:50:09.055 {} <> [0] Loading craft item effects from file [data/item_effects.xml]
1735WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 5228;
1736WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=8659;
1737WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=8659;
1738WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=8659;
1739WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 4779;
1740WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=6748;
1741WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=6748;
1742WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=6748;
1743WARN 2017-11-25 15:50:09.070 {} <<Thread>> [0] DB::noRS(5 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (2325, 0.000000,52.000000,0.000000,0.000000, 0.210001,100.000000,2.600000,98.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=52.000000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.210001,FoodQuality=100.000000,DungQuantity=2.600000,DungQuality=98.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1744WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 2933;
1745WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=3614;
1746WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=3614;
1747WARN 2017-11-25 15:50:09.070 {} <<Thread>> [0] DB::noRS(2 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (5228, 0.000000,0.000000,0.000000,0.000000, 1.080030,93.993202,0.000000,0.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=0.000000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=1.080030,FoodQuality=93.993202,DungQuantity=0.000000,DungQuality=0.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1748WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=3614;
1749WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 1018;
1750WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=1403;
1751WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=1403;
1752WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=1403;
1753WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 418;
1754WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=890;
1755WARN 2017-11-25 15:50:09.070 {} <<Thread>> [0] DB::noRS(3 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (4779, 0.000000,0.000000,0.000000,0.000000, 0.000000,0.000000,0.000000,0.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=0.000000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.000000,FoodQuality=0.000000,DungQuantity=0.000000,DungQuality=0.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1756ECHO 2017-11-25 15:50:09.070 {} <<Thread>> [0] The TCP server is up and running at port 28000 [T:NONE:0x0934]
1757WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=890;
1758WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=890;
1759WARN 2017-11-25 15:50:09.070 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (2933, 0.000000,3.460000,1.000000,94.000000, 0.700106,99.000000,17.299999,92.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=3.460000,HarvestAmount=1.000000,HarvestQuality=94.000000, FoodLeft=0.700106,FoodQuality=99.000000,DungQuantity=17.299999,DungQuality=92.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1760WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 2034;
1761WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=2854;
1762WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=2854;
1763WARN 2017-11-25 15:50:09.070 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Quantity`=39, `ContainerID`=1403, `Quality`=75 WHERE `ID`=224378; [T:DBIPrimary:0x0F7C]
1764WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=2854;
1765WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 3793;
1766WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=6683;
1767WARN 2017-11-25 15:50:09.070 {} <<Thread>> [0] DB::noRS(2 ms) UPDATE `items` SET `Durability`=99 WHERE `ID`=109414; [T:DBIPrimary:0x0F7C]
1768WARN 2017-11-25 15:50:09.070 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=6683;
1769WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=6683;
1770WARN 2017-11-25 15:50:09.086 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1771WARN 2017-11-25 15:50:09.086 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1772WARN 2017-11-25 15:50:09.086 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1773WARN 2017-11-25 15:50:09.086 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1774WARN 2017-11-25 15:50:09.086 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1775WARN 2017-11-25 15:50:09.086 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1776WARN 2017-11-25 15:50:09.086 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Durability`=365 WHERE `ID`=226597; [T:DBIPrimary:0x0F7C]
1777WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 5389;
1778WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=7848;
1779WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=7848;
1780WARN 2017-11-25 15:50:09.086 {} <<Thread>> [0] DB::noRS(2 ms) UPDATE `items` SET `Durability`=126 WHERE `ID`=165288; [T:DBIPrimary:0x0F7C]
1781WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=7848;
1782WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 6083;
1783WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=10493;
1784WARN 2017-11-25 15:50:09.086 {} <<Thread>> [0] DB::noRS(2 ms) UPDATE `items` SET `Quality`=67 WHERE `ID`=165288; [T:DBIPrimary:0x0F7C]
1785WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=10493;
1786WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=10493;
1787WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 6305;
1788WARN 2017-11-25 15:50:09.086 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (1018, 2.400000,36.000000,2.000000,66.000000, 0.200000,75.000000,14.400000,67.333336, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=2.400000,DungMeter=36.000000,HarvestAmount=2.000000,HarvestQuality=66.000000, FoodLeft=0.200000,FoodQuality=75.000000,DungQuantity=14.400000,DungQuality=67.333336, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1789WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=9274;
1790WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=9274;
1791WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=9274;
1792WARN 2017-11-25 15:50:09.086 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Quantity`=44, `ContainerID`=890, `Quality`=71 WHERE `ID`=224394; [T:DBIPrimary:0x0F7C]
1793WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 6692;
1794WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=10693;
1795WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=10693;
1796WARN 2017-11-25 15:50:09.086 {} <<Thread>> [0] DB::noRS(2 ms) UPDATE `items` SET `Durability`=258 WHERE `ID`=194253; [T:DBIPrimary:0x0F7C]
1797WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=10693;
1798WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 7232;
1799WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=10851;
1800WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=10851;
1801WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=10851;
1802WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 2035;
1803WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=2853;
1804WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=2853;
1805WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=2853;
1806WARN 2017-11-25 15:50:09.086 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1807WARN 2017-11-25 15:50:09.086 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1808WARN 2017-11-25 15:50:09.086 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1809WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 7234;
1810WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=10850;
1811WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=10850;
1812WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=10850;
1813WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 6387;
1814WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=10345;
1815WARN 2017-11-25 15:50:09.086 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=10345;
1816WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=10345;
1817WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 7832;
1818WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=15152;
1819WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=15152;
1820WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=15152;
1821WARN 2017-11-25 15:50:09.102 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1822WARN 2017-11-25 15:50:09.102 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1823WARN 2017-11-25 15:50:09.102 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1824WARN 2017-11-25 15:50:09.102 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1825WARN 2017-11-25 15:50:09.102 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1826WARN 2017-11-25 15:50:09.102 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1827WARN 2017-11-25 15:50:09.102 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1828WARN 2017-11-25 15:50:09.102 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1829WARN 2017-11-25 15:50:09.102 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1830WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 6731;
1831WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=10040;
1832WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=10040;
1833WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=10040;
1834WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 9858;
1835WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=15853;
1836WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=15853;
1837WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=15853;
1838WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 4070;
1839WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=5725;
1840WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=5725;
1841WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=5725;
1842WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 3515;
1843WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=4707;
1844WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=4707;
1845WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=4707;
1846WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 2939;
1847WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=3630;
1848WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=3630;
1849WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=3630;
1850WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 966;
1851WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=1367;
1852WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=1367;
1853WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=1367;
1854WARN 2017-11-25 15:50:09.102 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1855WARN 2017-11-25 15:50:09.102 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1856WARN 2017-11-25 15:50:09.102 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1857WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 6122;
1858WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=10235;
1859WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=10235;
1860WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=10235;
1861WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 6121;
1862WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=8931;
1863WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=8931;
1864WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=8931;
1865WARN 2017-11-25 15:50:09.102 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 5512;
1866WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=8813;
1867WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=8813;
1868WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=8813;
1869WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 6899;
1870WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=11370;
1871WARN 2017-11-25 15:50:09.117 {} <<Thread>> [0] DB::noRS(24 ms) UPDATE `items` SET `Durability`=265 WHERE `ID`=195337; [T:DBIPrimary:0x0F7C]
1872WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=11370;
1873WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=11370;
1874WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 2072;
1875WARN 2017-11-25 15:50:09.117 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Durability`=413 WHERE `ID`=227357; [T:DBIPrimary:0x0F7C]
1876WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=2585;
1877WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=2585;
1878WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=2585;
1879WARN 2017-11-25 15:50:09.117 {} <<Thread>> [0] DB::noRS(2 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (418, 2.100000,33.250000,0.000000,0.000000, 0.400030,71.000877,13.299999,77.947372, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=2.100000,DungMeter=33.250000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.400030,FoodQuality=71.000877,DungQuantity=13.299999,DungQuality=77.947372, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1880WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 7237;
1881WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=10925;
1882WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=10925;
1883WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=10925;
1884WARN 2017-11-25 15:50:09.117 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1885WARN 2017-11-25 15:50:09.117 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (2034, 0.000000,0.000000,0.000000,0.000000, 0.090004,84.000000,0.000000,0.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=0.000000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.090004,FoodQuality=84.000000,DungQuantity=0.000000,DungQuality=0.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1886WARN 2017-11-25 15:50:09.117 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1887WARN 2017-11-25 15:50:09.117 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1888WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 419;
1889WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=891;
1890WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=891;
1891WARN 2017-11-25 15:50:09.117 {} <<Thread>> [0] DB::noRS(2 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (3793, 0.000000,14.000000,0.000000,0.000000, 1.200000,86.000000,5.600000,67.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=14.000000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=1.200000,FoodQuality=86.000000,DungQuantity=5.600000,DungQuality=67.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1892WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=891;
1893WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 8211;
1894WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=13933;
1895WARN 2017-11-25 15:50:09.117 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (7242, 0.000000,8.000000,3.600000,88.777802, 0.300000,86.000000,1.200000,81.500000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=8.000000,HarvestAmount=3.600000,HarvestQuality=88.777802, FoodLeft=0.300000,FoodQuality=86.000000,DungQuantity=1.200000,DungQuality=81.500000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1896WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=13933;
1897WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=13933;
1898WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 9875;
1899WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=15336;
1900WARN 2017-11-25 15:50:09.117 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (5030, 0.000000,0.000000,0.000000,0.000000, 0.100001,100.000000,0.000000,0.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=0.000000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.100001,FoodQuality=100.000000,DungQuantity=0.000000,DungQuality=0.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1901WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=15336;
1902WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=15336;
1903WARN 2017-11-25 15:50:09.117 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (5389, 0.000000,0.000000,0.000000,0.000000, 0.100002,95.000000,0.000000,0.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=0.000000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.100002,FoodQuality=95.000000,DungQuantity=0.000000,DungQuality=0.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1904WARN 2017-11-25 15:50:09.117 {} <> [0] DB::noRS(0 ms) START TRANSACTION;
1905WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(1 ms) SELECT f_insertNewItemInventory(15336,1052,59,1,59,59, '', 0, NULL, NULL, NULL);
1906WARN 2017-11-25 15:50:09.117 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (6083, 0.000000,0.000000,0.000000,0.000000, 0.000000,0.000000,0.000000,0.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=0.000000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.000000,FoodQuality=0.000000,DungQuantity=0.000000,DungQuality=0.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1907WARN 2017-11-25 15:50:09.117 {} <> [0] DB::noRS(2 ms) COMMIT;
1908WARN 2017-11-25 15:50:09.117 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1909WARN 2017-11-25 15:50:09.117 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1910WARN 2017-11-25 15:50:09.117 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1911WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 6566;
1912WARN 2017-11-25 15:50:09.117 {} <<Thread>> [0] DB::noRS(2 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (6305, 0.000000,0.000000,0.000000,0.000000, 0.000000,0.000000,0.000000,0.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=0.000000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.000000,FoodQuality=0.000000,DungQuantity=0.000000,DungQuality=0.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1913WARN 2017-11-25 15:50:09.117 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=9964;
1914WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=9964;
1915WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=9964;
1916WARN 2017-11-25 15:50:09.133 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (6692, 0.000000,0.000000,0.000000,0.000000, 0.000000,0.000000,0.000000,0.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=0.000000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.000000,FoodQuality=0.000000,DungQuantity=0.000000,DungQuality=0.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1917WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 3502;
1918WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=4362;
1919WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=4362;
1920WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=4362;
1921WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 420;
1922WARN 2017-11-25 15:50:09.133 {} <<Thread>> [0] DB::noRS(3 ms) CALL f_deleteItem( 222406); [T:DBIPrimary:0x0F7C]
1923WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=893;
1924WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=893;
1925WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=893;
1926WARN 2017-11-25 15:50:09.133 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Quantity`=18, `ContainerID`=10851, `Quality`=92 WHERE `ID`=222411; [T:DBIPrimary:0x0F7C]
1927WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 2005;
1928WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=2866;
1929WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=2866;
1930WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=2866;
1931WARN 2017-11-25 15:50:09.133 {} <<Thread>> [0] DB::noRS(2 ms) UPDATE `items` SET `Durability`=377 WHERE `ID`=206346; [T:DBIPrimary:0x0F7C]
1932WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 3183;
1933WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=3983;
1934WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=3983;
1935WARN 2017-11-25 15:50:09.133 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Durability`=362 WHERE `ID`=204926; [T:DBIPrimary:0x0F7C]
1936WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=3983;
1937WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 4069;
1938WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=5716;
1939WARN 2017-11-25 15:50:09.133 {} <<Thread>> [0] DB::noRS(2 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (7232, 1.400000,28.000000,0.000000,0.000000, 0.149996,92.677399,11.200000,90.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=1.400000,DungMeter=28.000000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.149996,FoodQuality=92.677399,DungQuantity=11.200000,DungQuality=90.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1940WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=5716;
1941WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=5716;
1942WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 3187;
1943WARN 2017-11-25 15:50:09.133 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (2035, 0.000000,4.800000,0.000000,0.000000, 0.080000,93.000000,0.240000,96.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=4.800000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.080000,FoodQuality=93.000000,DungQuantity=0.240000,DungQuality=96.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1944WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=3984;
1945WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=3984;
1946WARN 2017-11-25 15:50:09.133 {} <<Thread>> [0] DB::noRS(2 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (8452, 0.000000,0.000000,0.000000,0.000000, 0.200001,84.000000,0.000000,0.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=0.000000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.200001,FoodQuality=84.000000,DungQuantity=0.000000,DungQuality=0.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1947WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=3984;
1948WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 4583;
1949WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=7984;
1950WARN 2017-11-25 15:50:09.133 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Quantity`=9, `ContainerID`=10850, `Quality`=99 WHERE `ID`=199229; [T:DBIPrimary:0x0F7C]
1951WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=7984;
1952WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=7984;
1953WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 6012;
1954WARN 2017-11-25 15:50:09.133 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Durability`=254 WHERE `ID`=180325; [T:DBIPrimary:0x0F7C]
1955WARN 2017-11-25 15:50:09.133 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=8715;
1956WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=8715;
1957WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=8715;
1958WARN 2017-11-25 15:50:09.148 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Durability`=403 WHERE `ID`=206109; [T:DBIPrimary:0x0F7C]
1959WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 4072;
1960WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=5730;
1961WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=5730;
1962WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=5730;
1963WARN 2017-11-25 15:50:09.148 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1964WARN 2017-11-25 15:50:09.148 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1965WARN 2017-11-25 15:50:09.148 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1966WARN 2017-11-25 15:50:09.148 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (7234, 1.400000,28.000000,0.000000,0.000000, 0.799999,99.000008,11.200000,89.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=1.400000,DungMeter=28.000000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.799999,FoodQuality=99.000008,DungQuantity=11.200000,DungQuality=89.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1967WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 196;
1968WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=711;
1969WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=711;
1970WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=711;
1971WARN 2017-11-25 15:50:09.148 {} <<Thread>> [0] DB::noRS(2 ms) UPDATE `items` SET `Quantity`=6, `ContainerID`=10345, `Quality`=99 WHERE `ID`=199272; [T:DBIPrimary:0x0F7C]
1972WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 3499;
1973WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=5646;
1974WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=5646;
1975WARN 2017-11-25 15:50:09.148 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Durability`=92 WHERE `ID`=222392; [T:DBIPrimary:0x0F7C]
1976WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=5646;
1977WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 965;
1978WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=1327;
1979WARN 2017-11-25 15:50:09.148 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Durability`=167 WHERE `ID`=223647; [T:DBIPrimary:0x0F7C]
1980WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=1327;
1981WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=1327;
1982WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 2267;
1983WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=2787;
1984WARN 2017-11-25 15:50:09.148 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (6387, 0.500000,26.666668,0.000000,0.000000, 1.320000,98.999786,4.000000,52.874973, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.500000,DungMeter=26.666668,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=1.320000,FoodQuality=98.999786,DungQuantity=4.000000,DungQuality=52.874973, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1985WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=2787;
1986WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=2787;
1987WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 1810;
1988WARN 2017-11-25 15:50:09.148 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (7832, 0.000000,0.000000,0.000000,0.000000, 0.000000,0.000000,0.000000,0.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=0.000000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.000000,FoodQuality=0.000000,DungQuantity=0.000000,DungQuality=0.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1989WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=2029;
1990WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=2029;
1991WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=2029;
1992WARN 2017-11-25 15:50:09.148 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1993WARN 2017-11-25 15:50:09.148 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1994WARN 2017-11-25 15:50:09.148 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
1995WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 3516;
1996WARN 2017-11-25 15:50:09.148 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (9752, 2.100000,21.000000,0.000000,0.000000, 1.100000,61.000000,8.400000,23.500000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=2.100000,DungMeter=21.000000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=1.100000,FoodQuality=61.000000,DungQuantity=8.400000,DungQuality=23.500000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
1997WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=4394;
1998WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=4394;
1999WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=4394;
2000WARN 2017-11-25 15:50:09.148 {} <<Thread>> [0] DB::noRS(2 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (660, 0.000000,96.000000,5.350000,48.317699, 0.000000,19.933500,4.800000,50.333302, 0,6) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=96.000000,HarvestAmount=5.350000,HarvestQuality=48.317699, FoodLeft=0.000000,FoodQuality=19.933500,DungQuantity=4.800000,DungQuality=50.333302, Starving=0,Dirty=6; [T:DBIPrimary:0x0F7C]
2001WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 2071;
2002WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=2319;
2003WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=2319;
2004WARN 2017-11-25 15:50:09.148 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (2652, 0.320000,30.000000,0.000000,0.000000, 0.000001,100.000000,1.500000,93.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.320000,DungMeter=30.000000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.000001,FoodQuality=100.000000,DungQuantity=1.500000,DungQuality=93.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
2005WARN 2017-11-25 15:50:09.148 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=2319;
2006WARN 2017-11-25 15:50:09.148 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2007WARN 2017-11-25 15:50:09.148 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2008WARN 2017-11-25 15:50:09.148 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2009WARN 2017-11-25 15:50:09.148 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2010WARN 2017-11-25 15:50:09.148 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2011WARN 2017-11-25 15:50:09.148 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2012WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 4068;
2013WARN 2017-11-25 15:50:09.164 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (6731, 0.000000,31.600002,0.000000,0.000000, 0.170000,79.000000,1.580000,63.443096, 0,7) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=31.600002,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.170000,FoodQuality=79.000000,DungQuantity=1.580000,DungQuality=63.443096, Starving=0,Dirty=7; [T:DBIPrimary:0x0F7C]
2014WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=5710;
2015WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=5710;
2016WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=5710;
2017WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 2830;
2018WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=3402;
2019WARN 2017-11-25 15:50:09.164 {} <<Thread>> [0] DB::noRS(2 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (9858, 0.000000,0.000000,0.000000,0.000000, 0.000000,0.000000,0.000000,0.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=0.000000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.000000,FoodQuality=0.000000,DungQuantity=0.000000,DungQuality=0.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
2020WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=3402;
2021WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=3402;
2022WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 2846;
2023WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=3421;
2024WARN 2017-11-25 15:50:09.164 {} <<Thread>> [0] DB::noRS(2 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (4070, 0.000000,0.000000,0.000000,0.000000, 0.240001,100.000000,0.000000,0.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=0.000000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.240001,FoodQuality=100.000000,DungQuantity=0.000000,DungQuality=0.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
2025WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=3421;
2026WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=3421;
2027WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 3497;
2028WARN 2017-11-25 15:50:09.164 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (3515, 0.000000,3.200000,6.000000,82.683296, 0.090000,86.000000,0.160000,62.500000, 0,3) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=3.200000,HarvestAmount=6.000000,HarvestQuality=82.683296, FoodLeft=0.090000,FoodQuality=86.000000,DungQuantity=0.160000,DungQuality=62.500000, Starving=0,Dirty=3; [T:DBIPrimary:0x0F7C]
2029WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=5102;
2030WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=5102;
2031WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=5102;
2032WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 3498;
2033WARN 2017-11-25 15:50:09.164 {} <<Thread>> [0] DB::noRS(2 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (2939, 0.000000,97.599998,6.000000,77.466599, 0.000000,91.000298,4.880000,81.307404, 0,10) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=97.599998,HarvestAmount=6.000000,HarvestQuality=77.466599, FoodLeft=0.000000,FoodQuality=91.000298,DungQuantity=4.880000,DungQuality=81.307404, Starving=0,Dirty=10; [T:DBIPrimary:0x0F7C]
2034WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=5645;
2035WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=5645;
2036WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=5645;
2037WARN 2017-11-25 15:50:09.164 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Quantity`=251, `ContainerID`=1367, `Quality`=84 WHERE `ID`=150164; [T:DBIPrimary:0x0F7C]
2038WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 10426;
2039WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=16125;
2040WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=16125;
2041WARN 2017-11-25 15:50:09.164 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Durability`=388 WHERE `ID`=206545; [T:DBIPrimary:0x0F7C]
2042WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=16125;
2043WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 4067;
2044WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=5704;
2045WARN 2017-11-25 15:50:09.164 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Durability`=379 WHERE `ID`=205488; [T:DBIPrimary:0x0F7C]
2046WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=5704;
2047WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=5704;
2048WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 4071;
2049WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=5726;
2050WARN 2017-11-25 15:50:09.164 {} <<Thread>> [0] DB::noRS(2 ms) UPDATE `items` SET `Durability`=380 WHERE `ID`=205809; [T:DBIPrimary:0x0F7C]
2051WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=5726;
2052WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=5726;
2053WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 4186;
2054WARN 2017-11-25 15:50:09.164 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (966, 2.100000,6.300000,1.500000,88.000000, 0.599950,84.000221,31.500000,91.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=2.100000,DungMeter=6.300000,HarvestAmount=1.500000,HarvestQuality=88.000000, FoodLeft=0.599950,FoodQuality=84.000221,DungQuantity=31.500000,DungQuality=91.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
2055WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=5326;
2056WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=5326;
2057WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=5326;
2058WARN 2017-11-25 15:50:09.164 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (4495, 14.200000,8.240000,1.000000,43.000000, 0.400057,89.000000,41.200001,78.344704, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=14.200000,DungMeter=8.240000,HarvestAmount=1.000000,HarvestQuality=43.000000, FoodLeft=0.400057,FoodQuality=89.000000,DungQuantity=41.200001,DungQuality=78.344704, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
2059WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 4187;
2060WARN 2017-11-25 15:50:09.164 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=5325;
2061WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=5325;
2062WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=5325;
2063WARN 2017-11-25 15:50:09.180 {} <<Thread>> [0] DB::noRS(2 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (6122, 0.000000,133.333344,5.200000,93.153900, 0.000000,100.000000,20.000000,92.860001, 0,67) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=133.333344,HarvestAmount=5.200000,HarvestQuality=93.153900, FoodLeft=0.000000,FoodQuality=100.000000,DungQuantity=20.000000,DungQuality=92.860001, Starving=0,Dirty=67; [T:DBIPrimary:0x0F7C]
2064WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 4221;
2065WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=5858;
2066WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=5858;
2067WARN 2017-11-25 15:50:09.180 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (6121, 0.000000,128.333328,0.000000,0.000000, 0.000000,100.000000,19.250000,93.792198, 0,71) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=128.333328,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.000000,FoodQuality=100.000000,DungQuantity=19.250000,DungQuality=93.792198, Starving=0,Dirty=71; [T:DBIPrimary:0x0F7C]
2068WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=5858;
2069WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 4461;
2070WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=5796;
2071WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=5796;
2072WARN 2017-11-25 15:50:09.180 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Durability`=44 WHERE `ID`=212592; [T:DBIPrimary:0x0F7C]
2073WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=5796;
2074WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 4462;
2075WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=5817;
2076WARN 2017-11-25 15:50:09.180 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Quality`=65 WHERE `ID`=212592; [T:DBIPrimary:0x0F7C]
2077WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=5817;
2078WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=5817;
2079WARN 2017-11-25 15:50:09.180 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2080WARN 2017-11-25 15:50:09.180 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2081WARN 2017-11-25 15:50:09.180 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2082WARN 2017-11-25 15:50:09.180 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2083WARN 2017-11-25 15:50:09.180 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2084WARN 2017-11-25 15:50:09.180 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2085WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 4757;
2086WARN 2017-11-25 15:50:09.180 {} <<Thread>> [0] DB::noRS(2 ms) UPDATE `items` SET `Durability`=38 WHERE `ID`=211351; [T:DBIPrimary:0x0F7C]
2087WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=7198;
2088WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=7198;
2089WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=7198;
2090WARN 2017-11-25 15:50:09.180 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Quality`=59 WHERE `ID`=211351; [T:DBIPrimary:0x0F7C]
2091WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 5510;
2092WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=8855;
2093WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=8855;
2094WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=8855;
2095WARN 2017-11-25 15:50:09.180 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (5512, 0.040000,9.600000,0.000000,0.000000, 0.020000,99.000000,0.480000,65.666679, 9,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.040000,DungMeter=9.600000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.020000,FoodQuality=99.000000,DungQuantity=0.480000,DungQuality=65.666679, Starving=9,Dirty=0; [T:DBIPrimary:0x0F7C]
2096WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 5511;
2097WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=8846;
2098WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=8846;
2099WARN 2017-11-25 15:50:09.180 {} <<Thread>> [0] DB::noRS(2 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (6899, 0.000000,29.179998,0.000000,0.000000, 0.149981,85.055702,145.899994,86.811501, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=29.179998,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.149981,FoodQuality=85.055702,DungQuantity=145.899994,DungQuality=86.811501, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
2100WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=8846;
2101WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 6732;
2102WARN 2017-11-25 15:50:09.180 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (2072, 0.000000,0.000000,1.350000,84.666702, 0.000000,86.000000,0.000000,0.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=0.000000,HarvestAmount=1.350000,HarvestQuality=84.666702, FoodLeft=0.000000,FoodQuality=86.000000,DungQuantity=0.000000,DungQuality=0.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
2103WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=10059;
2104WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=10059;
2105WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=10059;
2106WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 6953;
2107WARN 2017-11-25 15:50:09.180 {} <<Thread>> [0] DB::noRS(2 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (7237, 0.000000,0.000000,23.000000,64.456497, 0.000000,95.000000,0.000000,0.000000, 0,2) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=0.000000,HarvestAmount=23.000000,HarvestQuality=64.456497, FoodLeft=0.000000,FoodQuality=95.000000,DungQuantity=0.000000,DungQuality=0.000000, Starving=0,Dirty=2; [T:DBIPrimary:0x0F7C]
2108WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=10417;
2109WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=10417;
2110WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=10417;
2111WARN 2017-11-25 15:50:09.180 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2112WARN 2017-11-25 15:50:09.180 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2113WARN 2017-11-25 15:50:09.180 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2114WARN 2017-11-25 15:50:09.180 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2115WARN 2017-11-25 15:50:09.180 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2116WARN 2017-11-25 15:50:09.180 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2117WARN 2017-11-25 15:50:09.180 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2118WARN 2017-11-25 15:50:09.180 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2119WARN 2017-11-25 15:50:09.180 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2120WARN 2017-11-25 15:50:09.180 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2121WARN 2017-11-25 15:50:09.180 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2122WARN 2017-11-25 15:50:09.180 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2123WARN 2017-11-25 15:50:09.180 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (2695, 0.060000,7.600000,0.000000,0.000000, 0.220000,100.000000,0.380000,88.105301, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.060000,DungMeter=7.600000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.220000,FoodQuality=100.000000,DungQuantity=0.380000,DungQuality=88.105301, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
2124WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 7670;
2125WARN 2017-11-25 15:50:09.180 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=11824;
2126WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=11824;
2127WARN 2017-11-25 15:50:09.195 {} <<Thread>> [0] DB::noRS(2 ms) UPDATE `items` SET `Durability`=12 WHERE `ID`=203004; [T:DBIPrimary:0x0F7C]
2128WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=11824;
2129WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2130WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2131WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2132WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2133WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2134WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2135WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2136WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2137WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2138WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2139WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2140WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2141WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2142WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2143WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2144WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 8171;
2145WARN 2017-11-25 15:50:09.195 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Durability`=13 WHERE `ID`=203139; [T:DBIPrimary:0x0F7C]
2146WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=14645;
2147WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=14645;
2148WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=14645;
2149WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2150WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2151WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2152WARN 2017-11-25 15:50:09.195 {} <<Thread>> [0] DB::noRS(1 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (419, 0.040000,7.200000,0.000000,0.000000, 1.140000,75.000000,0.360000,95.777779, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.040000,DungMeter=7.200000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=1.140000,FoodQuality=75.000000,DungQuantity=0.360000,DungQuality=95.777779, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
2153WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 8715;
2154WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=14121;
2155WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=14121;
2156WARN 2017-11-25 15:50:09.195 {} <<Thread>> [0] DB::noRS(2 ms) INSERT INTO `stables_data` (UnmovableObjectID,FoodConsumeRatio,DungMeter,HarvestAmount,HarvestQuality,FoodLeft,FoodQuality,DungQuantity,DungQuality,Starving,Dirty) VALUES (8211, 0.000000,0.000000,0.000000,0.000000, 0.000000,0.000000,0.000000,0.000000, 0,0) ON DUPLICATE KEY UPDATE FoodConsumeRatio=0.000000,DungMeter=0.000000,HarvestAmount=0.000000,HarvestQuality=0.000000, FoodLeft=0.000000,FoodQuality=0.000000,DungQuantity=0.000000,DungQuality=0.000000, Starving=0,Dirty=0; [T:DBIPrimary:0x0F7C]
2157WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=14121;
2158WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 9113;
2159WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=14417;
2160WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=14417;
2161WARN 2017-11-25 15:50:09.195 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Quantity`=16, `ContainerID`=15336, `Quality`=74 WHERE `ID`=213148; [T:DBIPrimary:0x0F7C]
2162WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=14417;
2163WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2164WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2165WARN 2017-11-25 15:50:09.195 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2166WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 9551;
2167WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=14711;
2168WARN 2017-11-25 15:50:09.195 {} <<Thread>> [0] DB::noRS(2 ms) INSERT INTO `stables_logs` (UnmovableObjectID,MsgID,Param1,Param2,Param3) VALUES (9875,69,'1052','59',NULL); [T:DBIPrimary:0x0F7C]
2169WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=14711;
2170WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=14711;
2171WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 10001;
2172WARN 2017-11-25 15:50:09.195 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Durability`=10 WHERE `ID`=219738; [T:DBIPrimary:0x0F7C]
2173WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=15711;
2174WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(1 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=15711;
2175WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=15711;
2176WARN 2017-11-25 15:50:09.195 {} <<Thread>> [0] DB::noRS(2 ms) UPDATE `items` SET `Durability`=50 WHERE `ID`=223296; [T:DBIPrimary:0x0F7C]
2177WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 425;
2178WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=889;
2179WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=889;
2180WARN 2017-11-25 15:50:09.195 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Durability`=67 WHERE `ID`=226797; [T:DBIPrimary:0x0F7C]
2181WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=889;
2182WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 2689;
2183WARN 2017-11-25 15:50:09.195 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Durability`=54 WHERE `ID`=221830; [T:DBIPrimary:0x0F7C]
2184WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=3139;
2185WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=3139;
2186WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=3139;
2187WARN 2017-11-25 15:50:09.195 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Durability`=45 WHERE `ID`=219659; [T:DBIPrimary:0x0F7C]
2188WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 2690;
2189WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=3137;
2190WARN 2017-11-25 15:50:09.195 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=3137;
2191WARN 2017-11-25 15:50:09.211 {} <<Thread>> [0] DB::noRS(2 ms) UPDATE `items` SET `Durability`=32 WHERE `ID`=218180; [T:DBIPrimary:0x0F7C]
2192WARN 2017-11-25 15:50:09.211 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=3137;
2193WARN 2017-11-25 15:50:09.211 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 2691;
2194WARN 2017-11-25 15:50:09.211 {} <> [0] DB::RS(1 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=3138;
2195WARN 2017-11-25 15:50:09.211 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=3138;
2196WARN 2017-11-25 15:50:09.211 {} <<Thread>> [0] DB::noRS(2 ms) UPDATE `items` SET `Durability`=27 WHERE `ID`=218024; [T:DBIPrimary:0x0F7C]
2197WARN 2017-11-25 15:50:09.211 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=3138;
2198WARN 2017-11-25 15:50:09.211 {} <> [0] DB::RS(0 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 3313;
2199WARN 2017-11-25 15:50:09.211 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=7398;
2200WARN 2017-11-25 15:50:09.211 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Durability`=17 WHERE `ID`=223327; [T:DBIPrimary:0x0F7C]
2201WARN 2017-11-25 15:50:09.211 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=7398;
2202WARN 2017-11-25 15:50:09.211 {} <> [0] DB::RS(0 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=7398;
2203WARN 2017-11-25 15:50:09.211 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2204WARN 2017-11-25 15:50:09.211 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2205WARN 2017-11-25 15:50:09.211 {} <> [0] CmPlayerManager::getObjectInventory() - inventory creation disabled
2206WARN 2017-11-25 15:50:09.211 {} <> [0] DB::RS(1 ms) SELECT `RootContainerID` FROM `unmovable_objects` WHERE `ID` = 8249;
2207WARN 2017-11-25 15:50:09.211 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Durability`=36 WHERE `ID`=218452; [T:DBIPrimary:0x0F7C]
2208WARN 2017-11-25 15:50:09.211 {} <> [0] DB::RS(0 ms) select c.ID, c.ParentID, c.ObjectTypeID, c.Quality, ifnull(ct.Custom_text, '') from containers c left join features f on f.ID = c.FeatureID left join custom_texts ct on ct.ID = f.CustomtextID where c.ID=12885;
2209WARN 2017-11-25 15:50:09.211 {} <> [0] DB::RS(0 ms) SELECT ID, ParentID, ObjectTypeID, Quality FROM `containers` WHERE ParentID=12885;
2210WARN 2017-11-25 15:50:09.211 {} <> [0] DB::RS(1 ms) SELECT ID, ObjectTypeID, Quality, Quantity, Durability, CreatedDurability, FeatureID FROM `items` WHERE ContainerID=12885;
2211WARN 2017-11-25 15:50:09.211 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Quality`=61 WHERE `ID`=218452; [T:DBIPrimary:0x0F7C]
2212WARN 2017-11-25 15:50:09.211 {} <<Thread>> [0] DB::noRS(1 ms) UPDATE `items` SET `Durability`=49 WHERE `ID`=223649; [T:DBIPrimary:0x0F7C]
2213ECHO 2017-11-25 15:50:09.211 {} <> [0] Thread pool initialized, threads: 3
2214WARN 2017-11-25 15:50:09.211 {} <> [1] Warning - Tick [1] took 35117 (>64) ms!
2215WARN 2017-11-25 15:50:09.211 {} <<Thread>> [1] DB::noRS(1 ms) UPDATE `items` SET `Durability`=9 WHERE `ID`=219728; [T:DBIPrimary:0x0F7C]
2216WARN 2017-11-25 15:50:09.211 {} <<Thread>> [1] DB::noRS(1 ms) UPDATE `items` SET `Durability`=58 WHERE `ID`=227366; [T:DBIPrimary:0x0F7C]
2217ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2218ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2219ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2220ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2221ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2222ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2223ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2224ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2225ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2226ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2227ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2228ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2229ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2230ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2231ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2232ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2233ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2234ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2235ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2236ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2237ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2238ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2239ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2240ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2241ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2242ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2243ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2244ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2245ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2246ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2247ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2248ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2249ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2250ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2251ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2252ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2253ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2254ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2255ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2256ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2257ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2258ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2259ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2260ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2261ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2262ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2263ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2264ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2265ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2266ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2267ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2268ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2269ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2270ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2271ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2272ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2273ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2274ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2275ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2276ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2277ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2278ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2279ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2280ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2281ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2282ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2283ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2284ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2285ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2286ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2287ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2288ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2289ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2290ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2291ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2292ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2293ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2294ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2295ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2296ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2297ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2298ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2299ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2300ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2301ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2302ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2303ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2304ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2305ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2306ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2307ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2308ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2309ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2310ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2311ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2312ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2313ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2314ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2315ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2316ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2317ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2318ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2319ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2320ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2321ERRR 2017-11-25 15:50:09.211 {} <<Thread>> [1] [line #642] CmDb::execute() - should be calling only from current DBI thread [T:DBIPrimary:0x0F7C]
2322INFO 2017-11-25 15:50:09.211 {01} <onExit> [1] The server has been shut down!
2323ECHO 2017-11-25 15:50:09.211 {} <<Thread>> [1] Thread worker terminated [T:WorkerThread2:0x0ED0]
2324ECHO 2017-11-25 15:50:09.211 {} <<Thread>> [1] Thread worker terminated [T:WorkerThread0:0x0C7C]
2325ECHO 2017-11-25 15:50:09.211 {} <<Thread>> [1] Thread worker terminated [T:WorkerThread1:0x0620]
2326ECHO 2017-11-25 15:50:09.211 {} <> [1] Thread pool shut down
2327INFO 2017-11-25 15:50:09.976 {} <> [1] CmPatcher::detachTerrain(442) -- removing previous store!
2328INFO 2017-11-25 15:50:10.023 {} <> [1] CmPatcher::detachTerrain(443) -- removing previous store!
2329INFO 2017-11-25 15:50:10.055 {} <> [1] CmPatcher::detachTerrain(444) -- removing previous store!
2330INFO 2017-11-25 15:50:10.055 {} <> [1] CmPatcher::detachTerrain(445) -- removing previous store!
2331INFO 2017-11-25 15:50:10.070 {} <> [1] CmPatcher::detachTerrain(446) -- removing previous store!
2332INFO 2017-11-25 15:50:10.102 {} <> [1] CmPatcher::detachTerrain(447) -- removing previous store!