Let's Hack: Cuphead, Ep. 4 - Map Free Roam [Cuphead Cheats via Cheat Engine]

  Рет қаралды 11,939

Stephen Chapman

Stephen Chapman

Күн бұрын

Пікірлер: 35
@cheatstrainers4665
@cheatstrainers4665 7 жыл бұрын
There Is no stopping you today lol loving the vids bro.
@StephenChapman
@StephenChapman 7 жыл бұрын
+Kenneth Mc Making up for some lost time, lol. Glad you're sticking around. :)
@cheatstrainers4665
@cheatstrainers4665 7 жыл бұрын
I am always around buddy lol
@yorzengaming
@yorzengaming 7 жыл бұрын
I like how you simplify the way you hack games. thanks for the video sn34kyMofo keep it up man!
@StephenChapman
@StephenChapman 7 жыл бұрын
Happy to see you enjoy the videos! =)
@thebotfather7536
@thebotfather7536 7 жыл бұрын
Wow, I was completely unaware you could remove addresses from the initial address list, or that you could drag and drop selected addresses out of the list into a group. Thank you for that!
@StephenChapman
@StephenChapman 7 жыл бұрын
Glad you found something useful! =) You can remove addresses from the search results for any value type outside of "All." I initially thought it was a bug and reported it as such, but there's a reason for it...of which I don't recall at the moment, lol.
@chrisfayte8482
@chrisfayte8482 7 жыл бұрын
Awesome pal, Im enjoying it too.. Keep'em coming.
@FuzzyAason
@FuzzyAason 4 жыл бұрын
Can you give a separate video to teach us about... how do you know the decision to add a variable Globalalloc and choosing 1/4 or any other number behind it??
@FreeER
@FreeER 7 жыл бұрын
Nice basic teleport hack, might want to do a recap of setting hotkeys on the address to go along with this :)
@n0bn0b63
@n0bn0b63 7 жыл бұрын
woow bro 4 in 1 day nice Can you make a tutorial on Contract wars ?? WELL DONE XD
@ToonJavon
@ToonJavon 7 жыл бұрын
Is there a cheat to be able to play as mugman?
@TNHNhokHao
@TNHNhokHao 7 жыл бұрын
HI, Stephen. Just want to ask, what is the software running at your right hand corner. Which is the internet connection.
@StephenChapman
@StephenChapman 7 жыл бұрын
Hey there. It's a pretty old utility called NetSpeedMonitor. There are likely similar tools out there these days, but I've been using this one for so long that I just keep doing so. It's definitely handy!
@aestheticfox3
@aestheticfox3 7 жыл бұрын
Wow, your tutorials are a GEM, thank you so much for these!
@do_obruh
@do_obruh 7 жыл бұрын
it dosent want me to do it cuz it says failure allocating memory how do you do it
@iiinsane4
@iiinsane4 7 жыл бұрын
Stephen Sorry That I Ask Again But Will U Do A Tutorial For Stardew Valley
@StephenChapman
@StephenChapman 7 жыл бұрын
+iiinsane4 What kind of stuff are you wanting to see from that game? Have you tried to hack it yourself yet? What problems are you having if so? I may or may not get around to it; I used to have it on my list to do.
@iiinsane4
@iiinsane4 7 жыл бұрын
I Haven't Try To Hack It Myself, But I Just Wanna See What Things Are Possible To Be Done To IT.
@alexasmr3047
@alexasmr3047 7 жыл бұрын
Tutorial How to fly in this game ?
@SrLucavaL
@SrLucavaL 7 жыл бұрын
@Stephen Chapman Cool Tut and good explanations! But i was expecting a no-clipping! :P Have you already tried to check if any opcode accesses those addresses when you hit a wall? Thats the start point for a no-clip!
@StephenChapman
@StephenChapman 7 жыл бұрын
I actually was going to address no-clip in this video, but I'm saving it for another one since I plan to do it for both the map and in levels.
@HdHereidme
@HdHereidme 7 жыл бұрын
How do i do this basecoords thing for a text that uses [r11+rax+20],rdi r11 and rax being the addresses where the text is and its only half of the text is there, the other half uses mov [r11+rax+28],rbx
@StephenChapman
@StephenChapman 7 жыл бұрын
Since you can't move data between memory addresses (Example: mov [baseCoords],[r11+rax]), you'll need to use the lea instruction to first calculate a base address. See code snippet below with comments: *push rcx* //Stores value currently in rcx so we can now use that register. *lea rcx,[r11+rax]* //Calculates the address at [r11+rax] and stores the result in rcx. *mov [baseCoords],rcx* //Moves the value from rcx to our allocated address. *pop rcx* //Restores rcx to what it was before we started messing with it. Then you could add this address to your address list: [baseCoords]+20 After that, right-click on the address, hover over "Change record," click Type, select Text from the drop-down, set the length to somewhere between 9 and 16 (adjust it accordingly based on how much text is showing, and also consider checking the Unicode box if the text shows up oddly), then click OK.
@HdHereidme
@HdHereidme 7 жыл бұрын
Thanks.
@Layby2k
@Layby2k 7 жыл бұрын
Great Video mate thank you. Could do something with finding cheats for Android games running in bluestack? E.g. I can't for the life of me find the coins or gems in Plants vs Zombies 2. Trying to add heaps so it will sync across to my phone.
@StephenChapman
@StephenChapman 7 жыл бұрын
I did a video on exactly this topic quite a while back! kzbin.info/www/bejne/jqCVYaGspdV6o5I
@Layby2k
@Layby2k 7 жыл бұрын
Great Thank you
@maj_ra
@maj_ra 7 жыл бұрын
I did the debug thing from the first episode but it still crashes
@maj_ra
@maj_ra 7 жыл бұрын
Help plz
@kalas4199
@kalas4199 7 жыл бұрын
Don't you allocate byte according to the game being 32 or 64 bit, so why allocating 1 byte? I'm sorry I just can't understand it perfectly yet :P
@StephenChapman
@StephenChapman 7 жыл бұрын
This is what I was mentioning before about globalalloc() allocating 16 bytes at least no matter what you specify as a lower value. I didn't know it did that until today, lol.
@kalas4199
@kalas4199 7 жыл бұрын
Oh so even If I would put 08 or 04 It will allocate 16 bytes either way? Well If that's so It's pretty awesome, I guess hehe.
@kalas4199
@kalas4199 7 жыл бұрын
Haha great video :)
БУКВАЛЬНО НЕПРОХОДИМЫЕ ИГРЫ / Булджать
20:02
БУЛДЖАТь
Рет қаралды 2,5 МЛН
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 42 МЛН
Cuphead - All Secrets & Unused & Hidden & Early Bosses (Updated)
13:05
Awesome Gaming Land
Рет қаралды 1,1 МЛН
I Scraped the Entire Steam Catalog, Here’s the Data
11:29
Newbie Indie Game Dev
Рет қаралды 808 М.
It Took Me 500 Hours To Find These Combos
22:22
Exxo 😎
Рет қаралды 63 М.
Dear Game Developers, Stop Messing This Up!
22:19
Jonas Tyroller
Рет қаралды 781 М.
How The Binding of Isaac Was Made and Designed to Fail
25:17
ThatGuyGlen
Рет қаралды 1 МЛН
3 Hours vs. 3 Years of Blender
17:44
Isto Inc.
Рет қаралды 6 МЛН
Why has Black & White Been Abandoned? - Noclip Greatest Hits
28:44
Noclip - Video Game Documentaries
Рет қаралды 732 М.