scripts_main.conf 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. // --------------------------------------------------------------
  15. // --------------------------------------------------------------
  16. // - Warning!! Acktung!! Awas!! gevaar!! peligro!! Âíèìàíèå! -
  17. // --------------------------------------------------------------
  18. // - All scripts here should be used at your own risk. If you -
  19. // - have edited it yourself, we are not responsible for any -
  20. // - Damages or whatsoever. Do not report any bugs unless you -
  21. // - are sure they exsist. Please provide evidence and proof. -
  22. // - eAthena developmers are not responsible for any damages or -
  23. // - disruptions of service during the service of the server -
  24. // - caused by the included scripts or for any damages -
  25. // - resulting in the use of the scripts. -
  26. // - Thanks, -
  27. // - eAthena Dev Team -
  28. // --------------------------------------------------------------
  29. // ------------------ Global Scripts Functions ------------------
  30. // !! Warning! Do NOT remove there or it breaks a lot of items !!
  31. npc: npc/other/Global_Functions.txt
  32. // --------------------------------------------------------------
  33. // ------------------------ PCLoginEvent ------------------------
  34. // NPC which is activated for every player who logs in.
  35. //npc: npc/sample/PCLoginEvent.txt
  36. // --------------------------------------------------------------
  37. // ------------------------ Script Files ------------------------
  38. import: npc/scripts_mapflags.conf
  39. import: npc/scripts_warps.conf
  40. // -- Scripts_monsters.conf is offical spawns, scripts_eamonsters.conf is modified for eAthena
  41. // -- in an attempt to have more balanced/fair spawns.
  42. import: npc/scripts_monsters.conf
  43. //import: npc/scripts_eamonsters.conf
  44. import: npc/scripts_athena.conf
  45. import: npc/scripts_jobs.conf
  46. import: npc/scripts_guild.conf
  47. // -- Your NPCs go in this file!
  48. import: npc/scripts_custom.conf
  49. // -- eAAC Scripts
  50. import: npc/scripts_eaac.conf
  51. // --------------------------------------------------------------