try this.... in the Load() function
Code:
static space = 0
//for loop
if(szData[i] == ' ')
space++
This is assuming you actually want to count the spaces from the retrieved data....
also
g_iSave[33][33]
g_iSave[33][32]
SteamIDs are only 32, you don't need to set it to 33, its one extra bit you don't need. Relatively negligible in the long run, but an optimization, if you care about it.
EDIT: looking at how hornet fixed your code.....the first half of this is obsolete. The second half is still just a little something.
Oh...and instead of using client_putinserver() use
client_authorized(id) because this is based completely on the authorization of the client (using their SteamID) you want to make sure they actually have one when you execute the body of it. doing it this way will ensure that.
client_putinserver(id) is called when the client gets prompted the MOTD, while client_authorized() is called when the client has a proper SteamID placed to his credentials.
__________________