15-10-2008, 04:05 PM
When you use /destroybanlist, or at least for me, it crashes the server, I can then not log in, because it keeps giving me RTE 62. Input past the end of a file. If I open the Banlist, I can see that the cursor is down one line, it appears that it's creating a blank space in the file, and I think this is what is causing the problem, as deleting the space fixes everything.
The fix:
Replace:
With:Note: I DID NOT COME UP WITH THE FIX. I GOT THE ANSWER FROM MY MSN FRIEND ROTT.
The fix:
Replace:
Code:
Open FileName For Output As File
Print #File, vbNullString
Close File
With:
Code:
open filename for binary as file
put file,,vbnullstring
close file