scripts_main.conf 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. // --------------------------------------------------------------
  20. // - Warning!! Acktung!! Awas!! gevaar!! peligro!! Âíèìàíèå! -
  21. // --------------------------------------------------------------
  22. // - All scripts here should be used at your own risk. If you -
  23. // - have edited it yourself, we are not responsible for any -
  24. // - Damages or whatsoever. Do not report any bugs unless you -
  25. // - are sure they exist. Please provide evidence and proof. -
  26. // - eAthena developers are not responsible for any damages or -
  27. // - disruptions of service during the service of the server -
  28. // - caused by the included scripts or for any damages -
  29. // - resulting in the use of the scripts. -
  30. // - Thanks, -
  31. // - eAthena Dev Team -
  32. // --------------------------------------------------------------
  33. // ------------------ Global Scripts Functions ------------------
  34. // Utilitarian functions used by many scripts.
  35. npc: npc/other/Global_Functions.txt
  36. // --------------------------------------------------------------
  37. // -------------------- Cash Shop Functions --------------------
  38. // Used by 4 items in the Item Database.
  39. npc: npc/other/CashShop_Functions.txt
  40. // --------------------------------------------------------------
  41. // ------------------------ PCLoginEvent ------------------------
  42. // NPC which is activated for every player who logs in.
  43. //npc: npc/sample/PCLoginEvent.txt
  44. // --------------------------------------------------------------
  45. // ------------------------ Script Files ------------------------
  46. import: npc/scripts_mapflags.conf
  47. import: npc/scripts_warps.conf
  48. // -- scripts_monsters.conf is official spawns
  49. // -- scripts_eamonsters.conf is modified for eAthena in an attempt to have more balanced/fair spawns
  50. // -- script_jmonsters.conf is the official jRO spawns which differ from kRO ones
  51. import: npc/scripts_monsters.conf
  52. //import: npc/scripts_eamonsters.conf
  53. //import: npc/scripts_jmonsters.conf
  54. import: npc/scripts_athena.conf
  55. import: npc/scripts_jobs.conf
  56. import: npc/scripts_guild.conf
  57. // -- Your NPCs go in this file!
  58. import: npc/scripts_custom.conf
  59. // -- eAAC Scripts
  60. import: npc/scripts_eaac.conf
  61. // --------------------------------------------------------------