1 / 182

; KILL.PPE by Dan Shore - SysOp

; KILL.PPE by Dan Shore - SysOp. ; The Shoreline BBS. ;. ; Purpose: This PPE will allow the KILL command to accept more than. ; one message number at a time. ;. ; KILL.PPE will accept multiple numbers or ranges of numbers.

ian-chavez
Download Presentation

; KILL.PPE by Dan Shore - SysOp

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. ; KILL.PPE by Dan Shore - SysOp

  2. ; The Shoreline BBS

  3. ;

  4. ; Purpose: This PPE will allow the KILL command to accept more than

  5. ; one message number at a time.

  6. ;

  7. ; KILL.PPE will accept multiple numbers or ranges of numbers

  8. ; either when stacking at the main command line or when

  9. ; prompted for "Enter message number to kill".

  10. ;

  11. ; For example: "1 2 3" or "1-3" are acceptable entries.

  12. ;

  13. ;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ

  14. ;

  15. ; Revised on : 11/02/95

  16. ; Revised by : Dan Shore

  17. ; Purpose : Modification due to PCB TOKCOUNT and GETTOKEN()

  18. ; limitations of only reading upto the 256th

  19. ; character of a BIGSTR

  20. ;

  21. ;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ

  22. ;

  23. ; To install:

  24. ;

  25. ; 1) Edit your CMD.LST file(s) to add this:

  26. ;

  27. ; Charges Per PPE/MNU File Specification -or-

  28. ; Command Sec Minute Use Keystroke Substitution

  29. ; ÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ

  30. ; 1) K 5 0 0 C:\PCB\PPE\KILL\KILL.PPE

  31. ;

  32. ; Note: You may have to change the pathname to the PPE.

  33. ;

  34. ;

  35. ;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ

  36. STRING main_prompt ' Generic input prompt

  37. STRING stack_var ' used for parsing stacked input

  38. STRING temp_var ' used when parsing range input

  39. STRING hold ' Generic string variable

  40. STRING temp ' Generic string variable

  41. STRING tag_msg_file ' Path/filename of tagged msgs

  42. BIGSTR user_input ' Generic user input - used also to hold tag list

  43. INTEGER hold_num ' Generic integer used for range input

  44. INTEGER count ' counts command line parms

  45. INTEGER start ' starting number of range

  46. INTEGER end ' ending number of range

  47. BOOLEAN tagged_files ' TRUE if there are files tagged

  48. ;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ

  49. :MAIN

  50. '

More Related