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!

[Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).

Junior Spellweaver
Joined
Apr 8, 2013
Messages
139
Reaction score
16
Hi dears, i create this post to recopilate information for all develop to report bugs.
I will note one by one the bugs and if any have the solution, i will add the solution in the main post.
The contribution is needed for all to all. If you find any bug, is necesary report in this area to fix the problem. This forum has the best programmers and testers.

Season 4 Episode 2:
- Trade Zen BUG.
- No minimap BUG.
- No separate chat BUG.
- Lvl party BUG.
- /addcom won't work (fix, change data\Message.txt (num 38) /addcom to /addcmd)
- Problem ip setting (no always, only main emu - source)
- OffAttack or Custom Attack Bug (Reconnect Server)

Fix IP Setting (Thank locaoo):
Open Main.ccp

Find InitHackCheck();

Replace for //InitHackCheck();

Fix OffAttack or Custom Attack (Thank board123):

Fix CustomAttack in Reconnect System
After reconnecting the char did not return attack.

Reconnect system add

GS ->
Reconnect.h
Add:
struct RECONNECT_INFO
{
char Name[11];
DWORD ReconnectTime;
int PartyNumber;
int AutoAddPointCount;
int AutoAddPointStats[5];
int AutoResetEnable;
int AutoResetStats[5];
int RequestOption;
char AutoPartyPassword[11];
//New add
int AttackCustom;
int AttackCustomSkill;
int AttackCustomZoneX;
int AttackCustomZoneY;
int AttackCustomZoneMap;
//End add
GENS_SYSTEM_VICTIM_LIST GensVictimList[MAX_GENS_SYSTEM_VICTIM];
};


Reconnect.cpp
Function: void CReconnect::SetReconnectInfo(LPOBJ lpObj)
Add:
info.AttackCustom = lpObj->AttackCustom;
info.AttackCustomSkill = lpObj->AttackCustomSkill;
info.AttackCustomZoneMap = lpObj->AttackCustomZoneMap;
info.AttackCustomZoneX = lpObj->AttackCustomZoneX;
info.AttackCustomZoneY = lpObj->AttackCustomZoneY;


Function: void CReconnect::ResumeCommand(LPOBJ lpObj,RECONNECT_INFO* lpInfo)
Add:
lpObj->AttackCustom = lpInfo->AttackCustom;
lpObj->AttackCustomSkill = lpInfo->AttackCustomSkill;
lpObj->AttackCustomZoneMap = lpInfo->AttackCustomZoneMap;
lpObj->AttackCustomZoneX = lpInfo->AttackCustomZoneX;
lpObj->AttackCustomZoneY = lpInfo->AttackCustomZoneY;
lpObj->AttackCustomDelay = GetTickCount();


Season 6 Episode 3:
- Check TAB BUG.
- Blood Castle and Chaos Castle BUG (buff not working before to start the event).
- Chaos Castle Drop BUG.
- /store (bless, soul, etc.) crash main

FIX /store (Thank josesp)
:


on void CCustomStore::OpenCustomStore(LPOBJ lpObj,int type) find


if(lpObj->PShopOpen != 0)

and replace complete IF to


if(lpObj->PShopOpen == 0)
{
gNotice.GCNoticeSend(lpObj->Index,1,0,0,0,0,0,"Please Open Store before set Custom Store");
//gPersonalShop.GCPShopOpenSend(lpObj->Index,0);
return;
}

bellow find and comment


//gPersonalShop.GCPShopOpenSend(lpObj->Index,1); <-This cause the crash on client if client dont have store name setted


Ex803:
- Arrows and bolts can be upgraded with jewels.
- /mreset not work.
- Season 8 box of kundus visual bug
- Arca war npc not working
- Master buff of Strengthener and Defense Success Rate Strengthener have bad the formula i think.. and the Chaos Machine rate is posible, have problem.
- Itemmove.txt is wrong (cant add more talisman to machine)

 
Last edited:
Newbie Spellweaver
Joined
Nov 11, 2015
Messages
70
Reaction score
12
Season 4 Ep 1
Bug with trade zen. Please try trade only zen and look what happen. The button when pressed not pressed and need to press it few times for accept trade.
 
Newbie Spellweaver
Joined
Feb 3, 2006
Messages
60
Reaction score
3
Season 4:
Party can be created with high lvl between players, but the one with low lvl don't recieve any exp.

EDIT - 22/03-2016
- No minimap
- No separate chat
 
Last edited:
(づ。◕‿‿◕。)
Loyal Member
Joined
Jun 23, 2014
Messages
1,853
Reaction score
422
here is the fix for the tab thing in s6

