Page 18 of 28

Re: Resident Evil 4 Remake

Posted: Sun Apr 09, 2023 10:43 pm
by mateusre6g
Erlkonig wrote:
Tue Apr 04, 2023 6:45 am
Sakurarozu wrote:
Sun Apr 02, 2023 11:11 pm
anyway for a not be seen by enemy esp for ashley section?
Set enemy time scale to 0.25 and they will take ages to attack.
where is the table to do this please

Re: Resident Evil 4 Remake

Posted: Mon Apr 10, 2023 12:20 am
by Zanzer
mateusre6g wrote:
Sun Apr 09, 2023 10:43 pm
Erlkonig wrote:
Tue Apr 04, 2023 6:45 am
Sakurarozu wrote:
Sun Apr 02, 2023 11:11 pm
anyway for a not be seen by enemy esp for ashley section?
Set enemy time scale to 0.25 and they will take ages to attack.
where is the table to do this please
viewtopic.php?p=291737#p291737

Re: Resident Evil 4 Remake

Posted: Mon Apr 10, 2023 5:41 pm
by gir489
Image
Shoutout to the two madlads who got the balls to contaminate the leaderboards with me.

Re: Resident Evil 4 Remake

Posted: Tue Apr 11, 2023 3:00 am
by mateusre6g
Zanzer wrote:
Mon Apr 10, 2023 12:20 am
mateusre6g wrote:
Sun Apr 09, 2023 10:43 pm
Erlkonig wrote:
Tue Apr 04, 2023 6:45 am


Set enemy time scale to 0.25 and they will take ages to attack.
where is the table to do this please
viewtopic.php?p=291737#p291737
thank you friend

Re: Resident Evil 4 Remake

Posted: Tue Apr 11, 2023 4:20 am
by misterwashimashi
found out on youtube that the game has the same adaptive difficulty in re2r. probably explains why sometimes enemies are hard to stagger, become a bit spongy, and deal heavy damage in my playthroughs, since the game adjusts the standard difficulty to become a little closer to hardcore. would it be possible to have a table that can disable this like in re2r? a stable playthrough would be cool.

Re: Resident Evil 4 Remake

Posted: Tue Apr 11, 2023 5:23 am
by kaylenky
misterwashimashi wrote:
Tue Apr 11, 2023 4:20 am
found out on youtube that the game has the same adaptive difficulty in re2r. probably explains why sometimes enemies are hard to stagger, become a bit spongy, and deal heavy damage in my playthroughs, since the game adjusts the standard difficulty to become a little closer to hardcore. would it be possible to have a table that can disable this like in re2r? a stable playthrough would be cool.
Yeah theres a dynamic rank system where makes your damage lower by killing enemies, like re3 remake.

Re: Resident Evil 4 Remake

Posted: Thu Apr 13, 2023 12:54 am
by MakoNet404
am trying to find the value for mercenaries mode or story mode timer on game console but with no luck so many crashes with thousands of results, i dont have the game on pc, any tips would be greatly appreciated.

Re: Resident Evil 4 Remake

Posted: Thu Apr 13, 2023 6:46 am
by Alexia
Anyone have a code for infinite minecart HP? I see that Del Lago and the jetski have a cheat already, but not this one.

Re: Resident Evil 4 Remake

Posted: Thu Apr 13, 2023 8:32 pm
by krustytoe
Alexia wrote:
Thu Apr 13, 2023 6:46 am
Anyone have a code for infinite minecart HP? I see that Del Lago and the jetski have a cheat already, but not this one.
I suggest just using Inf Ammo No Reload and just shoot everything. For Chainsaw Bro just shoot his cart. Good luck.

Re: Resident Evil 4 Remake

Posted: Thu Apr 13, 2023 9:17 pm
by nolan2112
gir489 wrote:
Sat Mar 25, 2023 12:38 am
Here's my table.

Features:

Remove protection
Infinite Ammo (No Reload) (makotech222's)
Infinite Spinels
Infinite Items
Manipulate Current Selected Item
  • Item ID
  • Value
  • Weapon Manipulation
    • Condition
    • Ammo Type
    • Ammo Loaded
    • +1 (Pistol)
    • Edit Specs
      • Power
      • Ammo Capacity
      • Reload Speed
      • Rate of Fire
      • Exclusive
Infinite Armor
No Spread + No Recoil
Always first save
Easy Craft
Lake Monster Dies in One Hit
Unlocks and Ranking
  • Unlock All Extra Content
  • Infinite Completion Points
  • Always Get S+
  • Unlock All Challenges
The Mercenaries
  • Infinite Mayhem (Based on Cissa90's addresses)
  • Infinite Combo Time (Based on Cissa90's addresses)
  • Set Mercenaries Timer
The Easy craft and unlock all extra content crashes the game :(

Re: Resident Evil 4 Remake

Posted: Thu Apr 13, 2023 10:26 pm
by mi5hmash
Alexia wrote:
Thu Apr 13, 2023 6:46 am
Anyone have a code for infinite minecart HP? I see that Del Lago and the jetski have a cheat already, but not this one.
You can find the script below. It makes all the minecarts indestructible and will unlock the achievement at the end of the second ride. You still have to lean to not go off the track on turns. I'm not 100% proud of it, but at least it works.

Code: Select all

{ 
  Game: re4.exe
  Version: 7 April 2023
  Date: 2023-04-13
  Author: mi5hmash
}

[ENABLE]
// AOB_SCAN
aobscanmodule(AOB_MINECART_DAMAGE,$process,74 * 48 * * * 4D * * 46 * * * 20 48)
alloc(newmem,$1000,AOB_MINECART_DAMAGE)
// AOB_DEFINE
define(MINECART_DAMAGE,AOB_MINECART_DAMAGE+9) //+9
// AOB_SYMBOLS
registersymbol(AOB_MINECART_DAMAGE,MINECART_DAMAGE)

// SB (storeBytes)
alloc(SB_MINECART_DAMAGE,$5,MINECART_DAMAGE)
// SB_SYMBOLS
registersymbol(SB_MINECART_DAMAGE)
// SB_ASSIGN
SB_MINECART_DAMAGE:
readmem(MINECART_DAMAGE,$5)

// LABELS
label(code,return)

newmem:
  pushf
  cmp r10, 1
  je @f
  cmp r10, 3
  je @f
  reassemble(MINECART_DAMAGE) // mov [rax+r10+20],r9b
code:
  popf
  jmp return

MINECART_DAMAGE:
  jmp newmem
return:

[DISABLE]

MINECART_DAMAGE:
  readmem(SB_MINECART_DAMAGE,$5) // db 46 88 4C 10 20

unregistersymbol(*)
dealloc(*)

Re: Resident Evil 4 Remake

Posted: Thu Apr 13, 2023 10:51 pm
by gir489
nolan2112 wrote:
Thu Apr 13, 2023 9:17 pm
The Easy craft and unlock all extra content crashes the game :(
Nobody tell him!

Re: Resident Evil 4 Remake

Posted: Fri Apr 14, 2023 6:32 am
by Colart
Hi, gir489!
Is it possible to add the Lunker Bass ID to the ID list? Please

Re: Resident Evil 4 Remake

Posted: Fri Apr 14, 2023 1:39 pm
by gir489
Colart wrote:
Fri Apr 14, 2023 6:32 am
Hi, gir489!
Is it possible to add the Lunker Bass ID to the ID list? Please
I thought Black Bass (L) was the lunker bass, so I never bothered to check. I've fixed it.

Re: Resident Evil 4 Remake

Posted: Fri Apr 14, 2023 8:39 pm
by Razapudroshko
add stealth plz