alright, I've gone back through the rejects, and am just short of trying to
hand-apply the color patch to an OLC patched stock ROM. Here is something
interesting I have come up with.. first off, lets start with this:
<20hp 100m 100mv> colour
Huh?
it doesnt know the command colour! funny, now look at this:
[EMAIL PROTECTED]:/mud/Rom24/src$ grep do_gtell *
act_comm.c:void do_gtell( CHAR_DATA *ch, char *argument )
Binary file act_comm.o matches
Binary file cmdedit.o matches
command.h:COMMAND( do_gtell )
interp.c: {
"gtell", do_gtell, POS_DEAD, 0, LOG_NORMAL, 1 },
interp.c: {
";", do_gtell, POS_DEAD, 0, LOG_NORMAL, 0 },
patch.olc:-DECLARE_DO_FUN( do_gtell );
Binary file rom matches
[EMAIL PROTECTED]:/mud/Rom24/src$ grep do_colour *
act_comm.c:void do_colour( CHAR_DATA *ch, char *argument )
Binary file act_comm.o matches
Binary file cmdedit.o matches
command.h:COMMAND( do_colour )
interp.c: {
"colour", do_colour, POS_DEAD, 0, LOG_NORMAL, 1 },
interp.h.rej:+ DECLARE_DO_FUN( do_colour ); /* Colour Command
By Lope */
patch-rom2.4-colour:+void do_colour( CHAR_DATA *ch, char *argument )
patch-rom2.4-colour:+ {
"colour", do_colour, POS_DEAD, 0, LOG_NORMAL, 1 },
patch-rom2.4-colour:+DECLARE_DO_FUN( do_colour ); /* Colour Command
By Lope */
Binary file rom matches
The very basic command gtell shows being in the exact same areas as the
command colour.. both are defined in act_comm.c (which compiles fine), both
are in command.h with their COMMAND definition, which is DECLARE_DO_FUN..
and most important: the interp.c entry of its command, and it still comes
up saying that its not there. Anyone notice something absolutely stupid
i've done that would cause this?