Merge branch 'coop' of github.com:sm64ex-coop-dev/sm64ex-coop into coop

This commit is contained in:
MysterD 2023-04-30 17:39:49 -07:00
commit 63699efd00
1 changed files with 14 additions and 0 deletions

View File

@ -169,3 +169,17 @@ end
hook_event(HOOK_ON_INTERACT, localStarCounter)
hook_event(HOOK_ON_HUD_RENDER, displayStarCounter)
hook_chat_command('pstarcount', 'On|Off - Displays stars you"ve collected. Default is On.', PSToggle)
_G.PersonalStarCounter = {
get_star_counter = function ()
return StarCounter
end,
get_total_star_counter = function ()
return TotalStarCounter
end,
hide_star_counters = function (hide)
if hide then psToggle = 0 else psToggle = 1 end
end,
}