mirror of
https://github.com/reload-gtn/mtsr_modpack.git
synced 2024-11-15 18:20:59 +03:00
replace spawn point
This commit is contained in:
parent
51e6e98414
commit
f66126270e
@ -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
|
||||
})
|
@ -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!=Добро пожаловать на центральный Спавн!
|
Loading…
Reference in New Issue
Block a user