<snip> > olc_act.c: In function `aedit_file': > olc_act.c:754: warning: subscript has type `char' (lots of these) </snip> Personaly, I don't know what this one is.
> olc_act.c: In function `oedit_delete': > olc_act.c:4958: warning: unused variable `tReset' And the rest of these mean that you have a variable declared and aren't using it. So remove them if u won't use them to save memory allocation. <snip> > olc_act.c:5248: structure has no member named `from_room' > olc_act.c:5293: structure has no member named `from_room' </snip> And the like, these all mean that your structure does NOT have these defined in them. Hince, "structure has no member named ...." Rheede

