diff options
author | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-03-17 22:32:49 +0000 |
---|---|---|
committer | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-03-17 22:32:49 +0000 |
commit | 0884f746a4c82c31b7d98d2f2f95ad9508d01525 (patch) | |
tree | 51c8da822a92a07fd87d83b250c19bea12978b2b /src/map/clif.h | |
parent | 132b6ddad9dcc9537fd98b08fc928e5568689c05 (diff) | |
download | hercules-0884f746a4c82c31b7d98d2f2f95ad9508d01525.tar.gz hercules-0884f746a4c82c31b7d98d2f2f95ad9508d01525.tar.bz2 hercules-0884f746a4c82c31b7d98d2f2f95ad9508d01525.tar.xz hercules-0884f746a4c82c31b7d98d2f2f95ad9508d01525.zip |
- Implemented official battlechat packets (thanks to Pakpil).
- Implemented the scoreboard packets (thanks to Pakpil).
- Updates to Tierra Valley according to official info.
* There are no barricades around each base, barricades are in the middle left path.
* There is another graveyard used for the owners of the middle base, with faster spawn (each 20 seconds).
* I added a flag respawn in the middle, currently I don't know if this if official or not, but it allows each team recapture the middle base.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13593 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index 87c6a2953..6356a0c89 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -343,14 +343,16 @@ int clif_bg_hp(struct map_session_data *sd); int clif_bg_xy(struct map_session_data *sd); int clif_bg_xy_remove(struct map_session_data *sd); int clif_bg_belonginfo(struct map_session_data *sd); -int clif_bg_guild_id(struct block_list *bl); -int clif_bg_emblem_id(struct block_list *bl); +int clif_visual_guild_id(struct block_list *bl); +int clif_visual_emblem_id(struct block_list *bl); int clif_bg_emblem(struct map_session_data *sd, struct guild *g); int clif_bg_memberlist(struct map_session_data *sd); int clif_bg_leave(struct map_session_data *sd, const char *name, const char *mes); int clif_bg_leave_single(struct map_session_data *sd, const char *name, const char *mes); -int clif_bg_message(struct battleground_data *bg, int account_id, const char *mes, int len); +int clif_bg_message(struct battleground_data *bg, const char *name, const char *mes, int len); int clif_bg_expulsion_single(struct map_session_data *sd, const char *name, const char *mes); +int clif_bg_updatescore(int m); +int clif_bg_updatescore_single(struct map_session_data *sd); // atcommand int clif_displaymessage(const int fd,const char* mes); |