2025-01-07, 07:20 PM
I believe the problem is with MAX_ADMINS, as the maximum is 25, but you started the loop with 0 and from 0 to 25 gives 26 spaces.
change this:
"for(new i = 0; i < MAX_ADMINS; i++)"
that's why:
for(new i = 1; i < MAX_ADMINS; i++)
and also remove the "+1" from variable i in the OnAdminLoad callback
change this:
"for(new i = 0; i < MAX_ADMINS; i++)"
that's why:
for(new i = 1; i < MAX_ADMINS; i++)
and also remove the "+1" from variable i in the OnAdminLoad callback