Get amount in team's funds?
I'm trying to increase the funds of a team by a certain amount, I know I can set the funds with
Code:
ActivityMan:GetActivity():SetTeamFunds(AMOUNT,TEAM)
However I don't know how to get the team's funds to increase it slightly, is there a way to get the team's funds? I imagine it would look something like this...
Code:
ActivityMan:GetActivity():GetTeamFunds(TEAM)
...then maybe I could increment it like this?
Code:
ActivityMan:GetActivity():SetTeamFunds(ActivityMan:GetActivity():GetTeamFunds(TEAM) + AMOUNT,TEAM)
Any help appreciated