Jump to content
  • 0

Plot Pole "0 parts in range"


swagger

Question

We recently launched a new server with the updated patch and when anyone builds it says "0 parts in range".  If we put damage on a wall and then check the plot pole we see "you can maintain with 1 10oz of gold" but after a restart it goes back to "0 parts in range".  Its been a week now since we started building and we still can't maintain.  

 

  • Can anyone tell me if there are different server settings we need to change to make sure you can maintain from a stock server install?  If so what are those settings.
  • Is what I posted above normal?

 

Thanks in advance for any help.  

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

I added this - 

 

DROP EVENT IF EXISTS `setDamageOnAge`;
DELIMITER ;;
CREATE EVENT `setDamageOnAge` ON SCHEDULE EVERY 1 DAY COMMENT 'This sets damage on a wall so that it can be maintained' DO UPDATE `Object_DATA` SET `Damage`=0.1 WHERE `ObjectUID`  0 AND `CharacterID`  0 AND `Datestamp` ;;
DELIMITER ;
 
Does this mean in 7 days from today it will start to do 0.1 damage to all objects?
Link to comment
Share on other sites

  • 0

what is your hiveext.ini file saying (if you have acces to that?) you can set the decay time there.

Maybe its set to a negative number or to a number which is way higher? if a negative number is the case then items wont take decay damage, if its set to a high amount the damage may come later. 

 

its this line you are looking for (21 days is on my server decay time)

CleanupPlacedAfterDays = 21

Link to comment
Share on other sites

  • 0

I am having the same issue. No ability to maintain anything, I only am getting "0 building parts in range" and no ability to upgrade and then after cleanup all items disappear. I attempted to set it up to take damage after 7 days, and disappear on 14 days. I am puzzled why this is happening. Any ideas?

 

Event Scheduler is ON

http://gyazo.com/177fc81e1cd8555fc79eba4a2178cda3

 

Scheduled MySQL Event:

UPDATE `object_data` SET `Damage`=0.11 WHERE `ObjectUID` <> 0 AND `CharacterID` <> 0 AND `Datestamp` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 7 DAY) AND ( (`Inventory` IS NULL) OR (`Inventory` = '[]') )

 

HiveExt.ini:

;Negative values will disable this feature
;0 means that ALL empty placed items will be deleted every server restart
;A positive number is how old (in days) a placed empty item must be, in order for it to be deleted
CleanupPlacedAfterDays = 14

 

init.sqf:

DZE_requireplot = 1;  //disable or enable the plot pole requirement.

I have also added the following, not sure if it is working but maintaining wasn't working before the add either.

DZE_PlotPole = [70,100]; // X radius and Y exclusion zone.
EpochEvents = [

 

Edit

I realized the event was set to update table "object_data" instead of "Object_DATA" so I edited that. Now I have to wait another week to see if it is working correctly -_-

 

Let me know if anyone notices any other errors or any other things I should double check in the meantime.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Advertisement
  • Discord

×
×
  • Create New...