Here's a quick snippet on how to add color to your prompts in comm.c Search for: static char prompt[MAX_PROMPT_LENGTH + 1]; Add below this: int clvl=0; if(d->character) clvl=COLOR_LEV(d->character); Add the colors you want in your prompts. Search for: return (prompt); Before this, add: proc_color(prompt, clvl); The last three lines of this function should look like: proc_color(prompt, clvl); return (prompt); } And that should do it. Since I did all this from memory, you should back up your comm.c file before attempting this, but it should work just fine. Also, it would be a good idea to add more PLR_x flags, so that your players have some choices with their prompt colors. Good luck :-) -FIRE ===== "This process can check if this value is zero, and if it is, it does something child-like." -- Forbes Burkowski, Computer Science 454 __________________________________________________ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/ -- +---------------------------------------------------------------+ | FAQ: http://qsilver.queensu.ca/~fletchra/Circle/list-faq.html | | Archives: http://post.queensu.ca/listserv/wwwarch/circle.html | +---------------------------------------------------------------+
This archive was generated by hypermail 2b30 : 12/03/01 PST