Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate

Autor Topic: Ex-Team Latest Source MultiServer S6EP3  (Visto 93884 veces)

0 Miembros and 1 Guest are viewing this topic.

Offline Mazepa #320 Posteado: August 05, 2021, 05:09:25 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 7
  • Gracias recibida: 4
  • by
Hi! Please tell me how to change the attack speed of the characters?

There is no external configuration. You need to edit the GS source file ObjCalCharacter.cpp
Code: [Select]
	if ( lpObj->Class == CLASS_ELF )
{
lpObj->m_AttackSpeed = Dexterity / 50;
lpObj->m_MagicSpeed = Dexterity / 50;
}
else if ( lpObj->Class == CLASS_KNIGHT || lpObj->Class == CLASS_MAGUMSA)
{
lpObj->m_AttackSpeed = Dexterity / 15;
lpObj->m_MagicSpeed = Dexterity / 20;
}
else if ( lpObj->Class == CLASS_DARKLORD )
{
lpObj->m_AttackSpeed = Dexterity / 10;
lpObj->m_MagicSpeed = Dexterity / 10;
}
else if ( lpObj->Class == CLASS_SUMMONER ) //strong!
{
lpObj->m_AttackSpeed = Dexterity / 20;
lpObj->m_MagicSpeed = Dexterity / 20;
}
#ifdef MONK
else if( lpObj->Class == CLASS_MONK )
{
lpObj->m_AttackSpeed = Dexterity / 9;
lpObj->m_MagicSpeed = Dexterity / 9;
}
#endif
else
{
lpObj->m_AttackSpeed = Dexterity / 20;
lpObj->m_MagicSpeed = Dexterity / 10;
}
Thanks, but I changed the values in ObjCalCharacter.cpp and nothing changed


Offline vcore30 #321 Posteado: August 05, 2021, 12:41:59 PM | Modificado: August 06, 2021, 05:45:55 AM by vcore30

  • 0 puntos por ventas
  • *
  • Rank: Destacado
  • Posts: 97
  • Gracias recibida: 904
  • ru
@Mazepa
It has changed. In the C menu, information is taken from the formulas from main. In fact, everything works just the display of the C menu will not be correct.


I found. In place with ObjCallCharacter.cpp, you need to change the main.dll code so that there is the same data, otherwise it will be Speed ​​hack detect

Other.cpp
Code: [Select]
void Start::SpeedCalc()
{
#ifdef EX_SPEED_CALC

//Default
SetByte((PVOID)(0x00593C4D + 1), 20); //00593C4D + 1 -> str Speed -> 20
SetByte((PVOID)(0x00593C60 + 1), 10); //00593C60 + 1 -> Mag Speed -> 10
//Class 6
SetByte((PVOID)(0x00593C25 + 1), 9); //00593C25 + 1 -> str Speed -> 9
SetByte((PVOID)(0x00593C38 + 1), 9); //00593C38 + 1 -> Mag Speed -> 9

// Class 5
SetByte((PVOID)(0x00593BF7 + 1), 20); //00593BF7 + 1 -> str Speed -> 20
SetByte((PVOID)(0x00593C0A + 1), 20); //00593C0A + 1 -> Mag Speed -> 20

//Class 4
SetByte((PVOID)(0x00593BC6 + 1), 100); //00593BC6 + 1 -> str Speed -> 10
SetByte((PVOID)(0x00593BD9 + 1), 100); //00593BD9 + 1 -> Mag Speed -> 10

//Class 2
SetByte((PVOID)(0x00593B5E + 1), 50); //00593B5E + 1 -> str Speed -> 50
SetByte((PVOID)(0x00593B71 + 1), 50); //00593B71 + 1 -> Mag Speed -> 50

//Class 1 & 3
SetByte((PVOID)(0x00593B95 + 1), 15); //00593B95 + 1 -> str Speed -> 15
SetByte((PVOID)(0x00593BA8 + 1), 20); //00593BA8 + 1 -> Mag Speed -> 20

#endif
}

Gracias:


Offline Mazepa #322 Posteado: August 06, 2021, 06:16:16 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 7
  • Gracias recibida: 4
  • by
