27.07.2016, 15:57 
	
	
	
		Your UserPath function returns the name of the player instead of the path:
	
	
	
	
PHP код:
stock UserPath(playerid) { 
    new path[64], name[MAX_PLAYER_NAME]; 
    GetPlayerName(playerid, name, sizeof(name)); 
    format(path, sizeof(path), USERS_PATH, name); 
    return path; 
} 


