mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-01 05:02:25 +00:00
Merge pull request #215 from addtheice/RunQueryToDatabaseQuery_zone_zonedb
Run query to database query zone zonedb
This commit is contained in:
commit
5c6f9fcdc4
3940
zone/zonedb.cpp
3940
zone/zonedb.cpp
File diff suppressed because it is too large
Load Diff
@ -246,22 +246,14 @@ public:
|
|||||||
/*
|
/*
|
||||||
* General Character Related Stuff
|
* General Character Related Stuff
|
||||||
*/
|
*/
|
||||||
void StoreCharacterLookup(uint32 char_id);
|
void StoreCharacterLookup(uint32 char_id);
|
||||||
bool SetServerFilters(char* name, ServerSideFilters_Struct *ssfs);
|
bool GetAccountInfoForLogin_result(MySQLRequestResult results, int16* admin = 0, char* account_name = 0,
|
||||||
uint32 GetServerFilters(char* name, ServerSideFilters_Struct *ssfs);
|
|
||||||
bool GetAccountInfoForLogin(uint32 account_id, int16* admin = 0, char* account_name = 0,
|
|
||||||
uint32* lsaccountid = 0, uint8* gmspeed = 0, bool* revoked = 0, bool* gmhideme = 0);
|
|
||||||
bool GetAccountInfoForLogin_result(MYSQL_RES* result, int16* admin = 0, char* account_name = 0,
|
|
||||||
uint32* lsaccountid = 0, uint8* gmspeed = 0, bool* revoked = 0, bool* gmhideme = nullptr,
|
uint32* lsaccountid = 0, uint8* gmspeed = 0, bool* revoked = 0, bool* gmhideme = nullptr,
|
||||||
uint32* account_creation = 0);
|
uint32* account_creation = 0);
|
||||||
bool GetCharacterInfoForLogin_result(MYSQL_RES* result, uint32* character_id = 0, char* current_zone = 0,
|
bool GetCharacterInfoForLogin_result(MYSQL_RES* result, uint32* character_id = 0, char* current_zone = 0,
|
||||||
PlayerProfile_Struct* pp = 0, Inventory* inv = 0, ExtendedProfile_Struct *ext = 0, uint32* pplen = 0,
|
PlayerProfile_Struct* pp = 0, Inventory* inv = 0, ExtendedProfile_Struct *ext = 0, uint32* pplen = 0,
|
||||||
uint32* guilddbid = 0, uint8* guildrank = 0, uint8 *class_= 0, uint8 *level = 0, bool *LFP = 0,
|
uint32* guilddbid = 0, uint8* guildrank = 0, uint8 *class_= 0, uint8 *level = 0, bool *LFP = 0,
|
||||||
bool *LFG = 0, uint8 *NumXTargets = 0, uint8* firstlogon = 0);
|
bool *LFG = 0, uint8 *NumXTargets = 0, uint8* firstlogon = 0);
|
||||||
bool GetCharacterInfoForLogin(const char* name, uint32* character_id = 0, char* current_zone = 0,
|
|
||||||
PlayerProfile_Struct* pp = 0, Inventory* inv = 0, ExtendedProfile_Struct *ext = 0, uint32* pplen = 0,
|
|
||||||
uint32* guilddbid = 0, uint8* guildrank = 0, uint8 *class_ = 0, uint8 *level = 0, bool *LFP = 0,
|
|
||||||
bool *LFG = 0, uint8 *NumXTargets = 0, uint8* firstlogon = 0);
|
|
||||||
void SaveBuffs(Client *c);
|
void SaveBuffs(Client *c);
|
||||||
void LoadBuffs(Client *c);
|
void LoadBuffs(Client *c);
|
||||||
void LoadPetInfo(Client *c);
|
void LoadPetInfo(Client *c);
|
||||||
@ -311,7 +303,7 @@ public:
|
|||||||
bool SetCharacterFactionLevel(uint32 char_id, int32 faction_id, int32 value, uint8 temp, faction_map &val_list); // rembrant, needed for factions Dec, 16 2001
|
bool SetCharacterFactionLevel(uint32 char_id, int32 faction_id, int32 value, uint8 temp, faction_map &val_list); // rembrant, needed for factions Dec, 16 2001
|
||||||
bool LoadFactionData();
|
bool LoadFactionData();
|
||||||
bool LoadFactionValues(uint32 char_id, faction_map & val_list);
|
bool LoadFactionValues(uint32 char_id, faction_map & val_list);
|
||||||
bool LoadFactionValues_result(MYSQL_RES* result, faction_map & val_list);
|
bool LoadFactionValues_result(MySQLRequestResult result, faction_map & val_list);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* AAs
|
* AAs
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user