14.01.2018, 21:50
new string[256];
format(string, 128,
String sizes are different and I don't think you need that long of a string, you just waste memory.
44 char long is the query without the name, add to it 24 for the username, +1 for terminal = 69 long string.
new string[69];
It'd mean that you'd have 187 unused/empty cells at all times.
format(string, 128,
String sizes are different and I don't think you need that long of a string, you just waste memory.
44 char long is the query without the name, add to it 24 for the username, +1 for terminal = 69 long string.
new string[69];
It'd mean that you'd have 187 unused/empty cells at all times.