Update and compress textures
Before Width: | Height: | Size: 770 B After Width: | Height: | Size: 764 B |
Before Width: | Height: | Size: 793 B After Width: | Height: | Size: 789 B |
Before Width: | Height: | Size: 691 B After Width: | Height: | Size: 687 B |
Before Width: | Height: | Size: 739 B After Width: | Height: | Size: 732 B |
Before Width: | Height: | Size: 463 B After Width: | Height: | Size: 462 B |
Before Width: | Height: | Size: 337 B After Width: | Height: | Size: 336 B |
Before Width: | Height: | Size: 467 B After Width: | Height: | Size: 465 B |
Before Width: | Height: | Size: 332 B After Width: | Height: | Size: 331 B |
Before Width: | Height: | Size: 266 B After Width: | Height: | Size: 262 B |
Before Width: | Height: | Size: 270 B After Width: | Height: | Size: 267 B |
Before Width: | Height: | Size: 215 B After Width: | Height: | Size: 209 B |
Before Width: | Height: | Size: 209 B After Width: | Height: | Size: 203 B |
Before Width: | Height: | Size: 243 B After Width: | Height: | Size: 242 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 238 B After Width: | Height: | Size: 236 B |
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 992 B After Width: | Height: | Size: 990 B |
Before Width: | Height: | Size: 394 B After Width: | Height: | Size: 392 B |
Before Width: | Height: | Size: 485 B After Width: | Height: | Size: 466 B |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 374 B After Width: | Height: | Size: 373 B |
Before Width: | Height: | Size: 374 B After Width: | Height: | Size: 372 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 513 B After Width: | Height: | Size: 498 B |
Before Width: | Height: | Size: 464 B After Width: | Height: | Size: 453 B |
Before Width: | Height: | Size: 201 B After Width: | Height: | Size: 198 B |
Before Width: | Height: | Size: 299 B After Width: | Height: | Size: 297 B |
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 259 B |
|
@ -1,4 +1,5 @@
|
||||||
minetest.register_on_newplayer(function(player)
|
minetest.register_on_newplayer(function (player)
|
||||||
player:get_inventory():add_item('main', 'default:sword_steel')
|
player:get_inventory():add_item('main', 'default:sword_steel')
|
||||||
player:get_inventory():add_item('main', 'default:torch 8')
|
player:get_inventory():add_item('main', 'default:torch 8')
|
||||||
end)
|
player:get_inventory():add_item('main', 'default:wood 64')
|
||||||
|
end)
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 361 B After Width: | Height: | Size: 359 B |
Before Width: | Height: | Size: 414 B After Width: | Height: | Size: 412 B |
|
@ -0,0 +1,24 @@
|
||||||
|
minetest.register_chatcommand("killme", {
|
||||||
|
description = "Kill yourself to respawn",
|
||||||
|
func = function(name)
|
||||||
|
local player = minetest.get_player_by_name(name)
|
||||||
|
if player then
|
||||||
|
if minetest.settings:get_bool("enable_damage") then
|
||||||
|
player:set_hp(0)
|
||||||
|
return true
|
||||||
|
else
|
||||||
|
for _, callback in pairs(core.registered_on_respawnplayers) do
|
||||||
|
if callback(player) then
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- There doesn't seem to be a way to get a default spawn pos from the lua API
|
||||||
|
return false, "No static_spawnpoint defined"
|
||||||
|
end
|
||||||
|
else
|
||||||
|
-- Show error message if used when not logged in, eg: from IRC mod
|
||||||
|
return false, "You need to be online to be killed!"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
})
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 230 B After Width: | Height: | Size: 229 B |
Before Width: | Height: | Size: 230 B After Width: | Height: | Size: 229 B |
Before Width: | Height: | Size: 595 B After Width: | Height: | Size: 578 B |
Before Width: | Height: | Size: 355 B After Width: | Height: | Size: 354 B |
Before Width: | Height: | Size: 761 B After Width: | Height: | Size: 757 B |
Before Width: | Height: | Size: 960 B After Width: | Height: | Size: 937 B |
Before Width: | Height: | Size: 359 B After Width: | Height: | Size: 357 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1003 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 914 B After Width: | Height: | Size: 913 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,7 @@
|
||||||
|
MultiCraft Game mod: sethome
|
||||||
|
==========================
|
||||||
|
See license.txt for license information.
|
||||||
|
|
||||||
|
Authors of source code
|
||||||
|
----------------------
|
||||||
|
sfan5 (MIT)
|
|
@ -5,26 +5,12 @@ local homes_file = minetest.get_worldpath() .. "/homes"
|
||||||
local homepos = {}
|
local homepos = {}
|
||||||
|
|
||||||
local function loadhomes()
|
local function loadhomes()
|
||||||
-- local input = io.open(homes_file, "r")
|
local input = io.open(homes_file, "r")
|
||||||
-- if input then
|
|
||||||
-- repeat
|
|
||||||
-- local x = input:read("*n")
|
|
||||||
-- if x == nil then
|
|
||||||
-- break
|
|
||||||
-- end
|
|
||||||
-- local y = input:read("*n")
|
|
||||||
-- local z = input:read("*n")
|
|
||||||
-- local name = input:read("*l")
|
|
||||||
-- homepos[name:sub(2)] = {x = x, y = y, z = z}
|
|
||||||
-- until input:read(0) == nil
|
|
||||||
-- io.close(input)
|
|
||||||
-- end
|
|
||||||
local input, err = io.open(homes_file, "r")
|
|
||||||
if not input then
|
if not input then
|
||||||
return minetest.log("info", "Could not load player homes file: " .. err)
|
return -- no longer an error
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Iterate over all stored positions in the format "x y z player" each line
|
-- Iterate over all stored positions in the format "x y z player" for each line
|
||||||
for pos, name in input:read("*a"):gmatch("(%S+ %S+ %S+)%s([%w_-]+)[\r\n]") do
|
for pos, name in input:read("*a"):gmatch("(%S+ %S+ %S+)%s([%w_-]+)[\r\n]") do
|
||||||
homepos[name] = minetest.string_to_pos(pos)
|
homepos[name] = minetest.string_to_pos(pos)
|
||||||
end
|
end
|
||||||
|
@ -38,11 +24,13 @@ sethome.set = function(name, pos)
|
||||||
if not player or not pos then
|
if not player or not pos then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
player:set_attribute("sethome:home", minetest.pos_to_string(pos))
|
||||||
|
|
||||||
|
-- remove `name` from the old storage file
|
||||||
local data = {}
|
local data = {}
|
||||||
local output, err = io.open(homes_file, "w")
|
local output = io.open(homes_file, "w")
|
||||||
if output then
|
if output then
|
||||||
homepos[name] = pos
|
homepos[name] = nil
|
||||||
for i, v in pairs(homepos) do
|
for i, v in pairs(homepos) do
|
||||||
table.insert(data, string.format("%.1f %.1f %.1f %s\n", v.x, v.y, v.z, i))
|
table.insert(data, string.format("%.1f %.1f %.1f %s\n", v.x, v.y, v.z, i))
|
||||||
end
|
end
|
||||||
|
@ -50,24 +38,39 @@ sethome.set = function(name, pos)
|
||||||
io.close(output)
|
io.close(output)
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
minetest.log("action", "Unable to write to player homes file: " .. err)
|
return true -- if the file doesn't exist - don't return an error.
|
||||||
return false
|
|
||||||
end
|
end
|
||||||
|
|
||||||
sethome.get = function(name)
|
sethome.get = function(name)
|
||||||
return homepos[name]
|
local player = minetest.get_player_by_name(name)
|
||||||
|
local pos = minetest.string_to_pos(player:get_attribute("sethome:home"))
|
||||||
|
if pos then
|
||||||
|
return pos
|
||||||
|
end
|
||||||
|
|
||||||
|
-- fetch old entry from storage table
|
||||||
|
pos = homepos[name]
|
||||||
|
if pos then
|
||||||
|
return vector.new(pos)
|
||||||
|
else
|
||||||
|
return nil
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
sethome.go = function(name)
|
sethome.go = function(name)
|
||||||
|
local pos = sethome.get(name)
|
||||||
local player = minetest.get_player_by_name(name)
|
local player = minetest.get_player_by_name(name)
|
||||||
if player and homepos[name] then
|
if player and pos then
|
||||||
player:setpos(homepos[name])
|
player:setpos(pos)
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
minetest.register_privilege("home", "Can use /sethome and /home")
|
minetest.register_privilege("home", {
|
||||||
|
description = "Can use /sethome and /home",
|
||||||
|
give_to_singleplayer = true
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_chatcommand("home", {
|
minetest.register_chatcommand("home", {
|
||||||
description = "Teleport you to your home point",
|
description = "Teleport you to your home point",
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
License of source code
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
The MIT License (MIT)
|
||||||
|
Copyright (C) 2014-2016 sfan5
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||||
|
software and associated documentation files (the "Software"), to deal in the Software
|
||||||
|
without restriction, including without limitation the rights to use, copy, modify, merge,
|
||||||
|
publish, distribute, sublicense, and/or sell copies of the Software, and to permit
|
||||||
|
persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all copies or
|
||||||
|
substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
||||||
|
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
|
||||||
|
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||||
|
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
|
DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
For more details:
|
||||||
|
https://opensource.org/licenses/MIT
|
Before Width: | Height: | Size: 294 B After Width: | Height: | Size: 286 B |
Before Width: | Height: | Size: 297 B After Width: | Height: | Size: 292 B |
Before Width: | Height: | Size: 297 B After Width: | Height: | Size: 287 B |
Before Width: | Height: | Size: 297 B After Width: | Height: | Size: 292 B |
Before Width: | Height: | Size: 295 B After Width: | Height: | Size: 288 B |
Before Width: | Height: | Size: 295 B After Width: | Height: | Size: 287 B |
Before Width: | Height: | Size: 295 B After Width: | Height: | Size: 283 B |
Before Width: | Height: | Size: 289 B After Width: | Height: | Size: 271 B |
Before Width: | Height: | Size: 294 B After Width: | Height: | Size: 283 B |
Before Width: | Height: | Size: 297 B After Width: | Height: | Size: 290 B |
Before Width: | Height: | Size: 297 B After Width: | Height: | Size: 290 B |
Before Width: | Height: | Size: 558 B After Width: | Height: | Size: 542 B |
Before Width: | Height: | Size: 259 B After Width: | Height: | Size: 258 B |
Before Width: | Height: | Size: 259 B After Width: | Height: | Size: 258 B |
Before Width: | Height: | Size: 259 B After Width: | Height: | Size: 257 B |
Before Width: | Height: | Size: 259 B After Width: | Height: | Size: 258 B |
Before Width: | Height: | Size: 245 B After Width: | Height: | Size: 244 B |