I have read all the messages on the crypt.h file. and i am still having problems on compile, when i type make it returns this
make[1]: Entering directory `/home/chris/smaugfuss/src'
gcc -c -O -g2 -Wall -lcrypt -DI3 -DI3SMAUG build.c
build.c:24:19: crypt.h: No such file or directory
build.c: In function `do_mset':
build.c:1753: warning: implicit declaration of function `crypt'
build.c:1753: warning: assignment makes pointer from integer without a cast
make[1]: *** [build.o] Error 1
make[1]: Leaving directory `/home/chris/smaugfuss/src'
make: *** [all] Error 2
i have never done anything codeing wise, i dont even know how to uncomment :) but i will send my makefile if needed
thank you
The easy answer to your original problem isn't making your own crypt file, it's editing the make file to not try to use the crypt library in the first place. There are posts here (I'm pretty sure) or comments in the make file that can walk you thru the process. I would also recommend reading some of the more in depth threads discussing the demands and frustrations of coding and trying to run a mud. I am strongly advising you to go get a basic c or c++ book and teach yourslef at least the very basics of the language and its structure. This will make you life so very much easier in the long run and your efforts to run a mud so much less frustrating.