scripts_main.conf 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // --------------------------------------------------------------
  2. // - rAthena Renewal 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 rAthena 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. // -------------------- Cash Shop Functions ---------------------
  23. // Used by cash shop items in the Item Database.
  24. npc: npc/other/CashShop_Functions.txt
  25. // ------------------- Common Script Files ----------------------
  26. import: npc/scripts_athena.conf
  27. import: npc/scripts_guild.conf
  28. import: npc/scripts_jobs.conf
  29. import: npc/scripts_mapflags.conf
  30. import: npc/scripts_monsters.conf
  31. import: npc/scripts_warps.conf
  32. // ------------------- Renewal Script Files ---------------------
  33. import: npc/re/scripts_athena.conf
  34. import: npc/re/scripts_guild.conf
  35. import: npc/re/scripts_jobs.conf
  36. import: npc/re/scripts_mapflags.conf
  37. import: npc/re/scripts_monsters.conf
  38. import: npc/re/scripts_warps.conf
  39. // Test for regressions and such
  40. //import: npc/scripts_test.conf
  41. // ------------------- Custom Script Files ----------------------
  42. // - Your NPCs go in this file!
  43. import: npc/scripts_custom.conf