* Adapting official multiple storages. * Added config to defines storages. See conf/import-tmpl/inter_server.conf. * Added packet IZ `0x388c` for sending storage definitions. * Added script command `openstorage2` to open premium storages. * Removed `sd->storage_size`, replaced by `sd->storage.max_amount`. The value is defined in inter_server.conf in storage entries. Signed-off-by: Cydh Ramdh <cydh@pservero.com>
43 lines
1.4 KiB
C
43 lines
1.4 KiB
C
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
|
|
// For more information, see LICENCE in the main folder
|
|
|
|
#ifndef _INTER_SQL_H_
|
|
#define _INTER_SQL_H_
|
|
|
|
#include "../common/conf.h"
|
|
#include "../common/mmo.h"
|
|
#include "../common/sql.h"
|
|
|
|
struct Inter_Config {
|
|
char cfgFile[128]; ///< Inter-Config file
|
|
config_t cfg; ///< Config
|
|
struct s_storage_table *storages; ///< Storage name & table information
|
|
uint8 storage_count; ///< Number of available storage
|
|
};
|
|
|
|
extern struct Inter_Config interserv_config;
|
|
|
|
int inter_init_sql(const char *file);
|
|
void inter_final(void);
|
|
int inter_parse_frommap(int fd);
|
|
int inter_mapif_init(int fd);
|
|
int mapif_send_gmaccounts(void);
|
|
int mapif_disconnectplayer(int fd, uint32 account_id, uint32 char_id, int reason);
|
|
void mapif_accinfo_ack(bool success, int map_fd, int u_fd, int u_aid, int account_id, int8 type,
|
|
int group_id, int logincount, int state, const char *email, const char *last_ip, const char *lastlogin,
|
|
const char *birthdate, const char *user_pass, const char *pincode, const char *userid);
|
|
|
|
int inter_log(char *fmt,...);
|
|
|
|
#define inter_cfgName "conf/inter_athena.conf"
|
|
|
|
extern unsigned int party_share_level;
|
|
|
|
extern Sql* sql_handle;
|
|
extern Sql* lsql_handle;
|
|
|
|
void inter_savereg(uint32 account_id, uint32 char_id, const char *key, unsigned int index, intptr_t val, bool is_string);
|
|
int inter_accreg_fromsql(uint32 account_id, uint32 char_id, int fd, int type);
|
|
|
|
#endif /* _INTER_SQL_H_ */
|