replace spawn point

This commit is contained in:
Александр Авдеев 2024-01-21 02:03:25 +05:00 committed by Koldun
parent 10d0c3ca45
commit d5239404c5
Signed by: Koldun
GPG Key ID: 53DE683337F5D25F
2 changed files with 19 additions and 1 deletions

View File

@ -1,7 +1,9 @@
local S = minetest.get_translator("towns")
local towns_list = {}
-- static spawn position
local central_spawn = { x = 206.7,y = 6,z = -84.2 }
local city_pos = { x = -12003, y = 22, z = -7498 }
table.insert(towns_list, S("The city built by the player H743")..S(" | command - ").."/city")
@ -29,4 +31,18 @@ minetest.register_chatcommand("list_towns", {
end
return true, S("Total number of towns:") .." ".. #towns_list
end
})
minetest.register_chatcommand("spawn", {
description = S("Go to central Spawn"),
privs = {home = true},
func = function(name)
local player = minetest.get_player_by_name(name)
if player~=nil then
player:set_pos(central_spawn)
minetest.chat_send_player(name,minetest.colorize("cyan", S("Welcome to central Spawn!")))
end
end
})

View File

@ -6,4 +6,6 @@ Go to the city built by the player H743=Отправиться в город, п
Welcome to the City!=Добро пожаловать в City!
List of server towns=Список городов сервера
Towns:=Города:
Total number of towns:=Всего городов на сервере:
Total number of towns:=Всего городов на сервере:
Go to central Spawn=Отправиться на центральный Спавн
Welcome to central Spawn!=Добро пожаловать на центральный Спавн!