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] IGCN - MuEmu Server Season 12 ep 2 + Sources

Custom Title Activated
Loyal Member
Joined
Dec 19, 2014
Messages
1,109
Reaction score
350
all work



I can connect to the game, I can play, just can't connect through MuEditor.
how did you connect I indicated everything correctly but when you log into the game is disabled



is work try= connect Direct
lordizinho87 - [Release] IGCN - MuEmu Server Season 12 ep 2 + Sources - RaGEZONE Forums




wtf error? https://pastebin.com/HWiJwXbR
 
Last edited:
Junior Spellweaver
Joined
Dec 27, 2007
Messages
113
Reaction score
16
Why do you need the MuEMU Editor? It's crap compared to IGC Essential Tool, use IGC Essential Tool and everything's fine. Connection there is easy.
 
Newbie Spellweaver
Joined
Sep 22, 2013
Messages
95
Reaction score
56
Here i edited MuOnline.bak with starter items in all classes and mini fix in DL base values (HP,Mana, Command). Account for test files (test/test)

[/URL]

i saw a bug with pentagram elemental damage, only is applied when you use a skill, in basic attacks isn't is applied, is there a configuration for edit this or you need edit game server source code?


 
Newbie Spellweaver
Joined
Jul 28, 2018
Messages
14
Reaction score
10
Here is a compiled experimental Server for lower cpu usage, and improved basic AI. Please report all bugs I think it should work with this re-pack, simply copy into the zMuServer\4._GameServer_Regular folder.
New Release - Drop Bug Fixed -
New Version 2:

 
Last edited:
Newbie Spellweaver
Joined
Jul 28, 2018
Messages
14
Reaction score
10
decryption key?
Post updated with decryption key, sorry.

edit:
There seems to be a memory leak as some items cannot be picked up sometimes. I think it's my code if I fix it I will re-release.

New Release - Drop Bug Fixed:

New Version 2:


Would anyone be interested in creating a github with the source from here and try to convert it into a Linux/MySQL Server? Its very possible and I am a decent programmer I just need help with the tedious jobs, such as converting the Stored Procedures over.

edit:
Actually we could make it a console application that supports both Windows/Linux and MySQL.

The Main reason I want to do this is to keep costs down in NOT using licensed software. The original developers could benefit too as they will be able to use the source for there more recent versions and still maintain there piece of cake.

What do you think?

THE TODO LIST

DATABASE SIDE:
MySQL - Create Table Structures - done.
MySQL - Add Stored Procedures by modifying MSSQL ones. - working on (a few done lol)
Code - Integrate MySQL Support to DataServer with existing code from WoW Mangos. -
Code - Adjust Query Calls from MSSQL to MySQL. -
Code - Adjust Stored Procedure Calls from MSSQL to MySQL. -

WINDOWS TO LINUX/WIN CONSOLE APP:
Code - DS/CS/GS - Port MFC Windows Application to a OS Independent Console Application. -
Code - DS/CS/GS - Create commands to Reload Server Settings. -
 
Last edited by a moderator:
Newbie Spellweaver
Joined
Feb 11, 2012
Messages
7
Reaction score
0
Repair IGCN defects
My English is not very good, use the translator


Warrior skill fix

Open: DSProtocol.cpp

Search
Code:
if (lpObj->Class == CLASS_RAGEFIGHTER || lpObj->Class == CLASS_ELF)
Modify
Code:
if (lpObj->Class == CLASS_RAGEFIGHTER || lpObj->Class == CLASS_ELF || lpObj->Class == CLASS_KNIGHT)


Monster Summoning book fix


Open: user.cpp

Search
Code:
BOOL SummonGoldColossusMonster(LPOBJ lpObj, int monsterIndex, int nCount, int bIsHelpMon)

At the end of the function, add "return TRUE;"

Code:
{
        return TRUE;
    }
 
Last edited by a moderator:
Joined
Dec 7, 2003
Messages
0
Reaction score
1
Keep the releases coming guys :)
I might help developing these files and release them here with fixes..

First bug found:
Mu helper, obtaining does not work and translations are messed up I think..
It does not matter what you tick it just keeps obtaining everything.
 
Last edited:
Junior Spellweaver
Joined
Oct 18, 2009
Messages
126
Reaction score
4
Is there any program that can preview the .bmd object files from this version in a normal manner? (Pentium tools fails to do so..)
 
Elite Diviner
Joined
Oct 1, 2007
Messages
413
Reaction score
9
현재 파일은 위험한 버그입니다
 
Last edited:
Initiate Mage
Joined
Sep 10, 2014
Messages
1
Reaction score
1
I found something about master skill
When i level up master skill, some skill not change damage
I tried edit in code
MasterLevelSkillTreeSystem.cpp => CMasterLevelSkillTreeSystem::GetSkillAttackDamage
Find
if (this->m_MLSValueTable[iValueType].iValueType == MLST_VALUE_DAMAGE) && nBrandOfSkill != 520)
Replace with
if ((this->m_MLSValueTable[iValueType].iValueType == MLST_VALUE_NORMAL
|| this->m_MLSValueTable[iValueType].iValueType == MLST_VALUE_DAMAGE) && nBrandOfSkill != 520)
 
Initiate Mage
Joined
Mar 2, 2019
Messages
2
Reaction score
0
lordizinho87 - [Release] IGCN - MuEmu Server Season 12 ep 2 + Sources - RaGEZONE Forums
the game server does not work as it is fixed
 
Joined
Jul 5, 2013
Messages
4
Reaction score
0
Problem when using Client in #1 post.
Recommend use the client in MUEMU website.


New bug in Mu Helper:
+ Can't edit input value
+ Pick all items without config
+ Hunting log not working

Inventory
+ Can not repair item
+ When add jewelry (bless, soul), durability reduct
 
Last edited:
Back
Top