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] MU Online Original Server Korean (Season 12) (PDB+MAP)

Newbie Spellweaver
Joined
Nov 9, 2004
Messages
13
Reaction score
7
Server List Editor by Me!

ServerList - [Release] MU Online Original Server Korean (Season 12) (PDB+MAP) - RaGEZONE Forums
Share when coding complete!:rolleyes::rolleyes::rolleyes::rolleyes::rolleyes:
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Jul 15, 2008
Messages
21
Reaction score
0
Hi there,

Can someone reupload this please?

The link:



does not work anymore!!

Thanks a lot guys!
 
Skilled Illusionist
Joined
Jun 22, 2017
Messages
363
Reaction score
561
Need to fix server string also and know how that works
@TFN-Keo

I have removed link, i forgot that is shared here. I have uploaded again.

here

Code:
#pragma pack(push, 1)
struct SERVER_LIST_INFO //39
{
	WORD Index;
	char Name[32];
	BYTE Unknown34;
	BYTE Unknown35;
	BYTE Unknown36;
	WORD DescriptLen;
};
#pragma pack(pop)

bool Dec(char* path)
{
    if (path[strlen(path) - 1] != 'd' && path[strlen(path) - 1] != 'D')
    {
  return 0;
    }

    FILE* hFile;

    fopen_s(&hFile, path, "rb");

    if (!hFile)
    {
  return 0;
    }

    int BlockSize = sizeof(SERVER_LIST_INFO);

    SERVER_LIST_INFO info;

    char Descript[1024];

    while (fread(&info, BlockSize, 1, hFile))
    {
  memset(Descript, 0, sizeof(Descript));

  BuxConvert((BYTE*)&info, BlockSize);

  fread(Descript, info.DescriptLen, 1, hFile);

  BuxConvert((BYTE*)&Descript, info.DescriptLen);

  ServerListInfo.insert(std::pair<int, SERVER_LIST_INFO>(info.Index, info));

  ServerListDesInfo.insert(std::pair<int, std::string>(info.Index, Descript));
    }

    fclose(hFile);

    char SavePath[MAX_PATH] = { 0 }, FileName[MAX_PATH] = { 0 };

    _splitpath(path, 0, 0, FileName, 0);

    sprintf_s(SavePath, "%s.txt", FileName);

    fopen_s(&hFile, SavePath, "wb");

    if (!hFile)
    {
  return 1;
    }

    fprintf(hFile, "//Index  Name  C3  C4  C5  Description\n");

    for (std::map<int, SERVER_LIST_INFO>::iterator it = ServerListInfo.begin(); it != ServerListInfo.end(); it++)
    {
  if (ServerListDesInfo.find(it->first) != ServerListDesInfo.end())
  {
   fprintf(hFile, "%d    \"%s\"    %d    %d    %d    \"%s\"\n",
    it->second.Index,
    it->second.Name,
    it->second.Unknown34,
    it->second.Unknown35,
    it->second.Unknown36,   
    ServerListDesInfo.at(it->first).c_str()
   );
  }
  else
  {
   fprintf(hFile, "%d    \"%s\"    %d    %d    %d    \"\"\n",
    it->second.Index,
    it->second.Name,
    it->second.Unknown34,
    it->second.Unknown35,
    it->second.Unknown36
   );
  }
    }

    fprintf(hFile, "end");

    fclose(hFile);

    return 1;
}

View attachment ServerListEx.cpp.zip
View attachment myheart's ServerList converter.zip
 

Attachments

You must be registered for see attachments list
Junior Spellweaver
Joined
Feb 4, 2017
Messages
119
Reaction score
14
Yeah, like title says: MU Online Original Server Korean (Season 12)

It is a Ducking original server, with PDB and map and original server files.
I only have removed logs and a big .dmp file. Also i have a database with 900mb of accounts. (Maybe will upload it later).
If someone can scan this file, will be welcome, here is clean.

I am tired of this poop, and some people that i have shared this is selling it.
Go ahead, leech and try to develop this poop and sell it i do not care :junglejane:


Credits:
Webzen (Since i have found this alone)

LinR7Ju - [Release] MU Online Original Server Korean (Season 12) (PDB+MAP) - RaGEZONE Forums





HERE IS THE FULL DB FOR ALL MU LECHERS



Ps. Do not say thanks

Can you share src dataserver ? Thank
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
May 29, 2005
Messages
91
Reaction score
5
Need help with DB settings: My os is windows 10 X64, and my SQL version is MS SQL 2019. I restord the three database (MuOnline, ranking and MU2003_EVENT_DATA), configured the ODBC in windows' control panel and set them connected to the right database. In the server files, I also configured all the files which need to config db user and db passwords that i can find. BUT, when I try to start the links, dataserver announces ODBC SET FAIL and RankingServer, Exdb all shows database connect fail. Can somebody help me with this problem? Thanks a lot guys.

My ODBC setting as below:
MuOnline ---> MuOnline
Me_MuOnline ---> MuOnline
Ranking ---> Ranking
MU2003_EVENT_DB ---> MU2003_EVENT_DATA
 
Back
Top