mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-12-25 18:20:36 +01:00
Delete the /money command and
Others funtionnalities of this command... (because it's useless, we use physical coins !)
This commit is contained in:
parent
14b93fe4fb
commit
d29d5ce0c3
@ -55,7 +55,7 @@ local exist = money.exist
|
|||||||
--End.
|
--End.
|
||||||
|
|
||||||
--Creates player's account, if the player doesn't have it.
|
--Creates player's account, if the player doesn't have it.
|
||||||
minetest.register_on_joinplayer(function(player)
|
--[[ minetest.register_on_joinplayer(function(player)
|
||||||
name = player:get_player_name()
|
name = player:get_player_name()
|
||||||
if not exist(name) then
|
if not exist(name) then
|
||||||
local input = io.open(minetest.get_worldpath() .. "/money_" .. name .. ".txt") --For compatible with old versions.
|
local input = io.open(minetest.get_worldpath() .. "/money_" .. name .. ".txt") --For compatible with old versions.
|
||||||
@ -69,19 +69,19 @@ minetest.register_on_joinplayer(function(player)
|
|||||||
accounts[name] = {money = INITIAL_MONEY}
|
accounts[name] = {money = INITIAL_MONEY}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end)
|
end) --]]
|
||||||
--End.
|
--End.
|
||||||
|
|
||||||
--Registration privileges.
|
--Registration privileges.
|
||||||
minetest.register_privilege("money", "Can use /money [pay <account> <amount>] command")
|
--[[minetest.register_privilege("money", "Can use /money [pay <account> <amount>] command")
|
||||||
minetest.register_privilege("money_admin", {
|
minetest.register_privilege("money_admin", {
|
||||||
description = "Can use /money <account> | freeze/unfreeze <account> | take/set/inc/dec <account> <amount>",
|
description = "Can use /money <account> | freeze/unfreeze <account> | take/set/inc/dec <account> <amount>",
|
||||||
give_to_singleplayer = false,
|
give_to_singleplayer = false,
|
||||||
})
|
})--]]
|
||||||
--End.
|
--End.
|
||||||
|
|
||||||
--Registration "money" command.
|
--Registration "money" command.
|
||||||
minetest.register_chatcommand("money", {
|
--[[ minetest.register_chatcommand("money", {
|
||||||
privs = {money=true},
|
privs = {money=true},
|
||||||
params = "[<account> | freeze/unfreeze <account> | pay/take/set/inc/dec <account> <amount>]",
|
params = "[<account> | freeze/unfreeze <account> | pay/take/set/inc/dec <account> <amount>]",
|
||||||
description = "Operations with money",
|
description = "Operations with money",
|
||||||
@ -202,7 +202,7 @@ minetest.register_chatcommand("money", {
|
|||||||
minetest.chat_send_player(name, "Invalid parameters (see /help money)")
|
minetest.chat_send_player(name, "Invalid parameters (see /help money)")
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
--End.
|
--End. --]]
|
||||||
|
|
||||||
local function has_shop_privilege(meta, player)--Does player have permissions for this shop?
|
local function has_shop_privilege(meta, player)--Does player have permissions for this shop?
|
||||||
return player:get_player_name() == meta:get_string("owner") or minetest.get_player_privs(player:get_player_name())["money_admin"]
|
return player:get_player_name() == meta:get_string("owner") or minetest.get_player_privs(player:get_player_name())["money_admin"]
|
||||||
|
Loading…
Reference in New Issue
Block a user