Jump to content

SilvioDoHOTS

Members
  • Content Count

    22
  • Joined

  • Last visited

Community Reputation

1 Neutral

About SilvioDoHOTS

  • Rank
    Scavenger

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. SilvioDoHOTS

    How can I turn on Deathmessage?

    This can enable death messages showing "Player1 killed Player2.", still we figure out a way to show the gun/distance from the killer to the killed.
  2. SilvioDoHOTS

    KILL STREAK

    Just show killstreak on chat would be sick. If anyone scripts this, post it here.
  3. SilvioDoHOTS

    How can I turn on Deathmessage?

    Tried to contect them but they don't want to share knowledge.
  4. SilvioDoHOTS

    How can I turn on Deathmessage?

    Can you say how to contact this dev or how can I join the server to try reach him?
  5. SilvioDoHOTS

    Is it possibly to make more Classes?

    Yes, you can as much as you want. You just need to do it propely. Which error do you get?
  6. SilvioDoHOTS

    How can I turn on Deathmessage?

    @Mizev do you know how to do this?
  7. This was discussed in another threat, and we find a solution. Closed.
  8. SilvioDoHOTS

    Cleanup of dead players bodys

    You can override on Inic.c, but you need to call this way: override void OnClientRespawnEvent(PlayerIdentity identity, PlayerBase player) { // note: player is now killed in db right after the actual kill happens /*if (GetHive() && player) { GetHive().CharacterKill(player); }*/ if(player) { if (player.IsUnconscious() || player.IsRestrained()) { // kill character player.SetHealth("", "", 0.0); } } // DELETE THE CORPSE AFTER RESPAWN GetGame().ObjectDelete(player); }
  9. SilvioDoHOTS

    Cleanup of dead players bodys

    Which file it is this method, @Sentepu?
  10. SilvioDoHOTS

    How to auto clean all items on floor after restart

    I'm not sure, but I think item related stuff is this dynamyc. So you should change <dynamic init="1" load="1" respawn="1" save="1"/> to <dynamic init="1" load="1" respawn="1" save="0"/> and try it out.
  11. SilvioDoHOTS

    Battleye System message

    Wanna know that too
  12. SilvioDoHOTS

    How to auto clean all items on floor after restart

    You should play with the values on Dayzserver/mpmissions/pvpPlus.chernarusplus/db/economy.xml There is you have the things some values. You can change save to save="0" I don't have the exactly documentation, but you should look for it on web
  13. I don't know exactly, but if isn't there, definitely it is on dayzOffline.chernarusplus/db. Since your issue is different from the one of this post, you should look into /db files explanation or open a new thread. You can also disable the dropped itens in economy.xml (it was what I did). PS for others: I have added a image of the issue on the main thread post.
  14. You can aways turn off persistence. I think it is on serverDZ.cfg
  15. On server restart is simple, just do what @philippj told above. Our problem is to clear items while the server is up.
×