a few api functions for psc (#372)

This commit is contained in:
PeachyPeach 2023-04-30 14:46:47 +02:00 committed by GitHub
parent b2a17a018d
commit b88542f7d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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,
}