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] X-Team Sources (S4, S6, S8)

Inactive Account
Inactive Account
Joined
May 6, 2017
Messages
1
Reaction score
0
Re: Source [MUEMU]

wanted to know how I change the title and the image that appears in the GS and the other exe someone? Do you know how
icXzNbw.png

wanted to know how I change the title and the image that appears in the GS and the other exe someone? Do you know how
 
Initiate Mage
Joined
Mar 25, 2016
Messages
5
Reaction score
0
Re: Source [MUEMU]

how can i fix this error ,? please. Thanks
qXXAzSc
qXXAzSc
https://imgur.com/qXXAzSc


qXXAzSc
Thanks you,
now I have another problem but this I can not understand since the client.dll is an aggregate or generated only the source of the client_Ex401, how i do solve it?
https://imgur.com/p7Pi56z
how do I solve it?how do I solve it?now I have another problem but this I can not understand since the client.dll is an aggregate or generated only the source of the client
 
Inactive Account
Inactive Account
Joined
Aug 13, 2017
Messages
29
Reaction score
0
Re: Source [MUEMU]

change debug to win32 again.
Thanks you,
now I have another problem but this I can not understand since the client.dll is an aggregate or generated only the source of the client_Ex401, how i do solve it?
https://imgur.com/p7Pi56z
how do I solve it?how do I solve it?now I have another problem but this I can not understand since the client.dll is an aggregate or generated only the source of the client
 
Inactive Account
Inactive Account
Joined
Apr 3, 2017
Messages
103
Reaction score
1
Re: Source [MUEMU]

how to make hega or lucky sets tradable please !
 
Inactive Account
Inactive Account
Joined
Aug 13, 2017
Messages
29
Reaction score
0
Re: Source [MUEMU]

Anyone have fixed the player.bmd? with main. he doesnt use player.bmd thats why there was no flinch on your character or reflect.
 
Initiate Mage
Joined
Jun 28, 2009
Messages
22
Reaction score
13
Re: Source [MUEMU]

Nobody knows how to display the model of items in custom windows Season 6?
 
Inactive Account
Inactive Account
Joined
Jan 15, 2017
Messages
18
Reaction score
1
Re: Source [MUEMU]

Nobody knows how to display the model of items in custom windows Season 6?

I need it too. I found what function do it, but don't know how use it.

#define pDrawModel ((int(__cdecl*)(float PosX, float PosY, float Width, float Height, int ItemID, int a6, int a7, float a8, char a9)) 0x5CF310)
 
Initiate Mage
Joined
Jun 28, 2009
Messages
22
Reaction score
13
Re: Source [MUEMU]

I need it too. I found what function do it, but don't know how use it.

#define pDrawModel ((int(__cdecl*)(float PosX, float PosY, float Width, float Height, int ItemID, int a6, int a7, float a8, char a9)) 0x5CF310)

I found the function myself, for a very long time already, but it does not draw the picture with the usual call, I need something else.

- - - Updated - - -

EFlv7ySlS3uipu6RmrqIjQ.png

SQMkW-_UTny487jUw6JXNg.png

ready
 
Last edited:
Inactive Account
Inactive Account
Joined
Jan 15, 2017
Messages
18
Reaction score
1
Re: Source [MUEMU]

Can you give info about it?
 
Skilled Illusionist
Joined
Jun 22, 2017
Messages
361
Reaction score
547
Re: Source [MUEMU]

Code:
void Interface::DrawItemToolTip ( void * item, int x, int y ) {
  static DWORD mem = 0;
  _asm {
      PUSH 0
      PUSH 0
      PUSH 0
      PUSH item
      PUSH y
      PUSH x
   MOV mem,0x00861110 //1.04D-> 0x00860FC0
      CALL mem
      MOV ECX, EAX
   MOV mem,0x00861AA0 //1.04D-> 0x00861950
      CALL mem
      MOV ECX, EAX
   MOV mem,0x007E3E30 //1.04D-> 0x007E3CE0
      CALL mem
  }

}
 
Last edited:
Inactive Account
Inactive Account
Joined
Jan 15, 2017
Messages
18
Reaction score
1
Re: Source [MUEMU]

Code:
void Interface::DrawItemToolTip ( void * item, int x, int y ) {
  static DWORD mem = 0;
  static DWORD ItemToolTipAdress1 = 0x00861110; //1.04D-> 0x00860FC0
  static DWORD ItemToolTipAdress2 = 0x00861AA0; //1.04D-> 0x00861950
  static DWORD ItemToolTipAdress3 = 0x007E3E30; //1.04D-> 0x007E3CE0
  _asm {
      PUSH 0
      PUSH 0
      PUSH 0
      PUSH item
      PUSH y
      PUSH x
   MOV mem,ItemToolTipAdress1
      CALL mem
      MOV ECX, EAX
   MOV mem,ItemToolTipAdress2
      CALL mem
      MOV ECX, EAX
   MOV mem,ItemToolTipAdress3
      CALL mem
  }

}

Thanks, but it tooltip, and I already have it. We need ItemDraw, like on screenshots.
 
Initiate Mage
Joined
Jun 28, 2009
Messages
22
Reaction score
13
Re: Source [MUEMU]

Please show an example of a call, how to get a void * item?
 
Inactive Account
Inactive Account
Joined
Aug 13, 2017
Messages
29
Reaction score
0
Re: Source [MUEMU]

Anyone have idea how to fix dark horse skill? stomp/earthshake it wont push monsters/character but it damage it. anyone know how to fix this issue? @michael_admin
 
Back
Top