scripts_main.conf 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. // --------------------------------------------------------------
  2. // - eAthena Primary Scripts File -
  3. // --------------------------------------------------------------
  4. // The idea of this new system is to make scripts more organized
  5. // since the old system was rather messy with all the NPCs in one
  6. // file. Now scripts are organized in to files arraged by type.
  7. // Custom scripts are now in scripts_custom.conf, all other
  8. // scripts are deemed as 'official'. You should place your NPCs
  9. // in to scripts_custom.conf to follow the trend.
  10. //
  11. // Thanks,
  12. // Ancyker and the rest of the eAthena Team
  13. //
  14. // Note: "Comments" are all text on the right side of a double slash "//"
  15. // Whatever text is commented will not be parsed by the servers, and serves
  16. // only as information/reference.
  17. //
  18. // --------------------------------------------------------------
  19. // ------------------ Global Scripts Functions ------------------
  20. // Utilitarian functions used by many scripts.
  21. npc: npc/other/Global_Functions.txt
  22. // --------------------------------------------------------------
  23. // -------------------- Cash Shop Functions --------------------
  24. // Used by cash shop items in the Item Database.
  25. npc: npc/other/CashShop_Functions.txt
  26. // --------------------------------------------------------------
  27. // ------------------------ Script Files ------------------------
  28. import: npc/scripts_mapflags.conf
  29. import: npc/scripts_warps.conf
  30. import: npc/scripts_monsters.conf
  31. import: npc/scripts_athena.conf
  32. import: npc/scripts_jobs.conf
  33. import: npc/scripts_guild.conf
  34. // -- Your NPCs go in this file!
  35. import: npc/scripts_custom.conf
  36. // -- eAAC Scripts
  37. import: npc/scripts_eaac.conf
  38. // --------------------------------------------------------------