>#define CLASS_ABBR(ch) (IS_NPC(ch) ? "--" : >class_abbrevs[(int)GET_CLASS(ch)]) Is the above all on one line (and just got broken in two by my mail program)? If not, you need a \ at the end of the first line, like in the lines below it: > >#define IS_MAGIC_USER(ch) (!IS_NPC(ch) && \ >(GET_CLASS(ch) == CLASS_MAGIC_USER)) >#define IS_CLERIC(ch) (!IS_NPC(ch) && \ > (GET_CLASS(ch) == CLASS_CLERIC)) >#define IS_THIEF(ch) (!IS_NPC(ch) && \ > (GET_CLASS(ch) == CLASS_THIEF)) >#define IS_WARRIOR(ch) (!IS_NPC(ch) && \ > (GET_CLASS(ch) == CLASS_WARRIOR)) >#define IS_STORM(ch) (!IS_NPC(ch) && \ > (GET_CLASS(ch) == CLASS_STORM)) > >#define OUTSIDE(ch) (!ROOM_FLAGGED((ch)->in_room, ROOM_INDOORS)) > +------------------------------------------------------------+ | Ensure that you have read the CircleMUD Mailing List FAQ: | | http://democracy.queensu.ca/~fletcher/Circle/list-faq.html | +------------------------------------------------------------+
This archive was generated by hypermail 2b30 : 12/08/00 PST