1. How do I get information about date of the last WIPE in plugin or extension?
    I know that the information you see in the console when the server is started.

    SHUt your play!
     
  2. Wulf

    Wulf Community Admin

    You can see if by searching the game's DLL using a program such as JustDecompile:

    GameSerializer.CurrentSaveCreationTimestamp

    Code:
    DateTimeX.FromUTCInt(GameSerializer.CurrentSaveCreationTimestamp), DateTimeX.FromUTCInt(GameSerializer.CurrentSaveCreationTimestamp + GameManager.Instance.ServerConfig.WipeInterval)));
     
  3. How to load GameSerializer?
     
  4. Wulf

    Wulf Community Admin

    It should just be available in your plugin.
     
  5. I need it the most in the extension, and I can not find it.
     
  6. Wulf

    Wulf Community Admin

    It's from Hurtworld's Assembly-CSharp.dll.
     
  7. How i can reset informations about last wipe date without use autowipe 1?
     
  8. Last wipe date is really data to generate maps and it is not necessary set autowipe parameter.