Update messages.lua

master
Minetest-j45 2021-03-24 17:29:52 +00:00 committed by GitHub
parent cb52adad1e
commit 1840ec4ad8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -1,11 +1,15 @@
sumo_duels.messages = {"You can join the waiting list for an arena using /join <number from 1 to 3>", "The longer you wait to hit your opponent, the more knockback you do"}
sumo_duels.messages = {
"You can join the waiting list for an arena using /join <number from 1 to 3>",
"The longer you wait to hit your opponent, the more knockback you do",
"Once there are at least 2 people in a waiting list for an arena, the first 2 people who were in the waiting list will be put in a game"
}
local timer = 0
minetest.register_globalstep(function(dtime)
timer = timer + dtime;
if timer >= 5 then
-- Send message to all players every 5 seconds
local random = math.random(1, #sumo_duels.messages)
local random = math.random(1, #sumo_duels.messages)
minetest.chat_send_all(minetest.colorize("#999997", sumo_duels.messages[random]))
timer = 0
end