scripts_main.conf 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. // ------------------------ PCLoginEvent ------------------------
  38. // NPC which is activated for every player who logs in.
  39. //npc: npc/sample/PCLoginEvent.txt
  40. // --------------------------------------------------------------
  41. // ------------------------ Script Files ------------------------
  42. import: npc/scripts_mapflags.conf
  43. import: npc/scripts_warps.conf
  44. // -- scripts_monsters.conf is official spawns
  45. // -- scripts_eamonsters.conf is modified for eAthena in an attempt to have more balanced/fair spawns
  46. // -- script_jmonsters.conf is the official jRO spawns which differ from kRO ones
  47. import: npc/scripts_monsters.conf
  48. //import: npc/scripts_eamonsters.conf
  49. //import: npc/scripts_jmonsters.conf
  50. import: npc/scripts_athena.conf
  51. import: npc/scripts_jobs.conf
  52. import: npc/scripts_guild.conf
  53. // -- Your NPCs go in this file!
  54. import: npc/scripts_custom.conf
  55. // -- eAAC Scripts
  56. import: npc/scripts_eaac.conf
  57. // --------------------------------------------------------------