12.07.2018, 18:42
Quote:
|
Then neither. And if you think that is what you need to worry about in code, you don't understand optimisations at all.
|
and no @IdonTmiss that's the exact same thing, just more neat in a way.
If you want to use less variables you can use arrays, i.e.
PHP код:
new PlayerCash[MAX_PLAYERS];
This means that you can do something like this.
PHP код:
if(PlayerCash[0] == 0)
{
SendClientMessage(0, -1, "Ha Ha, you're poor.");
}
Very basic but you get the idea.
This also does not improve optimisation, again it's just neater.
Variables have such a tiny tiny impact on the server, you shouldn't worry about the amount of variables you're using tbh.


