hey guys ( I really appreciate the help btw),
me again....
I've got the following gcc error after make
make
gcc -c -Wall -O -g interp.c
rm -f rom
gcc -O -g -o rom act_comm.o act_enter.o act_info.o act_move.o act_obj.o
act_wiz.o alias.o ban.o board.o comm.o const.o db.o db2.o effects.o
fight.o flags.o handler.o healer.o interp.o nanny.o lookup.o magic.o
magic2.o music.o recycle.o save.o scan.o skills.o special.o tables.o
update.o mob_cmds.o mob_prog.o olc.o olc_act.o olc_save.o bit.o mem.o
string.o olc_mpcode.o hedit.o -lcrypt
interp.o: In function `check_social':
/home/mud/cp/Llandis/src/interp.c:652: undefined reference to `do_seek'
/home/mud/cp/Llandis/src/interp.c:652: undefined reference to `do_promote'
/home/mud/cp/Llandis/src/interp.c:653: undefined reference to `do_outcast'
/home/mud/cp/Llandis/src/interp.c:655: undefined reference to `do_add'
collect2: ld returned 1 exit status
and this is what I did...
I just added the functions do_promote, do_outcast etc (the ones in the
error) in interp.h and interp.c because I noticed there is code for them
in clan.c and it just had no command for it.... but now I get this
error.... any ideas?