16.06.2016, 07:56
Hello.
1. Which type is better for optimization?
a.
b.
2. What's the difference between stock and public. Which type is better for optimization?
3. Textraws must be placed in OnPlayerConnect or OnGameModeInit for a good optimization?
Thanks!
1. Which type is better for optimization?
a.
HTML Code:
new Variable[MAX_PLAYERS] = 0;
HTML Code:
new Variable[MAX_PLAYERS]; public OnPlayerConnect(playerid) { Variable[playerid] = 0; return 1; }
3. Textraws must be placed in OnPlayerConnect or OnGameModeInit for a good optimization?
Thanks!