home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / WWIVMODS / STMPMOD.ZIP / STIMP08.MOD < prev    next >
Text File  |  1992-08-07  |  2KB  |  69 lines

  1. ┌────────────────────────────────────────────────────────────────────────┐
  2. │Mod : STIMP08.MOD                                                       │
  3. │Version: WWIV 4.20                                                      │
  4. │Author : Stimpy #1 @1002 NuclearArmsNET 442-1601                        │
  5. │Description: Puts a rank by users names in posts and E-mail.            │
  6. │Diffculty: ▓░░░░░░░░░                                                   │
  7. │Disclaimer: Always backup your source. If you get an incredible urge to │
  8. │            sautee your cat, it's not my fault!                         │
  9. └────────────────────────────────────────────────────────────────────────┘
  10.  
  11.    = existing line
  12.    + add line
  13.    - deleted line
  14.    * change line
  15.  
  16. In MSGBASE.C
  17.  
  18. void inmsg()
  19.  
  20. =    if (real_name)
  21. =      addline(b,thisuser.realname,&l1);
  22. *    else {
  23. *      strcpy(s,nam1(&thisuser,usernum,syscfg.systemnumber));
  24. +      if (actsl==255)
  25. +       sprintf(s1," 1[5Supreme Being1]");
  26. +      if (actsl<255)
  27. +    sprintf(s1," 1[5Immortal1]");
  28. +      if (actsl<70)
  29. +    sprintf(s1," 1[5Average Joe Schmoe1]");
  30. +      if (actsl<50)
  31. +    sprintf(s1," 1[5No Comment1]");
  32. +      if (actsl<11)
  33. +    sprintf(s1," 1[5New User1]");
  34. +      if (usernum==1)
  35. +    sprintf(s1," 1[5Goddess1]");
  36. +      if (usernum==3)
  37. +    sprintf(s1," 1[5Enzyme Boy1]");
  38. +      if (usernum==2)
  39. +    sprintf(s1," 1[5God1]");
  40. +      if (usernum==44)
  41. +    sprintf(s1," 1[5Supreme Being1]");
  42. +      if (usernum==5)
  43. +    sprintf(s1," 1[5Net Coordinator1]");
  44. +      if (usernum==129)
  45. +    sprintf(s1," 1[5Sphincter Boy1]");
  46. +      if (usernum==4)
  47. +    sprintf(s1," 1[5Stud Boy!1]");
  48. +      strcat(s,s1);
  49. +      addline(b,s,&l1);}
  50. =    time(&ll);
  51. =    strcpy(s,ctime(&ll));
  52. =    s[strlen(s)-1]=0;
  53. =    addline(b,s,&l1);
  54. =    if (irt[0]) {
  55. =      sprintf(s,"[RE]: %s",irt);
  56. =      addline(b,s,&l1);
  57. =      if (irt_name[0]) {
  58. =    sprintf(s,"[BY]: %s",irt_name);
  59. =    addline(b,s,&l1);
  60. =      }
  61. =      addline(b,"",&l1);
  62. =    }
  63.  
  64. You can change the comments ie. Immortal, Supreme Being, etc... but don't
  65. make them too long because if you do then it will shift the date down
  66. inside the message. You can also take out the "if(usernum==#)" statements,
  67. or add more if you wish.
  68.  
  69. Now save and re-compile.