16.08.2009, 16:32
I only had a very quick look at it, but a possibility could be under your /login command; you are overloading a string.
pawn Код:
strmid(tmppass, tmp, 0, strlen(cmdtext), 255); // You have declared the length of your destination string (tmppass) as 64, not 255.
// Should be this
strmid(tmppass, tmp, 0, strlen(cmdtext), 64);
// OR
strmid(tmppass, tmp, 0, strlen(cmdtext), sizeof(tmppass));