Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate

Autor Topic: Source of fix for Fire SLash skill being affected by Twisting SLash (Main 1.04E)  (Visto 866 veces)

0 Miembros and 1 Guest are viewing this topic.

Offline NghienMU Posteado: January 31, 2024, 11:28:56 PM | Modificado: January 31, 2024, 11:36:01 PM by NghienMU

  • 0 puntos por ventas
  • *
  • Rank: Experto
  • Posts: 168
  • Gracias recibida: 39
  • vn
Most current Main mu from 0.97 to S6 have this bug. This is source to fix this bug on main 1.04e. To fix on other mains you need to change the corresponding offsets of that main. Hopefully someone can supplement other mains.

IncreaseEffects.cpp:

Code: [Select]
#include "stdafx.h"
#include "IncreaseEffects.h"
#include "Util.h"

cIncreaseEffects IncreaseEffects;

cIncreaseEffects::cIncreaseEffects()
{
for (int i = 0; i < MAX_JOINTS; i++)
{
this->Joints[i].Live = 0;
}

this->Hook();
}

cIncreaseEffects::~cIncreaseEffects()
{

}

DWORD cIncreaseEffects::GetAddressJoints()
{
return (DWORD)&IncreaseEffects.Joints;
}

void cIncreaseEffects::Hook()
{
DWORD AddressJoints = this->GetAddressJoints();

SetDword(0x005F308B + 2, AddressJoints);
SetDword(0x006F80FF + 2, AddressJoints);
SetDword(0x0072D1E2 + 2, AddressJoints);
SetDword(0x00735E8E + 2, AddressJoints);
SetDword(0x00735F3A + 2, AddressJoints);
SetDword(0x00735F9A + 2, AddressJoints);
SetDword(0x00747D2A + 2, AddressJoints);
SetDword(0x00747D91 + 2, AddressJoints);

SetDword(0x00747D18 + 3, MAX_JOINTS);
SetDword(0x0072D1CC + 3, MAX_JOINTS);
SetDword(0x00735F88 + 3, MAX_JOINTS);
SetDword(0x00735F28 + 3, MAX_JOINTS);
SetDword(0x00735E78 + 3, MAX_JOINTS);
SetDword(0x005F3079 + 3, MAX_JOINTS);
}


IncreaseEffects.h:

Code: [Select]
#pragma once
#include "Object.h"

#define MAX_JOINTS 5000

struct JOINT
{
bool Live;
};

enum
{
RENDER_TYPE_NONE = 0,
RENDER_TYPE_ALPHA_BLEND,
RENDER_TYPE_ALPHA_TEST,
RENDER_TYPE_ALPHA_BLEND_MINUS,
RENDER_TYPE_ALPHA_BLEND_OTHER,
};

class cIncreaseEffects
{
public:
cIncreaseEffects();
~cIncreaseEffects();

void Hook();
DWORD GetAddressJoints();
JOINT Joints[MAX_JOINTS];

private:

};

extern cIncreaseEffects IncreaseEffects;


Video bug:

Gracias:


Offline lkt22 #1 Posteado: February 01, 2024, 12:02:39 AM

  • 0 puntos por ventas
  • *
  • Rank: Avanzado
  • Posts: 135
  • Gracias recibida: 62
  • br

Offline redf0x #2 Posteado: February 01, 2024, 03:52:58 AM

  • 0 puntos por ventas
  • *
  • Rank: Avanzado
  • Posts: 133
  • Gracias recibida: 1472
  • vn
i have fix on gs side work for all muemu :D
mydiscord redf0x4705

http://muredteam.com/
redf0x#4705 My discord

Gracias:


Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate


 

Related Topics

  Subject / Started by Replies Last post
8 Replies
2781 Views
Last post October 03, 2018, 08:26:26 AM
by Cloud
4 Replies
2780 Views
Last post August 21, 2022, 07:21:15 PM
by visionmu
9 Replies
1620 Views
Last post June 24, 2021, 02:34:52 PM
by JavixFer
1 Replies
2353 Views
Last post November 12, 2022, 08:31:27 PM
by c4nhsatcodong
12 Replies
1797 Views
Last post May 21, 2023, 11:36:40 PM
by sanlp