home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / WWIVMODS / MODSUNKN.ZIP / NUKE.DOC < prev    next >
Text File  |  1989-05-24  |  3KB  |  49 lines

  1. /****************************************************************************/
  2. /*                        Nuke dem bad users                                */
  3. /*                             ON-LINE!                                     */
  4. /*   By: Falcon                                                             */
  5. /*   Sysop - Heaven's Edge                                                  */
  6. /*   Thanks to Master of Servents fot getting me the 'CASE' for SHIFT-F9    */
  7. /*                                                                          */
  8. /****************************************************************************/
  9.  
  10. /*==========================================================================*/
  11. This mod will print out a nasty little picture then hangup and delete the
  12. current user on-line.  I have found that there have been some users who just
  13. whish to be plain stupid and act like jerks on the system.  Instead of
  14. deleting them quietly, when they log on I press Shift-F9 and they get a nice
  15. little picture and I get rid of a real jerk in a satisfying way.
  16.  
  17. This is real easy to install.
  18. Copy the file 'Nuke.msg' to your gfiles dir.
  19. Load up CONIO.C ans search for "void skey" and in skey search for case 103
  20. right after case 103 and the mod
  21.  
  22.         void skey                                           /* Search */
  23.  
  24.         case 103: /* Ctrl-F10 */                            /* Search */
  25.           if (chatting==0)
  26.             chat1("",0);
  27.           else
  28.             chatting=0;
  29.           break;
  30.     case 92: /* Shift-F9 */                              /* ADD */
  31.       nl();                                              /* ADD */
  32.       printfile("NUKE"); nl();                           /* ADD */
  33.       prt(6,"YOU ARE NOW BEING DELETED!"); nl();         /* ADD */
  34.       prt(6,"HAVE FUN!"); nl();                          /* ADD */
  35.           hangup=1;                                          /* ADD */
  36.       dtr(0);                                            /* ADD */
  37.       deluser(usernum);                                  /* ADD */
  38.           checkhangup();                                     /* ADD */
  39.       sysoplog("#-#-# User was deleted on-line);         /* ADD */
  40.       break;                                             /* ADD */
  41.         case 93: /* Shift-F10 */
  42.           pr_wait(1);
  43.           savescreen(&screensave);
  44.  
  45. Now hit F9 and compile.
  46. If some user acts like a jerk give him the BIRDY!
  47. SHIFT-F9
  48. /*=========================================================================*/
  49.