Code:
Other	gOther;
DWORD    dwAllowTabSwitchLoginJMP = 0x0040B16F;
// ----------------------------------------------------------------------------------------------
Naked(AllowTabSwitchLogin)
{
    _asm
    {
        PUSH 0
        MOV EAX, DWORD PTR SS : [EBP - 0x38]
        MOV ECX, DWORD PTR DS : [EAX + 0x350]
        MOV EDX, DWORD PTR SS : [EBP - 0x38]
        MOV EAX, DWORD PTR DS : [EDX + 0x350]
        MOV EDX, DWORD PTR DS : [EAX]
        CALL DWORD PTR DS : [EDX + 0x30]
        // ----
        MOV EAX, DWORD PTR SS : [EBP-0x38]
        MOV ECX, DWORD PTR DS : [EAX+0x354]
        PUSH ECX
        MOV EDX, DWORD PTR SS : [EBP - 0x38]
        MOV ECX, DWORD PTR DS : [EDX + 0x350]
        MOV EAX, DWORD PTR SS : [EBP - 0x38]
        MOV EDX, DWORD PTR DS : [EAX + 0x350]
        MOV EAX, DWORD PTR DS : [EDX]
        CALL DWORD PTR DS : [EAX + 0x58]
        // ----
        MOV ECX, DWORD PTR SS : [EBP - 0x38]
        MOV EDX, DWORD PTR DS : [ECX + 0x350]
        PUSH EDX
        MOV EAX, DWORD PTR SS : [EBP - 0x38]
        MOV ECX, DWORD PTR DS : [EAX + 0x354]
        MOV EDX, DWORD PTR SS : [EBP - 0x38]
        MOV EAX, DWORD PTR DS : [EDX + 0x354]
        MOV EDX, DWORD PTR DS : [EAX]
        CALL DWORD PTR DS : [EDX + 0x58]
        // ----
        JMP dwAllowTabSwitchLoginJMP
    }
}
// ----------------------------------------------------------------------------------------------
void Other::Load()
{
    SetOp((LPVOID)0x0040B154, AllowTabSwitchLogin, ASM::JMP);
}
working in zmain (1.04.04) not sure if it works in muemu, you have to test it.

add this in the dllmain.cpp or what ever it is called in muemu

Code:
gOther.Load();
 
Junior Spellweaver
Joined
Apr 8, 2013
Messages
139
Reaction score
16
Season 4:
Party can be created with high lvl between players, but the one with low lvl don't recieve any exp.
Your problem is probably not bug. Check de party exp in the files config and play with the numbers. (Anyway when i finish test s6, i will test s4 and check this).
 
Newbie Spellweaver
Joined
Feb 3, 2006
Messages
60
Reaction score
3
Your problem is probably not bug. Check de party exp in the files config and play with the numbers. (Anyway when i finish test s6, i will test s4 and check this).

Sounds plausible, but I don't know what I'm looking for:
;==================================================
; Party Settings
;==================================================
PartyReconnectTime = 300
PartyGeneralExperience1 = 100
PartyGeneralExperience2 = 80
PartyGeneralExperience3 = 60
PartyGeneralExperience4 = 50
PartyGeneralExperience5 = 45
PartySpecialExperience1 = 100
PartySpecialExperience2 = 80
PartySpecialExperience3 = 75
PartySpecialExperience4 = 65
PartySpecialExperience5 = 60

EDIT - S4 bugs
- No minimap
- No separate chat
 
Last edited:
Newbie Spellweaver
Joined
Nov 11, 2015
Messages
70
Reaction score
12
Season 4 Ep 1
Bug with trade zen. Please try trade only zen and look what happen. The button when pressed not pressed and need to press it few times for accept trade.


Anyone could know how solve this problem?
 
Experienced Elementalist
Joined
Sep 20, 2012
Messages
288
Reaction score
74
Sounds plausible, but I don't know what I'm looking for:
;==================================================
; Party Settings
;==================================================
PartyReconnectTime = 300
PartyGeneralExperience1 = 100
PartyGeneralExperience2 = 80
PartyGeneralExperience3 = 60
PartyGeneralExperience4 = 50
PartyGeneralExperience5 = 45
PartySpecialExperience1 = 100
PartySpecialExperience2 = 80
PartySpecialExperience3 = 75
PartySpecialExperience4 = 65
PartySpecialExperience5 = 60

EDIT - S4 bugs
- No minimap
- No separate chat

check if theres an option for party lvl gap
 