@Mazepa
It has changed. In the C menu, information is taken from the formulas from main. In fact, everything works just the display of the C menu will not be correct.


I found. In place with ObjCallCharacter.cpp, you need to change the main.dll code so that there is the same data, otherwise it will be Speed ​​hack detect

Other.cpp
Code: [Select]
void Start::SpeedCalc()
{
#ifdef EX_SPEED_CALC

//Default
SetByte((PVOID)(0x00593C4D + 1), 20); //00593C4D + 1 -> str Speed -> 20
SetByte((PVOID)(0x00593C60 + 1), 10); //00593C60 + 1 -> Mag Speed -> 10
//Class 6
SetByte((PVOID)(0x00593C25 + 1), 9); //00593C25 + 1 -> str Speed -> 9
SetByte((PVOID)(0x00593C38 + 1), 9); //00593C38 + 1 -> Mag Speed -> 9

// Class 5
SetByte((PVOID)(0x00593BF7 + 1), 20); //00593BF7 + 1 -> str Speed -> 20
SetByte((PVOID)(0x00593C0A + 1), 20); //00593C0A + 1 -> Mag Speed -> 20

//Class 4
SetByte((PVOID)(0x00593BC6 + 1), 100); //00593BC6 + 1 -> str Speed -> 10
SetByte((PVOID)(0x00593BD9 + 1), 100); //00593BD9 + 1 -> Mag Speed -> 10

//Class 2
SetByte((PVOID)(0x00593B5E + 1), 50); //00593B5E + 1 -> str Speed -> 50
SetByte((PVOID)(0x00593B71 + 1), 50); //00593B71 + 1 -> Mag Speed -> 50

//Class 1 & 3
SetByte((PVOID)(0x00593B95 + 1), 15); //00593B95 + 1 -> str Speed -> 15
SetByte((PVOID)(0x00593BA8 + 1), 20); //00593BA8 + 1 -> Mag Speed -> 20

#endif
}
Thank You very much!


Offline vcore30 #323 Posteado: August 06, 2021, 06:44:15 AM

  • 0 puntos por ventas
  • *
  • Rank: Destacado
  • Posts: 97
  • Gracias recibida: 904
  • ru
Who has not added to these sources the movement of objects by pressing the right button?


Offline Smith200 #324 Posteado: November 29, 2021, 03:03:29 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 22
  • Gracias recibida: 3
  • ad
Who has not added to these sources the movement of objects by pressing the right button?
If you know how to do it, please tell us. I've been tried and it were even worked, but completely not correct.


Offline nujd00 #325 Posteado: November 29, 2021, 04:21:03 AM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 364
  • Gracias recibida: 335
  • ph
Who has not added to these sources the movement of objects by pressing the right button?
If you know how to do it, please tell us. I've been tried and it were even worked, but completely not correct.


https://tuservermu.com.ve/index.php?topic=43574.0
try to use this, its latest

NUJD RABAGO

Offline qjmume #326 Posteado: January 28, 2022, 01:48:19 PM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 12
  • Gracias recibida: 1
  • cn
Don't open Gameserver.exe and main.exe :), source build in JPN
How should it be done.


Offline ArcaneMU #327 Posteado: April 05, 2022, 09:13:50 AM

  • 0 puntos por ventas
  • *
  • Rank: Destacado
  • Posts: 95
  • Gracias recibida: 8
  • il
1 - thêm positem hiển thị ảnh OK
2 - Fix tối màu Wings   Ok
3 - thêm quần áo npc   Ok   
  + Npc buff theo từng map
4 - fix bug move mini wing   Ok
  + Fix log thoát nv   OK
5 - theem connect nv   Ok
6 - fix log  thoat game   Ok
  + thêm nút end kẹp chuột   Ok
  + Fix crash skill sum      OK
  + Fix log user   OK
  + Fix lại bảng xếp hạng OK
  + Fix wing và áo choàng mịn màng hơn
