mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
* [Commands] Cleanup #ban, #ipban, #flag, and #kick Commands. - Cleanup messages and logic. - Add ServerFlagUpdate_Struct for flag updates. * Add #setlsinfo and #setpass to cleanup. * Update setlsinfo.cpp * Update database.cpp * Update database.cpp * Update command.cpp
24 lines
725 B
C++
Executable File
24 lines
725 B
C++
Executable File
#include "../client.h"
|
|
#include "../worldserver.h"
|
|
|
|
extern WorldServer worldserver;
|
|
|
|
void command_setlsinfo(Client *c, const Seperator *sep)
|
|
{
|
|
int arguments = sep->argnum;
|
|
if (arguments < 2) {
|
|
c->Message(Chat::White, "Usage: #setlsinfo [Email] [Password]");
|
|
return;
|
|
}
|
|
|
|
auto pack = new ServerPacket(ServerOP_LSAccountUpdate, sizeof(ServerLSAccountUpdate_Struct));
|
|
auto s = (ServerLSAccountUpdate_Struct *) pack->pBuffer;
|
|
s->useraccountid = c->LSAccountID();
|
|
strn0cpy(s->useraccount, c->AccountName(), 30);
|
|
strn0cpy(s->user_email, sep->arg[1], 100);
|
|
strn0cpy(s->userpassword, sep->arg[2], 50);
|
|
worldserver.SendPacket(pack);
|
|
c->Message(Chat::White, "Your email and local loginserver password have been set.");
|
|
}
|
|
|