Alright now I'm in trouble again...
In the instructions, it tells me:
In MUD.H find:
----------------------------------------------------------------------------
ITEM_MATCH, ITEM_TRAP, ITEM_MAP, ITEM_PORTAL, ITEM_PAPER,
ITEM_TINDER, ITEM_LOCKPICK, ITEM_SPIKE, ITEM_DISEASE, ITEM_OIL, ITEM_FUEL,
ITEM_EMPTY1, ITEM_EMPTY2, ITEM_MISSILE_WEAPON, ITEM_PROJECTILE, ITEM_QUIVER,
Change to:
ITEM_MATCH, ITEM_TRAP, ITEM_MAP, ITEM_PORTAL, ITEM_PAPER,
ITEM_TINDER, ITEM_LOCKPICK, ITEM_SPIKE, ITEM_DISEASE, ITEM_OIL, ITEM_FUEL,
ITEM_PIECE, ITEM_EMPTY2, ITEM_MISSILE_WEAPON, ITEM_PROJECTILE, ITEM_QUIVER,
^^^^^^^^^^ - modify ITEM_EMPTY1 to ITEM_PIECE
Which I have, I changed ITEM_EMPTY1 to ITEM_PIECE
Next it tells me:
in DB.C find:
------------------------
case ITEM_DRINK_CON:
case ITEM_KEY:
case ITEM_KEYRING:
under that add:
case ITEM_PIECE:
Which I have also done. I did a make clean and then make, everyone compiled beautifully. Then I started up the MUD, everything started up clean. I logged on, "ocreate 1201 bottom half sword", then "oset 1201 type piece" and I it tells me that its not a valid item type. So I tried all sorts of combinations of piece; piece, PIECE, item_piece, ITEM_PIECE, etc, and none of them work. What am I missing now? |