Private
Public Access
1
0

Add player kill tracking and update version to 0.1.7

This commit is contained in:
Jan Grießhaber
2026-01-02 19:12:07 +01:00
parent 0660a7642b
commit 8d0aa8b826
3 changed files with 16 additions and 2 deletions

View File

@@ -149,11 +149,12 @@ end)
function SendGameStats(event)
local returnParts = {}
returnParts[#returnParts+1] = GetMods()
GetMods()
returnParts[#returnParts+1] = GetMapSeed()
returnParts[#returnParts+1] = GetRocketsLaunched()
returnParts[#returnParts+1] = GetPlayerTime()
returnParts[#returnParts+1] = GetPlayerDeaths()
returnParts[#returnParts+1] = GetPlayerKills()
helpers.send_udp(udpAddress, table.concat(returnParts, "\n"), serverIndex)
end