30.04.2014, 12:54
So, basically what I want to do is delete a user's file when he quits the server during or before the registration process.
I get this funny error in my server.log and the .ini is not deleted afterwards:
It even shows a smiley face at the end of the error code (in my server prompt window).
How can I solve this?
This is the code where it deletes the file if the player quits (during the registration process):
Help is much appreciated.
If you require more information about my script, let me know.
I get this funny error in my server.log and the .ini is not deleted afterwards:
Code:
[14:55:33] *** YSI Info: Invalid line in INI file "/Users/Bible.ini": /Users/Bible.ini =
How can I solve this?
This is the code where it deletes the file if the player quits (during the registration process):
pawn Code:
new INI:File = INI_Open(UserPath(playerid));
INI_RemoveEntry(File, UserPath(playerid));
INI_Close(File);
If you require more information about my script, let me know.