lpfManiak

skype parser for mircstats?

May 7th, 2013
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. [mIRCStats parser configuration file]
  2.  
  3. // SKYPE parser
  4. // Updated 3 Apr 2012: Added username parsing from normal line
  5.  
  6. // File information (these lines are shown in mIRCStats)
  7.  
  8. [File Description]
  9. SKYPE
  10.  
  11. [Author]
  12. lpf
  13.  
  14. // Allowed variables are:
  15. //
  16. // Single-word variables:
  17. // %nick%, %nick2%, %addr%, %channelname%, %monthname%, %ampm%, %anyword%
  18. //
  19. // Multi-word name variables:
  20. // %name%, %anyname% (can be used instead of %nick% or %anyword%):
  21. //
  22. // Numeric variables:
  23. // %hour%, %minute%, %second%,
  24. // %day%, %month%, %year%, %anynum%
  25. //
  26. // Complex multi-word variables (only one allowed per line):
  27. // %text%, %mode%, %anytext%
  28.  
  29. // Main rules:
  30. // - Variables have to be delimited by some non-variable characters like [%hour%:%minute%]
  31. // (unless they are fixed length ones like %2hour% (2-digit numeric hour).
  32. // - You can only use one complex multi-word variable per line.
  33. // - Don't use the same variable multiple times on any line (except %anyword%, %anyname%, %anynum%).
  34. // - Use "Test Parser" option to verify your new parsing rules ("Log parser"-settings page).
  35. // - Check mIRCStats help for more info ("Setting options/Log parser")
  36.  
  37.  
  38. // ----------------Parser configuration rules start here-------------------------------
  39.  
  40. // timestamp parsing rules:
  41.  
  42. [timestamp]
  43. [%day%/%month%/%year% %hour%:%minute%:%second%]
  44. [%day%/%month%/%year% %hour%:%minute%:%second% | Edited %anyword%]
  45. [%day%/%month%/%year% %hour%:%minute%:%second% | Edited %anyword%]
  46. [%day%/%month%/%year% %hour%:%minute%:%second% | Removed %anyword%]
  47.  
  48.  
  49. // Parsing patterns in order of probability:
  50.  
  51. [Normal line]
  52. %nick%: %text%
  53. %name% %anyname%: %text%
  54.  
  55. [Topic change]
  56. *** %nick% has changed conversation topic to "%text%"
Advertisement
Add Comment
Please, Sign In to add comment