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).

Novice C++
Joined
Feb 14, 2011
Messages
576
Reaction score
230
How to fix the Death Stab effect invisible?

Hello somebody has the solution for the visual bug of the death stab skill (season6) ?

common you are so lazy? read the thread is only 13 pages...you will find the fix....

here

main_EX802
protocol.cpp
void GCCharacterInfoRecv

find

Code:
switch(((*(BYTE*)(*(DWORD*)(MAIN_CHARACTER_STRUCT)+0x0B)) & 7))
    {
        case 0:
            SetByte(0x0055B6A2,((gProtect.m_MainInfo.DWMaxAttackSpeed>=0xFFFF)?0x02:0x0F));
            break;
        case 1:
            SetByte(0x0055B6A2,((gProtect.m_MainInfo.DKMaxAttackSpeed>=0xFFFF)[B][COLOR=#0000cd][/COLOR][/B]?[B][COLOR=#0000cd]0x02:0x0F[/COLOR][/B]));
            break;
        case 2:
            SetByte(0x0055B6A2,((gProtect.m_MainInfo.FEMaxAttackSpeed>=0xFFFF)?0x02:0x0F));
            break;
        case 3:
            SetByte(0x0055B6A2,((gProtect.m_MainInfo.MGMaxAttackSpeed>=0xFFFF)?0x02:0x0F));
            break;
        case 4:
            SetByte(0x0055B6A2,((gProtect.m_MainInfo.DLMaxAttackSpeed>=0xFFFF)?0x02:0x0F));
            break;
        case 5:
            SetByte(0x0055B6A2,((gProtect.m_MainInfo.SUMaxAttackSpeed>=0xFFFF)?0x02:0x0F));
            break;
        case 6:
            SetByte(0x0055B6A2,((gProtect.m_MainInfo.RFMaxAttackSpeed>=0xFFFF)?0x0F:0x0F));
            break;
    }

replace
case 1 = Dark knight
change to this on case 1

Code:
SetByte(0x0055B6A2,((gProtect.m_MainInfo.DKMaxAttackSpeed>=0xFFFF)?[B][COLOR=#ff0000]0x0F:0x0F[/COLOR][/B]));
 
Newbie Spellweaver
Joined
Jan 4, 2012
Messages
69
Reaction score
3
how disable summoner in x401? where to check code? dataserver or gameserver? i want to disable summoner in create panel ,please help me
 
Newbie Spellweaver
Joined
Feb 12, 2016
Messages
52
Reaction score
7
Thanks so much, allexander

This isn't laziness, i searched at all post but dont found this topic.

Will be necessary to the next users!
 
Newbie Spellweaver
Joined
Dec 19, 2016
Messages
41
Reaction score
3
Fix Death Stab in Protocol.cpp

Main.dll (Source) -> Protocol.cpp

SetByte(0x00556C38,((gProtect.m_MainInfo.DKMaxAttackSpeed>=0xFFFF)?0x0F:0x0F));
 
Newbie Spellweaver
Joined
Feb 12, 2016
Messages
52
Reaction score
7
@allexander another doubt..Do you know something about the how to fix the mu icon into mu.exe?I tried various programs and also the Resource Hacker but failed.
 
Newbie Spellweaver
Joined
Feb 12, 2016
Messages
52
Reaction score
7
My season 4 bugs;

- trade zen:
but i dont believe that will be some negative, if has the /money command

The worst of all:
- when two players are in a duel and some of them send the duel request again, he get the duel cancel instantly.
 
Junior Spellweaver
Joined
Dec 27, 2007
Messages
113
Reaction score
16
Abandoned thread? Did IGCN source leak really caught all the attention? And why don't you focus on newer versions? Is it really the tendency to build x9999 servers with low seasons only? Does anybody want to create a server, e.g. x500 and provide conditions for players to play interestingly and normally? Have in mind that older versions do not have MU Helper.
 
Junior Spellweaver
Joined
Nov 26, 2016
Messages
140
Reaction score
28
Client s6 resolution 800x600 bug. cant see name of ancient weapon?

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

Attachments

You must be registered for see attachments list
Junior Spellweaver
Joined
Dec 27, 2007
Messages
113
Reaction score
16
Client s6 resolution 800x600 bug. cant see name of ancient weapon?

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

You should simply change the resolution to higher since the weapon options cannot let you see the name.
 

Attachments

You must be registered for see attachments list
Junior Spellweaver
Joined
Nov 26, 2016
Messages
140
Reaction score
28
Same here with high resolution 1024x768. bug if too much options items.

How to move item info to coord like this?
Yg7mdQ9 - [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8). - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Joined
Nov 29, 2009
Messages
506
Reaction score
92
Same here with high resolution 1024x768. bug if too much options items.

How to move item info to coord like this?
Yg7mdQ9 - [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8). - RaGEZONE Forums

this can be solve with by copying interface folders from Data from client that has visible full item options.

example:

 

Attachments

You must be registered for see attachments list
Back
Top