Page 1 of 1

Mass Effect . No Heat

PostPosted: Mon Dec 06, 2010 2:39 pm
by LykanthricAura
Ok. I went to some other site. And found this.

Code: Select all
// Mass Effect
// Game Version  : 1.0.14184.0

[ENABLE]
//=============================
// Hacking Points
// Heat dos not increase when shooting
MassEffect.exe+39295F:
db 90,90,90,90,90,90

//=========================================
// Original Codes
[DISABLE]
MassEffect.exe+39295F:
fst dword ptr [esi+00000290]


Now this one is for version 1.0. I using 1.2 or 3. Not sure. But I think I found the MassEffect.exe+adress value.

Its one of these...

0033EF2C

0033FA94

0033FA9C

Now how do I implement this? I tried just replacing the above code with the values. But the 3rd line gives me an error at db 90,90,90,90 line.

Re: Mass Effect . No Heat

PostPosted: Mon Dec 06, 2010 8:50 pm
by L. Spiro
Code: Select all
// Mass Effect
// Game Version  : 1.0.14184.0

[ENABLE]
//=============================
// Hacking Points
// Heat dos not increase when shooting
MassEffect.exe+39295F:
db 90 90 90 90 90 90

//=========================================
// Original Codes
[DISABLE]
MassEffect.exe+39295F:
fst dword ptr [esi+00000290]



L. Spiro