Jump to content

Mannie

Member
  • Posts

    6
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Mannie reacted to salival in [SOLVED] - 1.0.6.1 Starting money for new players.   
    If you want to give NEW players coins on their first login, see the install instructions for ZSC: https://github.com/oiad/ZSC#giving-new-players-coins-on-their-first-login
  2. Like
    Mannie reacted to icomrade in 1.0.6 Maintenance not removing Doors and Plotpoles   
    Updated the HiveExt.dll, updated the server package, re-download to get the new .DLL http://epochmod.com/a2dayzepoch.php
    The server PBO has not changed. See https://github.com/EpochModTeam/DayZ-Epoch/commit/fc9b01e91cf4d8b6a62843df9758ca9f93af4283 for more info regarding the new maintenance variable in HiveExt.ini
  3. Like
    Mannie reacted to Jim90 in 1.0.6 Maintenance not removing Doors and Plotpoles   
    Will be nice when this is added to the dll, but until then this new event seems to be working for 1.0.6. Just change the 14 to whatever number of days your maintenance is set to. 
    This should also work with 1.0.5.1.   after changing the plotpole Class name to  30m_plot_kit.
    Correction:  1.0.5.1 uses the same built Plotpole in the database as 1.0.6.  It's only the plotpole kit name that is different.  So below will work as is in 1.0.5.1.
    -- ---------------------------- -- Event structure for Plotpole_and_Door_Maintenance -- ---------------------------- DROP EVENT IF EXISTS `Plotpole_and_Door_Maintenance`; DELIMITER ;; CREATE EVENT `Plotpole_and_Door_Maintenance` ON SCHEDULE EVERY 1 DAY COMMENT 'Plotpole_and_Door_Maintenance' DO DELETE FROM `Object_DATA` WHERE `LastUpdated` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 14 DAY) AND Damage > 0.09 AND (`Classname` IN ('Land_DZE_GarageWoodDoorLocked','Land_DZE_LargeWoodDoorLocked','Land_DZE_WoodDoorLocked','CinderWallDoorLocked_DZ','CinderWallDoorSmallLocked_DZ','Plastic_Pole_EP1_DZ')) ;; DELIMITER ;  
  4. Like
    Mannie got a reaction from salival in 1.0.6 Maintenance not removing Doors and Plotpoles   
    It sounds like that is precisely the plan. This little thread may have eliminated one of the many hurdles modders and server owners have endured for many years. Excellent community input @Jim90! :)
  5. Like
    Mannie reacted to Jim90 in 1.0.6 Maintenance not removing Doors and Plotpoles   
    In 1.0.6 the doors and plotpoles are not being removed by the maintenance system. Walls and ceilings look to be getting removed properly. The "setDamageOnAge" Database event included with the 1.0.6 server install is adding the 0.1 damage but the doors and plotpoles are still not being removed. This looks to be the same issue that happens on 1.0.5.1 only when a  name has been added to the door or plotpole, even with the 0.1 damage added. Since 1.0.6 automatically adds the player ID to the Inventory column of doors and plotpoles, I suspect this is happening to all of them now. If there is a fix for this could we get it added to 1.0.6.1?
×
×
  • Create New...