Page 1 of 1

How to find Cooldown Timer in Dead Island 2?

Posted: Fri Nov 10, 2023 11:58 am
by A-ONE
Hi Everyone, i've been practicing make .CT with this game called "Dead Island 2"
but i can't find the Cool Down timer for Curveballs, i've been trying Count Up and Count Down Float and All value but i can't find real value address.
i only found address that has count down but when i freeze it nothing happened.

here's what i've found so far :
- Infinite Health
- One Hit Kill
- Durability
- Stamina
- Items not decrease
- No reload
- Instant & Unlimited Fury

i know there's another cheat table from "Tuuup!" that has a Instant Cooldown. but i don't know how to learn "Finding Real Value Address" from someone else's script.
i hope anyone can help
thank you!

Re: How to find Cooldown Timer in Dead Island 2?

Posted: Fri Jan 05, 2024 6:55 pm
by szalay_1
Have you tried breakpoint on execute ASM address ?

DeadIsland-Win64-Shipping.exe.trace+1734292: F3 0F 10 97 FC 04 00 00 - movss xmm2,[rdi+000004FC] >>>(our OP code)
DeadIsland-Win64-Shipping.exe.trace+173429A: 0F 28 CA - movaps xmm1,xmm2
// ---------- INJECTING HERE ----------
DeadIsland-Win64-Shipping.exe.trace+173429D: F3 0F 58 C8 - addss xmm1,xmm0
// ---------- DONE INJECTING ----------

Exception Breakpoint >> movss xmm2,[rdi+000004FC] = 0x1F4EE8F00 + 0x4FC = 0x1F4EE93FC 0x42340000 (00 00 34 42)

its cooldown float value 0x42340000 this value only decreasing when you upgrade later in game the cooldown time.
So in DMA memory edit to eg: 0xBF800000 then get immediately full bar.

No idea our "Tuup" how did found it because it only changes the Cool Down timer value when upgrade it !

And i have tried find this "cooldown timer" on PS4 console
like decreasing or increasing, in the usual search way
found fake float 1.f value for cooldown timer Bar :/

(sorry my bad English)