I'm working on a plugin that remembers all of a users game info between connections to the server. I have the score portion complete but now I am working on money.
Right now I am using the below to keep a record of the players money so that when they go to disconnect I will have a record of it so I can save it to a file. Is there a better way to go about this? I put a console_print on the below just to see how often it is updated and every single cash transactions triggers it, which is good, but I was concerned about preserving CPU\efficiency.
PHP Code:
public cmd_Money(id)
{
g_Money[id] = cs_get_user_money( id );
}
__________________