I decided to give a go at the tutorial minigames since I didn't realize there was such a thing.
Step 3 has a platformer game that you have to beat with 3 mooks running around. You have to step on all of the red blocks to "unlock" the door. However, once you unlock the door, the mooks instantly block the door from the top and the left, which means you cannot reach the door through conventional means.
So my current approach is to find the horizontal and vertical coordinates, get their pointers, make a makeshift "fly" system with hotkeys, use these to step on the blocks, then teleport over to the door, bypassing the mooks.
Here is my file for this game. Numpad 4 and 6 makes the Mario go left and right. Numpad 8 and 2 makes the Mario go up and down. The vertical movement is very janky so I suggest doing the "flight" with pause, once you get to the "ready to land" position, unpause, let the Mario step on the block and turn it green. Once you get all the blocks green and the mooks are ready to be a sore loser, hit numpad 5 and Mario will be teleported to the door instantly without touching the mooks.
Did anybody figure out the other approaches to this game? I think the blocks might governed under a switch system which toggles them from red to green once stepped on, but I had no luck finding it. They also mentioned something with collision, which I have no idea how to approach.
Third Tutorial Minigame
- The Mogician
- Table Makers
- Posts: 762
- Joined: Sat Mar 04, 2017 12:00 am
- Reputation: 556
Third Tutorial Minigame
- Attachments
-
- gtutorial-x86_64.CT
- (2.45 KiB) Downloaded 82 times
- The_Podstanar
- Table Makers
- Posts: 62
- Joined: Wed Sep 04, 2019 7:08 pm
- Reputation: 59
Re: Third Tutorial Minigame
Well a lot of things can be done here, i'll show you the one you mentioned above.The Mogician wrote: ↑Sat Aug 24, 2019 3:46 pmDid anybody figure out the other approaches to this game? I think the blocks might governed under a switch system which toggles them from red to green once stepped on, but I had no luck finding it. They also mentioned something with collision, which I have no idea how to approach.
Game has flag(bool) that if set will kill player. It is being set at gtutorial-x86_64.exe+DA78:
Setting BP on RET at gtutorial-x86_64.exe+DAB5 and checking top of stack(RSP) will lead to this func's caller at gtutorial-x86_64.exe+3AF64:
Nothing fancy here, if we analyze this func a bit it's clear that caller cleans the stack(cdecl). So for example, just changing PUSH RBX to RET at gtutorial-x86_64.exe+3AF20 will skip this entirely and we will have disable collision(godmode) type cheat. Example:
Code: Select all
[ENABLE]
"gtutorial-x86_64.exe"+3AF20:
db C3
[DISABLE]
"gtutorial-x86_64.exe"+3AF20:
db 53
Who is online
Users browsing this forum: Gear2ndGandalf