mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-10-13 22:34:53 +02:00
properly display unlimited kills per month
This commit is contained in:
@@ -44,11 +44,11 @@ function onSay(player, words, param)
|
|||||||
message = message .. "Default murders\n"
|
message = message .. "Default murders\n"
|
||||||
message = message .. "- Daily kills for red skull " .. killsDayRedSkull .. "\n"
|
message = message .. "- Daily kills for red skull " .. killsDayRedSkull .. "\n"
|
||||||
message = message .. "- Weekly kills for red skull " .. killsWeekRedSkull .. "\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 .. "- Daily kills for banishment " .. killsDayBanishment .. "\n"
|
||||||
message = message .. "- Weekly kills for banishment " .. killsWeekBanishment .. "\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"
|
message = message .. "\n"
|
||||||
|
|
||||||
|
@@ -52,6 +52,7 @@
|
|||||||
<talkaction words="!uptime" script="uptime.lua"/>
|
<talkaction words="!uptime" script="uptime.lua"/>
|
||||||
<talkaction words="!deathlist" script="deathlist.lua"/>
|
<talkaction words="!deathlist" script="deathlist.lua"/>
|
||||||
<talkaction words="!kills" script="kills.lua"/>
|
<talkaction words="!kills" script="kills.lua"/>
|
||||||
|
<talkaction words="!frags" script="kills.lua"/>
|
||||||
<talkaction words="!online" script="online.lua"/>
|
<talkaction words="!online" script="online.lua"/>
|
||||||
<talkaction words="!serverinfo" script="serverinfo.lua"/>
|
<talkaction words="!serverinfo" script="serverinfo.lua"/>
|
||||||
<talkaction words="!share" script="experienceshare.lua"/>
|
<talkaction words="!share" script="experienceshare.lua"/>
|
||||||
|
Reference in New Issue
Block a user