diff options
author | Amir El Sayed <aes@basecom.de> | 2013-09-12 20:31:35 +0200 |
---|---|---|
committer | Amir El Sayed <aes@basecom.de> | 2013-09-18 21:16:25 +0200 |
commit | 6cf032de5d12a33f04e6b3eb5dc4d71c17554ce3 (patch) | |
tree | 74b33003f7fcd35c27248c1c8d668c1295f0de91 /src/map/clif.h | |
parent | eb10f355f7e228b59011326a7f84da2e593affea (diff) | |
download | hercules-6cf032de5d12a33f04e6b3eb5dc4d71c17554ce3.tar.gz hercules-6cf032de5d12a33f04e6b3eb5dc4d71c17554ce3.tar.bz2 hercules-6cf032de5d12a33f04e6b3eb5dc4d71c17554ce3.tar.xz hercules-6cf032de5d12a33f04e6b3eb5dc4d71c17554ce3.zip |
Fixed Ranking Lists for 2013 clients
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index 73d3611a2..3a42b54da 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -339,6 +339,13 @@ typedef enum useskill_fail_cause { // clif_skill_fail USESKILL_FAIL_THERE_ARE_NPC_AROUND = 83, }useskill_fail_cause; +enum rank_type { + RANKTYPE_BLACKSMITH = 0, + RANKTYPE_ALCHEMIST = 1, + RANKTYPE_TAEKWON = 2, + RANKTYPE_PK = 3 //Not supported yet +}; + enum clif_messages { SKILL_CANT_USE_AREA = 0x536, ITEM_CANT_USE_AREA = 0x537, @@ -597,6 +604,9 @@ struct clif_interface { void (*fame_blacksmith) (struct map_session_data *sd, int points); void (*fame_alchemist) (struct map_session_data *sd, int points); void (*fame_taekwon) (struct map_session_data *sd, int points); + void (*ranklist) (struct map_session_data *sd, int16 rankingType); + void (*update_rankingpoint) (struct map_session_data *sd, int16 rankingtype, int point); + void (*parse_ranklist) (int fd,struct map_session_data *sd); void (*hotkeys) (struct map_session_data *sd); int (*insight) (struct block_list *bl,va_list ap); int (*outsight) (struct block_list *bl,va_list ap); |