[1] | 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 | // -- scripts_monsters.conf is official spawns |
---|
| 31 | // -- scripts_eamonsters.conf is modified for eAthena in an attempt to have more balanced/fair spawns |
---|
| 32 | // -- script_jmonsters.conf is the official jRO spawns which differ from kRO ones |
---|
| 33 | import: npc/scripts_monsters.conf |
---|
| 34 | //import: npc/scripts_eamonsters.conf |
---|
| 35 | //import: npc/scripts_jmonsters.conf |
---|
| 36 | import: npc/scripts_athena.conf |
---|
| 37 | import: npc/scripts_jobs.conf |
---|
| 38 | import: npc/scripts_guild.conf |
---|
| 39 | // -- Your NPCs go in this file! |
---|
| 40 | import: npc/scripts_custom.conf |
---|
| 41 | // -- eAAC Scripts |
---|
| 42 | import: npc/scripts_eaac.conf |
---|
| 43 | // -------------------------------------------------------------- |
---|