Re: [newbie] text based alignment

From: Ken Ray (kenr86@hotmail.com)
Date: 06/26/02


Now, I am not much of a C programmer, but I believe you have confused the
assignment operator (a single equals sign) with the equality operator (two
equals signs).  For example, the test:

if (GET_ALIGNMENT(ch) >= 750 && !IS_NPC(ch))
        align == "Saintly";

Should be

if (GET_ALIGNMENT(ch) >= 750 && !IS_NPC(ch))
        align = "Saintly";

Ken

_________________________________________________________________
MSN Photos is the easiest way to share and print your photos:
http://photos.msn.com/support/worldwide.aspx

--
   +---------------------------------------------------------------+
   | FAQ: http://qsilver.queensu.ca/~fletchra/Circle/list-faq.html |
   | Archives: http://post.queensu.ca/listserv/wwwarch/circle.html |
   | Newbie List:  http://groups.yahoo.com/group/circle-newbies/   |
   +---------------------------------------------------------------+



This archive was generated by hypermail 2b30 : 06/25/03 PDT