Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.93 KB | None | 0 0
  1. [Sections]
  2. ## Maximum of 25 different credit sections ##
  3. #
  4. # <alias> = <credit section #> <path>
  5. # <alias> = <credit section #> <stats section #> <path>
  6. # <alias> = <credit section #> <stats section #> <share section #> <path>
  7. #
  8. # <alias> -> name to use for this path
  9. # <credit section #> -> section number to use for looking up user's ratio
  10. # <stats section #> -> section number to apply up/down statistics to, if
  11. # not defined then same as credit section.
  12. # <share section #> -> section number to add/subtract credits, if not
  13. # defined then same as credit section
  14. #
  15. # Sections are looked up one of two ways: by path or by stats section.
  16. # In either case the first match found by processing the entries in
  17. # the order listed is used. Thus the first path that matches the current
  18. # directory determines the credit, stat, and share section numbers so
  19. # more specific paths should come first. When using the cookie
  20. # %[SectionName(#)] the <alias> field of the first line with a matching
  21. # <stats section #> is the name used.
  22. #
  23. # Examples:
  24. #
  25. # Default = 0 0 0 *
  26. #
  27. # The trivial case. Just one section defined. Nice and simple.
  28. #
  29. # Movies = 1 1 0 /Xvid/*
  30. # Movies = 1 1 0 /DVDR/*
  31. # Default = 0 0 0 *
  32. #
  33. # This server has two sections (0-1) and shows how you can have multiple
  34. # distinct paths be part of the same section. Notice the 0 as the third
  35. # integer for all three entries. This means that credits for up/downloading
  36. # are controlled by the user's section 0 credits but the ratio to apply
  37. # varies based on the user's associated section ratio. So if the user has a
  38. # 1:3 ratio for both section 0 and 1 it will appear as if the server isn't
  39. # using sections at all since their credits will works the same anywhere.
  40. # However it's possible that a user could have 1:3 ratio for section 1, and
  41. # leech for section 0 which would mean that particular user needs credits
  42. # for movie downloading but can grab anything else for free. The second
  43. # integer means movie up/down transfer statistics are tracked separately
  44. # which is particularly useful in this case with some users having leech
  45. # on particular sections.
  46. #
  47. # Games = 3 2 2 /XBOX/*
  48. # Games = 2 2 2 /Games/*
  49. # Movies = 1 1 0 /Xvid/*
  50. # Movies = 1 1 0 /DVDR/*
  51. # Default = 0 0 0 *
  52. #
  53. # This setup defines four sections (0-3). The key here is that the "Games"
  54. # section is actually made up of two sections that share credits distinct
  55. # from the rest of the server and can apply different up/down ratios based
  56. # on whether it's a PC game or and XBOX game.
  57. #
  58. # Games = 0 2 0 /XBOX/*
  59. # Games = 0 2 0 /Games/*
  60. # Movies = 0 1 0 /Xvid/*
  61. # Movies = 0 1 0 /DVDR/*
  62. # Default = 0 0 0 *
  63. #
  64. # This setup is actually a really simple case. It uses section 0 for ratio
  65. # and credits everywhere, but tracks up/down statistics based on path.
  66. # This can be rather useful information when viewing the userfile to
  67. # see who up/downs where.
  68.  
  69. Default = 0 0 0 *
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement