summaryrefslogtreecommitdiff
path: root/src/map/battleground.h
diff options
context:
space:
mode:
authorzephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-03-29 16:49:52 +0000
committerzephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-03-29 16:49:52 +0000
commitff0af0b4437fb987bc0cf2c0091942a266b8731e (patch)
treed25e7820182d6cdbce85ca23fcf2d85ef33faa77 /src/map/battleground.h
parentfcdf995bd039935c5cdf4842ea9158d44ee6de29 (diff)
downloadhercules-ff0af0b4437fb987bc0cf2c0091942a266b8731e.tar.gz
hercules-ff0af0b4437fb987bc0cf2c0091942a266b8731e.tar.bz2
hercules-ff0af0b4437fb987bc0cf2c0091942a266b8731e.tar.xz
hercules-ff0af0b4437fb987bc0cf2c0091942a266b8731e.zip
- Implementing official battleground "emblem" crossed swords icon.
- Removing the custom guild packets from Battleground as they are not needed anymore. - Scripts updated. - In this way, you get "battle cursor" over your same team, but that's how official does. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13635 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/battleground.h')
-rw-r--r--src/map/battleground.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/map/battleground.h b/src/map/battleground.h
index 97a9a19dd..946ac2692 100644
--- a/src/map/battleground.h
+++ b/src/map/battleground.h
@@ -19,8 +19,6 @@ struct battleground_data {
unsigned int bg_id;
unsigned char count;
struct battleground_member_data members[MAX_BG_MEMBERS];
- // Fake Guild Link
- struct guild *g;
// BG Cementery
unsigned short mapindex, x, y;
// Logout Event
@@ -28,18 +26,15 @@ struct battleground_data {
char die_event[50];
};
-extern struct guild bg_guild[];
-
void do_init_battleground(void);
void do_final_battleground(void);
struct battleground_data* bg_team_search(int bg_id);
-struct guild* bg_guild_get(int bg_id);
int bg_send_dot_remove(struct map_session_data *sd);
int bg_team_get_id(struct block_list *bl);
struct map_session_data* bg_getavailablesd(struct battleground_data *bg);
-int bg_create(unsigned short mapindex, short rx, short ry, int guild_index, const char *ev, const char *dev);
+int bg_create(unsigned short mapindex, short rx, short ry, const char *ev, const char *dev);
int bg_team_join(int bg_id, struct map_session_data *sd);
int bg_team_delete(int bg_id);
int bg_team_leave(struct map_session_data *sd, int flag);