[HookMethod("GetPlayerGrowth")]
public int API_GetPlayerGrowth(string userId)
[HookMethod("GetPlayerLevel")]
public int API_GetPlayerLevel(string userId)
[HookMethod("IsPlayerVip")]
public bool API_IsPlayerVip(string userId)
[HookMethod("SetPlayerGrowth")]
public bool API_SetPlayerGrowth(string userId, int growth)
[HookMethod("AddPlayerGrowth")]
public bool API_AddPlayerGrowth(string userId, int amount)
Interface.CallHook("OnGrowthUpdated", userId, oldGrowth, newGrowth);
Interface.CallHook("OnLevelUpdated", userId, oldLevel, newLevel);