plugins.conf 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //====================================================
  2. //= _ _ _
  3. //= | | | | | |
  4. //= | |_| | ___ _ __ ___ _ _| | ___ ___
  5. //= | _ |/ _ \ '__/ __| | | | |/ _ \/ __|
  6. //= | | | | __/ | | (__| |_| | | __/\__ \
  7. //= \_| |_/\___|_| \___|\__,_|_|\___||___/
  8. //=
  9. //= http://herc.ws/board/
  10. //====================================================
  11. //== Topic Discussion ================================
  12. //== http://herc.ws/board/topic/549-introducing-hercules-plugin-manager/
  13. //====================================================
  14. //== Description =====================================
  15. //The plugin system allows you to create customized scripts
  16. //outside of the source. These scripts won't conflict with any
  17. //future source updates - think of it as a /conf/import/ for the source.
  18. //====================================================
  19. /* --------------- Format ---------------
  20. After you have listed your plugin(s) in "quotations",
  21. you need to put in a comma, to separate the plugins.
  22. -----------------------------------------
  23. plugins_list: [
  24. "example",
  25. "other",
  26. ]
  27. -----------------------------------------
  28. Please note that your scripts need to be saved
  29. in the .c (source code) extension and placed in the /src/plugin/ folder.
  30. -----------------------------------------
  31. */
  32. plugins_list: [
  33. /* Enable HPMHooking when plugins in use rely on Hooking */
  34. "HPMHooking",
  35. //"db2sql",
  36. "libevol_char",
  37. "libevol_login",
  38. "libevol_map",
  39. //"other",
  40. ]