Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #981 from rathena/woe_te-restrictions
WoE:Training Edition implementation * Added a new version of WoE, WoE:TE which forbids 3rd class and 2nd expanded class from joining. - 10 new WoE castles. - New zone for job_noenter_map.txt - Various items are restricted. * New monsters for the guild dungeon.
- Loading branch information
Showing
with
7,107 additions
and 315 deletions.
- +1 −1 conf/battle/items.conf
- +8 −2 conf/msg_conf/map_msg.conf
- +26 −9 db/castle_db.txt
- +1 −0 db/import-tmpl/job_noenter_map.txt
- +2 −0 db/pre-re/item_noequip.txt
- +1 −0 db/pre-re/job_noenter_map.txt
- +2 −7 db/pre-re/skill_nocast_db.txt
- +3 −2 db/re/item_db.txt
- +212 −96 db/re/item_noequip.txt
- +67 −0 db/re/job_noenter_map.txt
- +48 −48 db/re/mob_db.txt
- +1 −1 db/re/mob_race2_db.txt
- +454 −0 db/re/mob_skill_db.txt
- +18 −0 db/re/quest_db.txt
- +41 −5 db/re/skill_nocast_db.txt
- +284 −0 db/status_disabled.txt
- +13 −0 doc/mapflags.txt
- +40 −9 doc/script_commands.txt
- +2 −0 npc/mapflag/gvg.txt
- +182 −0 npc/re/guides/guides_woe_te.txt
- +1,218 −0 npc/re/guild3/agit_main_te.txt
- +51 −0 npc/re/guild3/agit_start_te.txt
- +72 −0 npc/re/guild3/te_aldecas1.txt
- +67 −0 npc/re/guild3/te_aldecas2.txt
- +70 −0 npc/re/guild3/te_aldecas3.txt
- +72 −0 npc/re/guild3/te_aldecas4.txt
- +71 −0 npc/re/guild3/te_aldecas5.txt
- +65 −0 npc/re/guild3/te_prtcas01.txt
- +67 −0 npc/re/guild3/te_prtcas02.txt
- +65 −0 npc/re/guild3/te_prtcas03.txt
- +65 −0 npc/re/guild3/te_prtcas04.txt
- +63 −0 npc/re/guild3/te_prtcas05.txt
- +18 −1 npc/re/mapflag/gvg.txt
- +15 −0 npc/re/mapflag/nobranch.txt
- +16 −9 npc/re/mapflag/noicewall.txt
- +15 −0 npc/re/mapflag/nomemo.txt
- +17 −8 npc/re/mapflag/nosave.txt
- +23 −0 npc/re/mapflag/noteleport.txt
- +24 −0 npc/re/mapflag/nowarp.txt
- +15 −8 npc/re/mapflag/nowarpto.txt
- +7 −8 npc/re/mapflag/restricted.txt
- +144 −0 npc/re/merchants/te_merchant.txt
- +30 −0 npc/re/mobs/dungeons/teg_dun.txt
- +27 −0 npc/re/other/Global_Functions.txt
- +1,007 −0 npc/re/quests/woe_te/te_goditem_alde1.txt
- +1,004 −0 npc/re/quests/woe_te/te_goditem_prt01.txt
- +42 −0 npc/re/quests/woe_te/te_mission_alde.txt
- +568 −0 npc/re/quests/woe_te/te_mission_main.txt
- +41 −0 npc/re/quests/woe_te/te_mission_prt.txt
- +9 −1 npc/re/scripts_athena.conf
- +13 −0 npc/re/scripts_guild.conf
- +1 −0 npc/re/scripts_monsters.conf
- +288 −1 npc/re/warps/guildcastles.txt
- +73 −23 src/map/atcommand.c
- +2 −2 src/map/battle.c
- +1 −1 src/map/clif.c
- +47 −23 src/map/guild.c
- +4 −0 src/map/guild.h
- +3 −3 src/map/itemdb.c
- +1 −1 src/map/log.c
- +3 −2 src/map/map.c
- +23 −10 src/map/map.h
- +16 −1 src/map/mob.c
- +19 −0 src/map/npc.c
- +3 −2 src/map/pc.c
- +210 −17 src/map/script.c
- +3 −0 src/map/script_constants.h
- +14 −8 src/map/skill.c
- +9 −6 src/map/status.c
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.