emeraldbank/commands.lua

89 lines
3.0 KiB
Lua
Raw Normal View History

2021-10-13 14:23:40 +02:00
2022-07-03 18:20:28 +02:00
-- Copyright (C) 2021, 2022 Ale
2021-10-13 14:23:40 +02:00
-- This file is part of Emeraldbank Minetest Mod.
-- Emeraldbank is free software: you can redistribute it and/or modify
-- it under the terms of the GNU Affero General Public License as
-- published by the Free Software Foundation, either version 3 of the
-- License, or (at your option) any later version.
2021-10-13 14:23:40 +02:00
-- Emeraldbank is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU Affero General Public License for more details.
2021-10-13 14:23:40 +02:00
-- You should have received a copy of the GNU Affero General Public License
2021-10-13 14:23:40 +02:00
-- along with Emeraldbank. If not, see <https://www.gnu.org/licenses/>.
local S = core.get_translator(core.get_current_modname())
-- user /pay chat command
core.register_chatcommand("pay", {
params = "<player> <num>",
description = S("Pay money to other player. Transfer your emeralds to another bank account."),
func = function(name, param)
local player1 = core.get_player_by_name(name)
2021-10-20 17:39:17 +02:00
local meta1 = player1:get_meta()
local bankemeralds1 = meta1:get_int("emeraldbank:emerald")
2021-10-13 14:23:40 +02:00
local playername2, stringnum = param:match("([^ ]+) (.+)")
local player2
local num = tonumber(stringnum)
if playername2 and num then
player2 = core.get_player_by_name(playername2)
end
if player2 and num then
if num > 0 then
if bankemeralds1 >= num then
2021-10-20 17:39:17 +02:00
core.chat_send_player(name, S("Pay Successfully! You have transferred @1 Emeralds." , num) )
core.chat_send_player(playername2, S("Pay Successfully! You've gotten @1 Emeralds.", num) )
2023-03-16 23:16:11 +01:00
if core.get_modpath("irc") and irc.saysec then
2021-12-17 19:25:15 +01:00
irc.saysec(name.." has transferred "..num.." emeralds to "..playername2)
2021-12-17 00:57:08 +01:00
end
2023-03-16 23:17:42 +01:00
if core.get_modpath("yl_matterbridge") and yl_matterbridge.send_to_sec then
yl_matterbridge.send_to_sec("", name.." has transferred "..num.." emeralds to "..playername2)
end
2021-10-20 17:39:17 +02:00
emeraldbank.add_emeralds(player1, -num)
emeraldbank.add_emeralds(player2, num)
2021-12-17 00:57:08 +01:00
core.sound_play("cash", {
to_player = playername2,
gain = 1.0,
fade = 0.0,
pitch = 1.0,
})
2021-10-13 14:23:40 +02:00
else
2023-01-04 21:36:26 +01:00
mcl_title.set(player1, "subtitle", {text=S("Not enough Emeralds in your account"), color="dark_red"})
2021-10-13 14:23:40 +02:00
end
else
2023-01-04 21:36:26 +01:00
mcl_title.set(player1, "subtitle", {text=S("Invalid pay"), color="dark_red"})
2021-10-13 14:23:40 +02:00
end
return true
end
return false
end
})
-- admin chat command
core.register_chatcommand("emeralds", {
params = "<player> <num>",
description = S("Admin Command! Add player emeralds in bank account, also can use negative numbers"),
privs = {server=true},
func = function(name, param)
local playername, stringnum = param:match("([^ ]+) (.+)")
local player
local num = tonumber(stringnum)
if playername and num then
player = core.get_player_by_name(playername)
end
if player and num then
2021-10-20 17:39:17 +02:00
emeraldbank.add_emeralds(player, num)
2021-10-13 14:23:40 +02:00
return true
end
return false
end
})