interact/rules.lua

36 lines
1.3 KiB
Lua
Raw Normal View History

2024-01-20 13:49:02 +03:00
local S = minetest.get_translator("interact")
2024-01-19 18:47:53 +03:00
--The actual rules.
interact.rules = [[
2024-01-20 13:49:02 +03:00
Rules(Правила):
1. No griefing (Никакого грифинга).
2. No hacked clients (Никаких взломанных клиентов).
2024-01-19 18:47:53 +03:00
]]
--The questions on the rules, if the quiz is used.
--The checkboxes for the first 4 questions are in config.lua
interact.s4_question1 = "Is PVP is allowed?"
interact.s4_question2 = "Is family roleplay allowed?"
interact.s4_question3 = "Should you be nice to all players?"
interact.s4_question4 = "Should you ask for all the privs you can?"
interact.s4_multi_question = "Which of these is a rule?"
--The answers to the multiple choice questions. Only one of these should be true.
interact.s4_multi1 = "No griefing!"
interact.s4_multi2 = "PVP is allowed."
interact.s4_multi3 = "Be rude to other players."
--Which answer is needed for the quiz questions. interact.quiz1-4 takes true or false.
--True is left, false is right.
--Please, please spell true and false right!!! If you spell it wrong it won't work!
--interact.quiz can be 1, 2 or 3.
--1 is the top one by the question, 2 is the bottom left one, 3 is the bottom right one.
--Make sure these agree with your answers!
interact.quiz1 = false
interact.quiz2 = false
interact.quiz3 = true
interact.quiz4 = false
interact.quiz_multi = 1