Junior Spellweaver
Joined
Apr 8, 2013
Messages
139
Reaction score
16
Sounds plausible, but I don't know what I'm looking for:
;==================================================
; Party Settings
;==================================================
PartyReconnectTime = 300
PartyGeneralExperience1 = 100
PartyGeneralExperience2 = 80
PartyGeneralExperience3 = 60
PartyGeneralExperience4 = 50
PartyGeneralExperience5 = 45
PartySpecialExperience1 = 100
PartySpecialExperience2 = 80
PartySpecialExperience3 = 75
PartySpecialExperience4 = 65
PartySpecialExperience5 = 60

EDIT - S4 bugs
- No minimap
- No separate chat

Yes probably is a bug, when you have a diferent lvl (more 130 lvls) the server send a message to the user when give a party.



Anyone could know how solve this problem?
If you have the source you can check the "if" sentence, probably the problem is the "check sentences" not is correct. Im not check the season 4 now, but in season 6 work fine. You can compare the source and check if have any diference.
 
Newbie Spellweaver
Joined
Aug 16, 2015
Messages
10
Reaction score
0
S6 BUGS
When the users use party and this increase bonus xp, but if a one user lvl alone with party this recive a bonus experience
CC and BC bug when enter with buffs

PD: I create server before two months and the server work fine fine, one time the JoinServer Cash, the server was on ten days, but the server files are stable!
 
Junior Spellweaver
Joined
Apr 8, 2013
Messages
139
Reaction score
16
S6 BUGS
When the users use party and this increase bonus xp, but if a one user lvl alone with party this recive a bonus experience
CC and BC bug when enter with buffs

PD: I create server before two months and the server work fine fine, one time the JoinServer Cash, the server was on ten days, but the server files are stable!

I dont understand your party bug, can you create a video or explain better?
 
Newbie Spellweaver
Joined
Jan 20, 2015
Messages
30
Reaction score
0
Season 8 BUG: Arrows and bolts can be upgraded with jewels
 
Newbie Spellweaver
Joined
Feb 3, 2006
Messages
60
Reaction score
3
Season 4;
/addcom won't work, all other works fine.
 
Newbie Spellweaver
Joined
Feb 2, 2014
Messages
69
Reaction score
3
Season 8 /mreset no reset level master or add point ( master point )
 
Junior Spellweaver
Joined
Apr 8, 2013
Messages
139
Reaction score
16
Season 8 /mreset no reset level master or add point ( master point )
I have a list of bug ex803 but i cant test now this version (im going test s6).
Can you check if all is real?
Arca War, Quest gens, extraction of seed disconnects, dupp, guild member, it, Agi Bug 65k for High Elf
# After finish quest for evolution 3 (Blade Master, Grand Master, etc.) the character no receive the extra point
# Golden Archer not work
# Firecracker not work
# Blue Heart or Heart of Dark Lord not work
# MU Chat (F Key) -not work mails for but chat with friends not ( this bug is not a problem , who use f key ahahaha ? )
# The expanded inventory work only with 2 extra inventorys, with 3 or 4 crash client
#GS CRASH USING OR MOVE ELEMENT ITEMS
#Gens not work
 
Newbie Spellweaver
Joined
Mar 3, 2007
Messages
77
Reaction score
0
Main crash if you use /store (wcc,bless...etc.) Season6 ! You can fix that only if you write something in shop name before use the command, maybe someone can fix it and send me the fixing code too ^_^
 
Junior Spellweaver
Joined
Apr 8, 2013
Messages
139
Reaction score
16
Main crash if you use /store (wcc,bless...etc.) Season6 ! You can fix that only if you write something in shop name before use the command, maybe someone can fix it and send me the fixing code too ^_^

Im not idea about this command, can you explain me how using to crash?
 
Newbie Spellweaver
Joined
Mar 3, 2007
Messages
77
Reaction score
0
Im not idea about this command, can you explain me how using to crash?

This is the costum store from muemu, you can see the configs in gameserver/gameserverinfo-costum (costum store)

I have a video, this can help you to get to the point.


Also would be great if i can have your skype id to chat in here, i have a server up and running and i can test for bugs anytime.
 
Last edited:
Newbie Spellweaver
Joined
Sep 16, 2014
Messages
77
Reaction score
8
How to crack main? i want crack the red main of 1.15p_Kor.
 
Junior Spellweaver
Joined
Apr 8, 2013
Messages
139
Reaction score
16
This is the costum store from muemu, you can see the configs in gameserver/gameserverinfo-costum (costum store)

I have a video, this can help you to get to the point.


Also would be great if i can have your skype id to chat in here, i have a server up and running and i can test for bugs anytime.

Is really, this command crash main.
 
Back
Top