You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see the mod is not updated since years, in the meantime the minetest does support mod-meta storage and player-meta storage. Using io.open() no longer really welcome. So this mod needs an update for them.
the player does have get_attribute() and set_attribute(), but I do not recommend it to use for money because only available if the player is logged in. (No payments possible to offline users)
The beter way is trough local mod_storage = minetest.get_mod_storage() and then mod_storage:set_string(money_"..name, value)
The text was updated successfully, but these errors were encountered:
Thanks for this great mod at the first!
I see the mod is not updated since years, in the meantime the minetest does support mod-meta storage and player-meta storage. Using io.open() no longer really welcome. So this mod needs an update for them.
the player does have get_attribute() and set_attribute(), but I do not recommend it to use for money because only available if the player is logged in. (No payments possible to offline users)
The beter way is trough
local mod_storage = minetest.get_mod_storage()
and thenmod_storage:set_string(money_"..name, value)
The text was updated successfully, but these errors were encountered: