16.06.2013, 06:03
Problem is in this:
pawn Код:
else //If the connected user is not registered,
{
new INI:file = INI_Open(Path(playerid)); // we will open a new file for them to save their account inside of Scriptfiles/Users folder
INI_SetTag(file,"user");//We will set a tag inside of user's account called "Player's Data"
INI_WriteInt(file,"Scores",0);//Write an integer inside of user's account called "Scores". We will set their score to 0 after he registered
INI_Close(file);
}
return 1;
}