/home/shards/shards/src/act_wiz.c:3130: undefined reference to `stop_hating' /home/shards/shards/src/fight.c:816: undefined reference to `start_hating' /home/shards/shards/src/update.c:523: undefined reference to `is_hating'
In your source directory, do a grep for the above three statements (is_hating, start_hating, stop_hating). They are probably all in one file (more than likely a .c file that you forgot to add to your Makefile before compiling). Grep is_hating *[ch] should tell you where it is, or where all of the references to it are. The same with the other commands If this is from a snippet, make sure that everything was installed as per the instructions. Go through and make sure that the code for the above functions was installed, and was installed correctly. Undefined reference means just that: The code is referring to a function (or a macro) that just doesn't exist (or can't be found). ------------------------------------------- TJW: Head tech, Dreamless Realms Mud Personal: http://twhiting.kyndig.com Mud: http://drealms.kyndig.com Snippets http://drealms.kyndig.com/snippets Telnet telnet://drealms.kyndig.com:9275 The OLC2 Pages http://olc.kyndig.com -------------------------------------------

