mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-04-29 17:19:20 +02:00
properly display unlimited kills per month
This commit is contained in:
parent
5ce0777b1b
commit
6f97252da4
@ -44,11 +44,11 @@ function onSay(player, words, param)
|
||||
message = message .. "Default murders\n"
|
||||
message = message .. "- Daily kills for red skull " .. killsDayRedSkull .. "\n"
|
||||
message = message .. "- Weekly kills for red skull " .. killsWeekRedSkull .. "\n"
|
||||
message = message .. "- Monthly kills for red skull " .. killsMonthRedSkull .. "\n"
|
||||
message = message .. "- Monthly kills for red skull " .. (killsMonthRedSkull >= 99999 and "unlimited" or tostring(killsMonthRedSkull)) .. "\n"
|
||||
|
||||
message = message .. "- Daily kills for banishment " .. killsDayBanishment .. "\n"
|
||||
message = message .. "- Weekly kills for banishment " .. killsWeekBanishment .. "\n"
|
||||
message = message .. "- Monthly kills for banishment " .. killsMonthBanishment .. "\n"
|
||||
message = message .. "- Monthly kills for banishment " .. (killsMonthBanishment >= 99999 and "unlimited" or tostring(killsMonthBanishment)) .. "\n"
|
||||
|
||||
message = message .. "\n"
|
||||
|
||||
|
@ -52,6 +52,7 @@
|
||||
<talkaction words="!uptime" script="uptime.lua"/>
|
||||
<talkaction words="!deathlist" script="deathlist.lua"/>
|
||||
<talkaction words="!kills" script="kills.lua"/>
|
||||
<talkaction words="!frags" script="kills.lua"/>
|
||||
<talkaction words="!online" script="online.lua"/>
|
||||
<talkaction words="!serverinfo" script="serverinfo.lua"/>
|
||||
<talkaction words="!share" script="experienceshare.lua"/>
|
||||
|
Loading…
x
Reference in New Issue
Block a user