Permalink
8 comments
on commit
sign in to comment.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Release of Doram Race!
* Requires client 2015-10-01 and newer. * All skills are usable from from the base list to all 3 branch types. -- Some skills still need their official activation chance and durations. * Adjusted the char-server start point and start item split functions to be more dynamic. Thanks to Rytech and @NovaRagnarok for their information!
- Loading branch information
Showing
with
815 additions
and 94 deletions.
- +1 −0 conf/battle/player.conf
- +5 −1 conf/char_athena.conf
- +1 −1 conf/help.txt
- +1 −0 conf/msg_conf/map_msg.conf
- +2 −1 conf/msg_conf/map_msg_chn.conf
- +2 −1 conf/msg_conf/map_msg_frn.conf
- +18 −0 conf/msg_conf/map_msg_grm.conf
- +1 −0 conf/msg_conf/map_msg_idn.conf
- +2 −1 conf/msg_conf/map_msg_por.conf
- +3 −1 conf/msg_conf/map_msg_rus.conf
- +2 −1 conf/msg_conf/map_msg_spn.conf
- +2 −1 conf/msg_conf/map_msg_tha.conf
- +52 −6 db/const.txt
- +2 −0 db/job_db2.txt
- +2 −0 db/re/item_db.txt
- +6 −0 db/re/job_basehpsp_db.txt
- +2 −0 db/re/job_db1.txt
- +2 −2 db/re/job_exp.txt
- +41 −0 db/re/skill_cast_db.txt
- +30 −0 db/re/skill_db.txt
- +3 −0 db/re/skill_nocast_db.txt
- +25 −0 db/re/skill_require_db.txt
- +24 −0 db/re/skill_tree.txt
- +4 −0 db/re/skill_unit_db.txt
- +2 −1 doc/item_db.txt
- +73 −40 src/char/char.c
- +3 −3 src/char/char.h
- +2 −0 src/common/mmo.h
- +58 −4 src/map/battle.c
- +1 −0 src/map/battle.h
- +10 −9 src/map/clif.c
- +2 −0 src/map/itemdb.c
- +2 −0 src/map/itemdb.h
- +2 −0 src/map/map.c
- +1 −0 src/map/map.h
- +23 −3 src/map/pc.c
- +1 −1 src/map/pc.h
- +3 −0 src/map/script.c
- +27 −0 src/map/script_constants.h
- +176 −11 src/map/skill.c
- +28 −0 src/map/skill.h
- +135 −5 src/map/status.c
- +31 −0 src/map/status.h
- +2 −1 src/map/unit.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
| @@ -719,6 +719,7 @@ | ||
| 694: Hanbok | ||
| 695: Rebellion | ||
| 696: Oktoberfest | ||
| 697: Summoner | ||
|
|
||
| // @vip | ||
| 700: Usage: @vip <time> <character name> | ||
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
| @@ -672,7 +672,8 @@ | ||
| 693: 魅影追蹤者 T | ||
| 694: 韓服 | ||
| 695: Rebellion | ||
| 696: Oktoberfest | ||
| 697: Summoner | ||
|
|
||
| //------------------------------------ | ||
| // More atcommands message | ||
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
| @@ -684,7 +684,8 @@ | ||
| 693: Shadow Chaser T | ||
| 694: Hanbok | ||
| 695: Rebellion | ||
| 696: Oktoberfest | ||
| 697: Summoner | ||
|
|
||
| //------------------------------------ | ||
| // More atcommands message | ||
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
| @@ -718,6 +718,7 @@ | ||
| 694: Hanbok | ||
| 695: Rebellion | ||
| 696: Oktoberfest | ||
| 697: Summoner | ||
|
|
||
| // @vip | ||
| 700: Penggunaan: @vip <waktu> <nama pemain> | ||
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
| @@ -664,7 +664,8 @@ | ||
| 693: Renegado T | ||
| 694: Hanbok | ||
| 695: Rebellion | ||
| 696: Oktoberfest | ||
| 697: Summoner | ||
|
|
||
| //------------------------------------ | ||
| // Mais mensagens de atcommand | ||
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
| @@ -683,8 +683,10 @@ | ||
| 693: Shadow Chaser T | ||
| 694: Hanbok | ||
| 695: Rebellion | ||
| 696: Oktoberfest | ||
| 697: Summoner | ||
|
|
||
| //698-899 �� ������������ | ||
|
|
||
| //------------------------------------ | ||
| // ��������� ��������� ������ | ||
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
| @@ -671,7 +671,8 @@ | ||
| 693: Shadow Chaser T | ||
| 694: Hanbok | ||
| 695: Rebellion | ||
| 696: Oktoberfest | ||
| 697: Summoner | ||
|
|
||
| //------------------------------------ | ||
| // M�s mensajes relacionados con comandos | ||
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
| @@ -678,7 +678,8 @@ | ||
| 693: Shadow Chaser T | ||
| 694: Hanbok | ||
| 695: Rebellion | ||
| 696: Oktoberfest | ||
| 697: Summoner | ||
|
|
||
| //------------------------------------ | ||
| // More atcommands message | ||
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.
daa9e01There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm getting an error on char server after this commit. Please see the latest post in this topic: https://rathena.org/board/topic/105106-2015-10-29aragexe-packet-ver-issues/?p=299052
daa9e01There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@aleos89 WFIFOSET: Maximum write buffer size for client connection 7 exceeded, most likely caused by packet 0x099d
daa9e01There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here, just updated to lastest.
WFIFOSET: Maximum write buffer size for client connection 7 exceeded, most likely caused by packet 0x099d (len=2062)
daa9e01There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hellow rathena dev any one here whats this for export_constant?
daa9e01There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i got it.. aea025e revert this commit and u can play
daa9e01There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done and it's working.
daa9e01There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
btw doram job level is quite hard to level up. base level 72 , job only 7. lol
daa9e01There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ive create an issue here #1080