In one
'Glow' plugin i found these lines:
PHP Code:
new name[64]
get_user_name(Player[iPlayer], name, sizeof(name) -1)
And i'm wondering if this would be the same?
PHP Code:
new name[33]
get_user_name(Player[iPlayer], name, charmax(name))
Maby using charmax is even better?
By the way would he creat name[64]? Aren't [33] is enought?