7 - Thêm nút mua shop Donate   OK
8 - Bật chức năng Thêm damege cho Pet , kiểm tra file Pets.txt dòng "PetDurabilityDiv"   Ok
9 - Thêm kundun Gold sửa file drop hoặc item như kundun thường. ID 600   Ok
   + thông báo giết kundun đang làm :(
10 - Thêm interface ss2 OK       
   + Fix exp OK
   + Exp Master OK       >> Thank you @MaxVoll
   + Tọa độ Ok
11 - Mở giới hạn thêm 3 con sói tinh , kiểm tra 13 37 0 0 0 0 8,16,32 0 : OK
12 - thêm thông báo mix wing đồ +10 trở lên

 
   
https://www.youtube.com/watch?v=ticy8SuOXMY&feature=youtu.be

ejecuta LicenseReed, envíame el archivo License.ex, te enviaré la versión completa de las correcciones de errores
https://www.facebook.com/quanetcang


link caido, plz upload again  please


Offline khoalu #328 Posteado: April 15, 2022, 10:16:29 PM | Modificado: April 19, 2022, 11:49:02 PM by khoalu

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 7
  • Gracias recibida: 1
  • vn
Please tell me why Monster quest just work on quest 1, it doesn't go on quest 2 ?

p/s: oh i found problem already!


Offline Mayealdhost #329 Posteado: April 17, 2022, 10:27:46 PM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 59
  • Gracias recibida: 11
  • pe
Disculpa alguien iso funcionar el cliente ami no me deja abrir solo abre el antihack



Offline Mayealdhost #330 Posteado: April 20, 2022, 04:09:24 PM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 59
  • Gracias recibida: 11
  • pe
Alguien sabe porque el cliente me entra Lento y los files se ponen pesado.


Offline zhuimeng. #331 Posteado: April 25, 2022, 02:30:10 PM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 5
  • Gracias recibida: 0
  • cn
thanks for sharing. and i can try it .much thanks
Hello, friend. Can you teach me how to sinicize the client? My Chinese translation is garbled, weapons and m-key transmission are garbled, and it is also garbled after changing the source code and compiling.


Offline zhuimeng. #332 Posteado: April 25, 2022, 03:27:43 PM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 5
  • Gracias recibida: 0
  • cn
很不错 支持
朋友你好 可以加下QQ一起交流吗?


Offline Mayealdhost #333 Posteado: May 04, 2022, 01:05:23 AM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 59
  • Gracias recibida: 11
  • pe
because I get those messages in the ConnectServer



Offline Mayealdhost #334 Posteado: May 04, 2022, 01:59:13 AM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 59
  • Gracias recibida: 11
  • pe

Offline usersa #335 Posteado: September 25, 2022, 11:30:08 AM

  • 0 puntos por ventas
  • *
  • Rank: Liga mayor
  • Posts: 190
  • Gracias recibida: 61
  • gr
Does any one know when to edit this in source?
Cause i thing is bugged!

Sorry for bad picture but that the way client make it.

Publicar un anuncio Mu Online gratis - Mu Online Community GRATIS.
Post free Mu Online ads - FREE Mu Online Community
https://www.facebook.com/groups/274190243227367/

Offline yiy97054 #336 Posteado: October 03, 2022, 03:22:59 PM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 2
  • Gracias recibida: 0
  • cu

Offline yiy97054 #337 Posteado: October 03, 2022, 03:25:29 PM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 2
  • Gracias recibida: 0
  • cu

Offline hola23 #338 Posteado: December 21, 2022, 03:43:31 PM

  • 0 puntos por ventas
  • *
  • Rank: Liga mayor
  • Posts: 184
  • Gracias recibida: 4324
  • ar
alguien me ayuda a poner ON estos files?


Offline marvisur #339 Posteado: May 30, 2023, 08:31:48 AM

  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 76
  • Gracias recibida: 26
  • pe
Hola buenos días alguien tendrá una guía de como agregar set nuevos a estos files.


Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate


 

Related Topics

  Subject / Started by Replies Last post
24 Replies
15206 Views
Last post April 09, 2023, 10:07:47 AM
by scfmt
1 Replies
2480 Views
Last post September 25, 2019, 02:29:54 PM
by Terran
9 Replies
5414 Views
Last post April 18, 2022, 12:20:08 AM
by Mayealdhost
4 Replies
4292 Views
Last post June 07, 2023, 01:42:53 AM
by natias21
8 Replies
4091 Views
Last post November 22, 2021, 11:14:52 PM
by Alinor