-
Content Count
22 -
Joined
-
Last visited
Community Reputation
1 NeutralAbout SilvioDoHOTS
-
Rank
Scavenger
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
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.
-
Just show killstreak on chat would be sick. If anyone scripts this, post it here.
-
Tried to contect them but they don't want to share knowledge.
-
SilvioDoHOTS changed their profile photo
-
Can you say how to contact this dev or how can I join the server to try reach him?
-
Yes, you can as much as you want. You just need to do it propely. Which error do you get?
-
@Mizev do you know how to do this?
-
[Closed] How to clean up body and weapons from the ground after a while?
SilvioDoHOTS replied to SilvioDoHOTS's topic in Servers
This was discussed in another threat, and we find a solution. Closed. -
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); }
-
Which file it is this method, @Sentepu?
-
How to auto clean all items on floor after restart
SilvioDoHOTS replied to Ton_41's topic in Servers
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. -
Wanna know that too
-
How to auto clean all items on floor after restart
SilvioDoHOTS replied to Ton_41's topic in Servers
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 -
[Closed] How to clean up body and weapons from the ground after a while?
SilvioDoHOTS replied to SilvioDoHOTS's topic in Servers
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. -
[Closed] How to clean up body and weapons from the ground after a while?
SilvioDoHOTS replied to SilvioDoHOTS's topic in Servers
You can aways turn off persistence. I think it is on serverDZ.cfg -
[Closed] How to clean up body and weapons from the ground after a while?
SilvioDoHOTS replied to SilvioDoHOTS's topic in Servers
On server restart is simple, just do what @philippj told above. Our problem is to clear items while the server is up.