I am using Noplex hometown and nations snippet, and I get this...
I had to change load_nations a bit so it could work with the mud, and that might have caused the problem? so heres the load_nations I use...
yea there were two there by my fault had to post it in two sections sorry, now its exactly what I have in the mud right now.
Fri May 19 15:03:18 2006 :: Loading Hometowns...
Fri May 19 15:03:18 2006 :: Loading Nations...
Fri May 19 15:03:18 2006 :: [*****] BUG: Fread_string: EOF
Fri May 19 15:03:18 2006 :: Loading changesI had to change load_nations a bit so it could work with the mud, and that might have caused the problem? so heres the load_nations I use...
void load_nations(void)
{
FILE *list = NULL;
char filename[256];
/* load from nations list */
sprintf(filename, "%snations.lst", NATION_DIR);
if((list = fopen(filename, "r")) == NULL)
{
bug("load_nations(): cannot open %s for reading; aborting load", filename);
return;
}
top_nation = 0;
for( ; ; )
{
char *file = feof(list) ? "$" : fread_string(list);
/* end of the file */
if(file[0] == '$')
break;
/* load each nation indiviually */
{
NATION_DATA *nation = NULL;
nation = fread_nation(file);
if(!nation)
{
bug("load_nations(): error returning back nation from filename %s", file);
return;
}
/* linker */
nation_list[top_nation] = nation;
top_nation++;
continue;
}
}
FCLOSE(list);
checkup( );
return;
}yea there were two there by my fault had to post it in two sections sorry, now its exactly what I have in the mud right now.