I had this problem with one of my plugins before, but i forget excalty what it was. Can you paste your whole code, maybe it will refresh my memory. First though make sure you actually have a file called "list" in your configs folder.
you can also add this in your code if u dont have it:
Code:
new filename[256]
public plugin_init() {
get_configsdir(filename,255)
format(filename,255,"%s/list.txt",filename)
if(!file_exists(filename))
{
write_file(filename,";list")
}
}
__________________