cananyonesuggesthow to changethe moduleexchangeTokens "WCoinsusernamecolumn name" withMemb_GuidonMemberGuid ??
serverzTeamSeason8
Printable View
cananyonesuggesthow to changethe moduleexchangeTokens "WCoinsusernamecolumn name" withMemb_GuidonMemberGuid ??
serverzTeamSeason8
anyone can help me installing this web?? i cant really install always it says
Database connection LOST, Check if SQL Named-Pipes enabled and database Created/Restored!
i think i have wrong configuration.. anyone can check it? thank you..
Database connection LOST, Check if SQL Named-Pipes enabled and database Created/Restored!
Please Help, I Enabled the Pipe, but nothing, Helm Me!
how to choose location of the web for example i want the web to be installed on xammp eg.,"mydomain/season6/mvcore" something like that thanks!
Quote:
In the source search for keyword "IP" and you will find
( if you have some basic knowladge of c++ then you will understand where and what has to be changed )
picture demo ?? :( I noob
- - - Updated - - -
edit IP and port ??Quote:
#pragma once// ----------------------------------------------------------------------------------------------
#include "ProtocolDefine.h"
// ----------------------------------------------------------------------------------------------
#pragma pack(push, 1)
struct CONNECTEX_LOGIN
{
PBMSG_HEAD2 h;
char AccountID[10];
char Password[10];
char Name[10];
DWORD TickCount;
};
#pragma pack(pop)
// ----------------------------------------------------------------------------------------------
#pragma pack(push, 1)
struct PMSG_ANS_SERVER_INFO
{
PBMSG_HEAD2 h;
char Ip[16];
WORD Port;
};
#pragma pack(pop)
// ----------------------------------------------------------------------------------------------
namespace ConnectExType
{
enum T
{
OnLine = 0,
OnReconnect = 1,
OnForceDisconnect = 2,
};
};
// ----------------------------------------------------------------------------------------------
class ConnectEx
{
public:
void Load();
void Run();
// ----
static int CreateConnect(char * IP, WORD Port);
// ----
void ClearGame();
void RestoreGame();
// ----
void DrawProgres();
void LoginReq();
void Reconnect();
void Relogin();
// ----
int m_ConnectState;
char m_AccountID[11];
char m_Password[21];
// ----
bool m_OfflineExpirience;
private:
char m_CSIP[16];
WORD m_CSPort;
char m_GSIP[16];
WORD m_GSPort;
// ----
DWORD m_LastSendTick;
DWORD m_ReconnectTick;
bool m_WantMUHelper;
// ----
}; extern ConnectEx gConnectEx;
// ----------------------------------