Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Release] Server Files + Source + MVCore Website

Skilled Illusionist
Joined
Apr 14, 2014
Messages
313
Reaction score
11
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..
 
Joined
Sep 4, 2007
Messages
885
Reaction score
111
i playing game win xp , but
fabilus - [Release] Server Files + Source + MVCore Website - RaGEZONE Forums

download this dll from "google" and put it in your mu folder
 
Newbie Spellweaver
Joined
Aug 9, 2012
Messages
48
Reaction score
0
Database connection LOST, Check if SQL Named-Pipes enabled and database Created/Restored!

Please Help, I Enabled the Pipe, but nothing, Helm Me!
 
Newbie Spellweaver
Joined
Jun 15, 2015
Messages
10
Reaction score
1
This was Cool xD Thanks TS



Did this Work on Sql 2008 r2?



MVCore website

Bug list in rar!
CREDITS:
- Narvulkan
- DMN ( For themes & ideas ^^ )
- MuWeb ( For ideas )


SCFMT S4.2 v8.00.11+
Bug list in rar!
CREDITS:
- Narvulkan
- SCFMT
- And Someone who made it v8


zTeam S6.3 Bugless

Bug list in rar!
CREDITS:
- Narvulkan
- HappyDay ( For 98% of fixes )
- zTeam


Website Images...








Bro Do u have Video Tutorial for This Release??

Thnks
 
Newbie Spellweaver
Joined
Feb 26, 2014
Messages
78
Reaction score
3
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



#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;
// ----------------------------------
edit IP and port ??
 
Newbie Spellweaver
Joined
Jun 4, 2012
Messages
87
Reaction score
12
any solution to the bug of votes as changing the time for vote
 
Newbie Spellweaver
Joined
Jun 4, 2012
Messages
87
Reaction score
12
any solution to the bug of votes as changing the time for vote
 
Newbie Spellweaver
Joined
Jun 4, 2012
Messages
87
Reaction score
12
you can not change the voting time to 12 hours
 
Junior Spellweaver
Joined
Feb 6, 2013
Messages
104
Reaction score
44
How to enable Lost Password page? Cause page is enabled and it shows "Page was not found!"

there was my mistake in theme file, a link to Lost Password Page is not correct. :)
 
Newbie Spellweaver
Joined
Feb 26, 2014
Messages
78
Reaction score
3
Database connection LOST, Check if SQL Named-Pipes enabled and database Created/Restored!
:(
You can help yourself through Teamview?
 
Back
Top