1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-07-21 09:00:25 +02:00

Updated money mod with kilbith's fork

- (nothing interesting, just little syntax fix, and new textures)
This commit is contained in:
LeMagnesium
2015-07-02 19:34:54 +02:00
parent 0fa535ac68
commit 8acd6b66b9
17 changed files with 150 additions and 682 deletions

25
mods/money/hud.lua Executable file
View File

@ -0,0 +1,25 @@
money.hud = {}
function money.get_money_string(name)
return "Account : " .. CURRENCY_PREFIX .. money.get_money(name) -- use CURRENCY_POSTFIX for the lettered currency
end
function money.hud_add(name)
local player = minetest.get_player_by_name(name)
money.hud[name] = player:hud_add({
hud_elem_type = "text",
name = "Current money",
number = 0xFFFFFF,
position = {x=1, y=1},
offset = {x=-8, y=-8},
text = money.get_money_string(name),
scale = {x=200, y=60},
alignment = {x=-1.2, y=-1},
})
end
function money.hud_change(name)
local player = minetest.get_player_by_name(name)
player:hud_change(money.hud[name], "text", money.get_money_string(name))
end