123456789101112131415161718192021222324252627282930313233343536373839 |
- // Copyright (c) Athena Dev Teams - Licensed under GNU GPL
- // For more information, see LICENCE in the main folder
- #ifndef _INT_GUILD_SQL_H_
- #define _INT_GUILD_SQL_H_
- #define GS_BASIC 0x0001
- #define GS_MEMBER 0x0002
- #define GS_POSITION 0x0004
- #define GS_ALLIANCE 0x0008
- #define GS_EXPULSION 0x0010
- #define GS_SKILL 0x0020
- #define GS_EMBLEM 0x0040
- #define GS_CONNECT 0x0080
- #define GS_LEVEL 0x0100
- #define GS_MES 0x0200
- #define GS_MASK 0x03FF
- #define GS_BASIC_MASK (GS_BASIC | GS_EMBLEM | GS_CONNECT | GS_LEVEL | GS_MES)
- #define GS_REMOVE 0x8000
- struct guild;
- struct guild_castle;
- int inter_guild_parse_frommap(int fd);
- int inter_guild_sql_init(void);
- void inter_guild_sql_final(void);
- int inter_guild_mapif_init(int fd);
- int inter_guild_leave(int guild_id,int account_id,int char_id);
- int mapif_parse_BreakGuild(int fd,int guild_id);
- int inter_guild_broken(int guild_id);
- int inter_guild_sex_changed(int guild_id,int account_id,int char_id, int gender);
- int inter_guild_CharOnline(int char_id, int guild_id);
- int inter_guild_CharOffline(int char_id, int guild_id);
- //For the TXT->SQL converter.
- int inter_guild_tosql(struct guild *g,int flag);
- int inter_guildcastle_tosql(struct guild_castle *gc);
- #endif /* _INT_GUILD_SQL_H_ */
|