Hello
Could somebody please explain me all the setups you would recommend about maintain?
In HiveExt.ini i set
[Objects]
CleanupPlacedAfterDays = 21
But what does this mean exactly?
| ;This variable was implemented to compensate for door/plot management storing information in the inventory field | |
| ;custom buildables which use the inventory field should be added to this variable | |
| ;If you wish to cleaup locked storage objects, instead of letting them zero out, you can add them to the variable | |
| ;Do not use double quotation marks, only use single quotation marks ['] | |
| ;MaintenanceObjects = 'Land_DZE_GarageWoodDoorLocked','Land_DZE_LargeWoodDoorLocked','Land_DZE_WoodDoorLocked','CinderWallDoorLocked_DZ','CinderWallDoorSmallLocked_DZ','Plastic_Pole_EP1_DZ' | |
in my SQL i found this rule:
UPDATE `Object_DATA` SET `Damage`=0.1 WHERE `ObjectUID` <> 0 AND `CharacterID` <> 0 AND `Datestamp` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 3 DAY) AND ( (`Inventory` IS NULL) OR (`Inventory` = '[]') OR (`Classname` IN ('Land_DZE_GarageWoodDoorLocked','Land_DZE_LargeWoodDoorLocked','Land_DZE_WoodDoorLocked','CinderWallDoorLocked_DZ','CinderWallDoorSmallLocked_DZ','Plastic_Pole_EP1_DZ')) )
So do players only need to maintain the objects in the maintance objects?
Im confused.

