added chest serial numbers

This commit is contained in:
derek
2025-03-10 09:12:29 -05:00
parent c79e1fdfe5
commit f8eb44c3b2
73 changed files with 1189 additions and 63 deletions

View File

@@ -65,6 +65,7 @@ func save_user_data():
file.store_var(GameGlobals.current_match)
file.store_var(GameGlobals.current_match_id)
file.store_var(GameGlobals.current_round_id)
file.store_var(GameGlobals.chests_spawned)
file.store_var(money)
file.store_var(deposited_money)
file.store_var(health)
@@ -100,6 +101,7 @@ func load_user_data():
GameGlobals.current_match = file.get_var()
GameGlobals.current_match_id = file.get_var()
GameGlobals.current_round_id = file.get_var()
GameGlobals.chests_spawned = file.get_var()
var money = set_nulls_zero(file.get_var())
var deposited_money = set_nulls_zero(file.get_var())
var health = file.get_var()