Making a mod menu is easy! (Here's how to make one with Python and Cheat Engine)

Поделиться
HTML-код
  • Опубликовано: 20 июн 2024
  • Want to know how mod menus work and how to make one yourself? In this video I'll show you exactly how to do that using Python and Cheat Engine.
    Huge thanks to BrainFM for sponsoring this video! Get 20% off at checkout by using the following link or using code "kianbrose":
    brain.fm/kianbrose?via=kianbrose
    Chapters:
    0:00 - Introduction
    0:32 - Addresses and pointers
    3:08 - Finding offsets
    5:59 - Turning pointers into a mod menu
    7:12 - Sponsor segment
    7:25 - Calculating base address
    8:16 - Coding the pointer
    9:02 - Reading & printing an address
    9:42 - Writing to an address
    9:53 - Freezing an address
    The method used in this video to be able to create mod menus uses Cheat Engine as a primary tool to find memory addresses and determine pointers to those addresses.
    Finding pointers this way is very time consuming and more modern games are likely to have some degree of protection against this and from my research I have been unable to find a way to find pointers to virtualized applications such as a game running inside an emulated android in bluestacks or a game running in windows inside VirtualBox.
    There are ways to create mod menus without needing to find pointers using methods called "Hooking" and "AoB" scanning, but since these methods are quite advanced I won't be covering them all in the same video since they require a video for themselves.
    Once pointers have been found, all that's really necessary is to use any memory editing library in any programming language to access, read and modify the addresses those pointers point to, the example in the video being Python. I would not recommend python for an actual mod menu as it's slow by design and the best choice in my opinion is to make them either in c++ or c#.

Комментарии • 1,2 тыс.

  • @KianBrose
    @KianBrose  2 года назад +537

    FAQ:
    1. I can't find the pointer to my address!!!!
    Finding pointers is never easy and newer games tend to have measures against this method, but you can always find the values manually through cheat engine and use those addresses together with the script without the pointer and that will work just fine, the only downside being having to find the address(es) every time the game is closed and opened
    2. I'm on mac
    That's a shame
    3. Does the python bit version matter? (64 vs 32 bit)
    From my testing I have found that you can use 64 bit python to read and write to addresses of both 32 and 64 bit programs, but when trying to use a 32 bit python installation to access a 64 bit program it will not work properly and give you some huge weird values
    4. What method usually works on all games?
    AoB scanning generally works regardless of what game it is, but that requires an entire video of its own and is the method I personally use. For those interested in researching the topic while the video is made, the AoB scanning module I use can be found here: github.com/AlexCatDev/ProcessMemory (Note: this is c#, not python)

    • @disrael2101
      @disrael2101 2 года назад +17

      that's a perfect video, i can't wait for the AOB tuotrial already.. learned SOO much from this 10mins video..!!!
      just few questions:
      1. how can we bypass when a game block ce from running at the same time? (which is most games i presume)
      2. if the preferred base value is already in use in memory how would we figure the correct base address to use the offset to figure the correct value we want to edit?

    • @KianBrose
      @KianBrose  2 года назад +19

      @@disrael2101 Most games that block ce just check if a program called "Cheat engine" is running in the background, so renaming it often does the trick. More advanced games check if memory is being accessed by a process which shouldn't be allowed according to the game logic which causes the game to shut down, lots of ways.
      2. You would need to find a way to find the preferred base value of the program from code without hardcoded calculations which is as far as my research went not possible in python

    • @disrael2101
      @disrael2101 2 года назад +7

      @@KianBroseVery interesting information, just couple more questions,
      1. How the preferred value is gurnautee to work if it may be in use by other programs at the time of loading the game?
      2. How people create cheats to multiplayer games where the devs block access to memory outside the allowed list of processes?
      3. Can we use ce to find backdoor in softwares / os or even on a website?

    • @KianBrose
      @KianBrose  2 года назад +7

      ​@@disrael2101 1. Nothing is ever guaranteed to work, I'm not sure I understand the question enough to be able to answer it
      2. They either reverse engineer the application itself and remove the anticheat or find a way to work around it, I have never done this before so I don't know the specifics
      3. If your definition of "backdoor" is a way to gain complete control of software/os/server hosting a website then no. You can however use cheat engine to mess with license keys which is how most keygens are created

    • @disrael2101
      @disrael2101 2 года назад +3

      @@KianBrose the first question was about the base preferred address, which may be in used by other programs, what can we do in that case, just manually find it each time?
      2. Will you teach us to reverse engineering apps in the future vids?

  • @BloxxingDinosaurus
    @BloxxingDinosaurus 6 месяцев назад +73

    "There's a variable that controls whether you have pressed the Like Button."
    And at that moment, a rainbow border suddenly appeared around the Like/Dislike panel. Very cool addition.

    • @KianBrose
      @KianBrose  6 месяцев назад +7

      ty

    • @yeetus5653
      @yeetus5653 4 месяца назад +5

      omg i didnt even know that can be modified!

    • @vicktorviggo2097
      @vicktorviggo2097 4 месяца назад +3

      exacly what i though so i went to the comments xd

  • @changnong8082
    @changnong8082 Год назад +64

    This video is "scripted" and thus is very clear, and easy to follow. Other authors' videos are often improvised and thus contain too much redundant part and irrelevant talks. To sum up, Kian did a very good job.

    • @KianBrose
      @KianBrose  Год назад +20

      YOu had me in the first part not gonna lie

    • @Boostedtypist
      @Boostedtypist 7 месяцев назад +1

      lol same@@KianBrose

  • @justhuman9551
    @justhuman9551 Год назад +36

    This video is insanely good. Great editing and overall quality. The information is presented in an easy-to-understand way with a visual explanation. Keep up the great content!

    • @KianBrose
      @KianBrose  Год назад +2

      Thank you! Will do

    • @alex-gg5yr
      @alex-gg5yr 5 месяцев назад

      Easy to understand my ass

  • @ByteBeacon9660
    @ByteBeacon9660 2 года назад +85

    Thank you so much for making these tutorials. This is exactly what I'm interested in. I really hope that you continue with the tutorials and maybe make some a little bit more advanced or in depth. Much love for you

    • @KianBrose
      @KianBrose  2 года назад +4

      I hope I can continue as well

    • @zdx_1023
      @zdx_1023 2 года назад +1

      Me too i am interested on making gta5 mod menus

    • @Mortyyy
      @Mortyyy 11 месяцев назад +1

      @@GameHackingGuru The market for cheats in online games is at an all time high right now. Best way to earn some money on the side.

  • @onceGoat
    @onceGoat Год назад +23

    Thanks bro finally someone who isn't posting malware or fake stuff, you deserve my subscribe!

  • @Stormface16
    @Stormface16 2 года назад +9

    Nice work man! Keep it up, your quality rises so quickly

  • @daddyofalltrades
    @daddyofalltrades 2 года назад +20

    Beautiful stuff 🔥 Need more of this content please !

    • @KianBrose
      @KianBrose  2 года назад +1

      Will do! Takes a while to make these xD Not because theyre thaaat hard to make, but because I am a
      Certified Expert Procrastinator™

    • @kinggio4553
      @kinggio4553 2 года назад

      @@KianBrose love it bro thank you ❤️

  • @Jdeadevil
    @Jdeadevil 6 месяцев назад +1

    Your quick explanation as to what pointers are is better than any tutorial I've seen yet. But I already know how to use CE so maybe I'm a little biased, but other tutorials have a bad habit of explaining how to do it without giving a simple explanation first.

  • @r0x304
    @r0x304 2 года назад +12

    Holy crap!! This is wonderfully put and so detailed at a good speed. Love you man!

    • @KianBrose
      @KianBrose  2 года назад

      Glad you enjoyed it!

  • @zoltanhanzel9661
    @zoltanhanzel9661 13 дней назад

    Hey, this tutorial helped me a lot. i been learning AHK (AutoHotKey) for 1 year now, and i have been trying to make mod menu's, and this video caused my success. Thanks bro, you're a legend.

  • @jytdjkcjmliyukdthm991
    @jytdjkcjmliyukdthm991 18 дней назад

    Great video! I know nothing about pointers but you managed to make me understand it all

  • @YISTECH
    @YISTECH 2 года назад +11

    well explained!
    already knew python, just found out how cheat engine works.
    Looks like a ton of fun

    • @KianBrose
      @KianBrose  2 года назад +2

      It is!

    • @sandrawilliams1659
      @sandrawilliams1659 2 года назад

      Hey quick question I know it's been a couple months, but I'm currently trying to find a good online class/s to learn python and C++. Could you point me in the right direction? And yes I'm doing my own searching and have asked others, just don't want to waste my time with something that is useless by accidentally going to a wrong websit.

    • @KianBrose
      @KianBrose  2 года назад

      @@sandrawilliams1659 hmmm, honestly i can't recommend anything since the best way to learn is to just start programming on your own

  • @InVizTempo
    @InVizTempo 2 года назад +366

    I'm so happy you're getting recognition because the way you explain things plus the speed at which you do it is just perfect.
    Keep up the great work.

    • @KianBrose
      @KianBrose  2 года назад +4

      Thanks! Will do

    • @antoninperbosc1532
      @antoninperbosc1532 2 года назад +2

      "things plus the speed at which you do it is just perfect."
      The topic is interesting but not perfect in my pov.
      This tutorial could be more interesting if :
      - He didn't put a very annoying / boring song in background ... believe it or not anybody do not share the same taste for songs /sound ...
      - He could take his time and force himself to correct his pronunciations dificulties with words sound s / ch instead speaking like "Speedy Gonzales under cocaine " ... believe it or not when you work in a compagnie and/or explain something to other persons if you speak too fast and people have dificulties to understand ... you will have big problem ...
      - The fact to speed as quick as possible the shootscreen on your tuto is not a good idea too ... if we slow down the video 0.75 some screen stay less than 1 second ...
      - For this kind of topic this video 25 to 30 minutes could be a good good timing.
      Interesting tuto but ... and as you know in communication no sentence before this magic word "but" is important ... he has good topics and knows so if he wana skyrocket on youtube he must work on the "shape" of his video and think that his target are persons who wana learn, not people who already knew how to deal.

    • @KianBrose
      @KianBrose  2 года назад +6

      ​@@antoninperbosc1532 Thank you for taking the time to write your advice
      Honestly the hardest part of any video in my opinion is the music, I just don't know how to do it properly, but I don't think just plain silence is a good idea either...
      As for the speed, since a video is something that can be paused and played back I'm doing everything as quickly as possible to waste as little time as possible

    • @itscookies7753
      @itscookies7753 Год назад

      @@KianBrose can u do afk 24/7 on online game

    • @blazefarlight84
      @blazefarlight84 Год назад

      10k Bawat Pamilya

  • @EmpireE696
    @EmpireE696 2 месяца назад

    I was looking for this topic a lot, you really explained it in the best and simplest way, I am really grateful to you. Good luck

    • @KianBrose
      @KianBrose  2 месяца назад

      Glad it was helpful!

  • @Drag0nSl4yer18
    @Drag0nSl4yer18 5 месяцев назад +1

    You know, I am 30 years old and started my programming journey with python a few months back. THIS has to be the most fun/educational/value_packed video out there. Thanks for sharing your knowledge and thanks for helping out with an absolutely other project of mine :D

    • @KianBrose
      @KianBrose  5 месяцев назад +1

      glad to hear that!

  • @Gurnoorthegamer
    @Gurnoorthegamer 5 месяцев назад +26

    Is it just me or did the like button glow rainbow when he said there was a variable if I like the video or not

    • @user-nh7pe6kc7u
      @user-nh7pe6kc7u Месяц назад +1

      I also saw that, RUclips's a chang'in

    • @gaonemagagwa5773
      @gaonemagagwa5773 Месяц назад

      Had to go back to see if I really saw it

    • @rsgmj
      @rsgmj Месяц назад

      time stamp?

    • @subiedeeznutz
      @subiedeeznutz Месяц назад

      there's a variable to tell if you're schizophrenic or not

    • @grim-xc7ij
      @grim-xc7ij Месяц назад

      0:16​@@rsgmj

  • @littricks3631
    @littricks3631 2 года назад +48

    I have always been interested in reverse engineering.This one's turning out to be my dream channel.Keep it up!

  • @8BitGamerYT1
    @8BitGamerYT1 7 месяцев назад +1

    Insanely productive video.
    No bs

  • @chaxiraxi_ytb
    @chaxiraxi_ytb 4 месяца назад +2

    Hi! Using this pip package makes Read and Writes to process memory really easy and handful. But before finding your video, I managed to do the same by importing the kernel32 DLL from the Windows API using the built-in ctype module. That means that we are directly calling C functions from the Windows API within our Python script. While this is trickier and requires more lines of code to do the same thing, this is a wonderful way to learn how low-level stuff works while still using an easy high-level language like python! This is how I learnt the basics of assembly and memory management using Cheat Engine and creating my own trainer with Python while calling the original Windows API

    • @KianBrose
      @KianBrose  4 месяца назад

      Oh yeah for sure that's a better method, but this one is simpler xD

    • @Wojtek_1777
      @Wojtek_1777 4 месяца назад

      @@KianBrosecan you make a video about making a mod menu have gui with tkinter or pygame please I haven’t been able to get my crappy one to work

  • @ScreamingManiac
    @ScreamingManiac Год назад +86

    I've used cheat engines like the ones you find on wemod before but its cool to see what a cheat engine is actually doing. I studied abit of computer structure in college so I was aware how computers store memory but its interesting to see how memory can be easily manipulated.

    • @KianBrose
      @KianBrose  Год назад +10

      indeed! It's just knowing da wae with python

    • @greysky2933
      @greysky2933 Год назад +2

      @@KianBrose I see what u did there

    • @Hydrax_Real
      @Hydrax_Real 7 месяцев назад

      Anyone Realize when he said like the like button turned chroma colar

    • @Azertyyys
      @Azertyyys 5 месяцев назад

      Cheat engine = adware in installer
      wemod = monthly payment
      just dont use cheats at this point

    • @Cainny
      @Cainny 5 месяцев назад

      Yes because those are definitely the only two options to cheat.@@Azertyyys

  • @johnnylego807
    @johnnylego807 6 месяцев назад +3

    Wait……. 0:17 HOW DID YOU DO THAT 😂😂 your very creative. I noticed the Like button glow when you said that. Very cool, didn’t even know that was possible.

    • @KianBrose
      @KianBrose  6 месяцев назад +1

      rainbow magic

    • @johnnylego807
      @johnnylego807 6 месяцев назад

      @@KianBrose Legend 🤣💪

  • @user-ty8mb9sr8v
    @user-ty8mb9sr8v Год назад +1

    I just watched ur video now and it was wat av been looking for bro..... thanks champ

  • @marcoisplaying3859
    @marcoisplaying3859 Год назад +1

    Yoo I learned, appreciate the knowledge you share Liked and subscribed! Keep it up Kian.

  • @storyofbo
    @storyofbo 2 года назад +9

    This is amazing! Where did you go to learn all this kind of stuff? School, google, forums, friends?

    • @KianBrose
      @KianBrose  2 года назад +17

      Google, lots and lots of google
      I find modern education to be sort of irrelevant, just learn what you want as you go by looking for it

    • @LegendaryITA
      @LegendaryITA Год назад

      @@KianBrose W

    • @xtdycxtfuv9353
      @xtdycxtfuv9353 11 месяцев назад

      @@KianBrose🤨

  • @sushantpatil7950
    @sushantpatil7950 2 года назад +205

    We need more Python bots please ❣

    • @KianBrose
      @KianBrose  2 года назад +30

      Theres so many videos to make xD

    • @walidtlm2788
      @walidtlm2788 2 года назад +8

      @@KianBrose bro just one question if u know PUBG MOBİLE is there any chance that anyone can hack the UC in it or let me say the units that used to inapp purchase

    • @KianBrose
      @KianBrose  2 года назад +9

      @@walidtlm2788 probably not to be honest

    • @hugowinnberg
      @hugowinnberg 2 года назад +11

      @@walidtlm2788 money is stored on the servers and then you need to hack the servers and like aimbot is memory that's stored on your computer that's something you can use for example aimbot

    • @racapadexxa_
      @racapadexxa_ Год назад +1

      ​@@walidtlm2788 You can change the ammount of money you have but you won't be able to use them since the server checks your real balance to make purchases. In the end is like Monopoly cash

  • @afhartuaeru
    @afhartuaeru Год назад

    really nice tutorial u explained everything very well and the speed of which you were explaining is perfect :)

    • @KianBrose
      @KianBrose  Год назад

      thanks! Glad you liked da speed

  • @angetlx883
    @angetlx883 Год назад +1

    BROTHER, YOU ARE THE BEST!!! You oooh really helped me!! THANK YOU VERY MUCH!

  • @DexNeXuS1
    @DexNeXuS1 2 года назад +3

    Hey there. I was wondering how I would make a python script that started running when a pointer value changed. Like when your health drops it automatically run. Can you also write that pointer value to a text file?

    • @KianBrose
      @KianBrose  2 года назад +2

      Theoretically you can put the statement that reads the value of the address in an infinite while loop that will only stop once the value is set to something you want, here's a rough theory behind it:
      var = False
      while not var:
      pointer_val -read the value of your pointer here-
      if pointer_val == something_you_want:
      var = True
      - do something -
      hope that's understandable
      As for writing a string to a text file:
      file_object = open('file.txt', 'a', encoding='utf-8')
      file_object.write(f'{pointer_variable}
      ')
      file_object.close()

    • @DexNeXuS1
      @DexNeXuS1 2 года назад

      @@KianBrose that’s brilliant yeah that would work really well I’ve just started doing coding and I’m not great at it. Made a randomiser that never repeats until it’s used up numbers 1-50 then restarts. A few read and write things. Lists and stuff but yeah very basic but I’m wanting to do a few more things. This is so helpful thankyou. Your video was very well done by the well really insightful.

    • @DexNeXuS1
      @DexNeXuS1 2 года назад +1

      @@KianBrose also. Sorry again. Would I have to start the python script initially? And how would I stop the while loop if I’ve made it so it would run constantly (whole duration of gameplay). If that makes sense. Is there another way to stop it.

    • @KianBrose
      @KianBrose  2 года назад

      @@DexNeXuS1 glad you liked it!

    • @KianBrose
      @KianBrose  2 года назад

      @@DexNeXuS1 yes, you can use while loops with conditions that will eventually break when something happens as I showed in the first snippet

  • @marioyt11
    @marioyt11 2 года назад +3

    Bro we need laptop to do mod or we can do on any device

    • @KianBrose
      @KianBrose  2 года назад +1

      You do need a PC to make the mod yes

    • @marioyt11
      @marioyt11 2 года назад +1

      @@KianBrose tanks bro and happy easter

  • @lenoirx
    @lenoirx Год назад

    Interesting, and very informative. Good job!

  • @raisincains337
    @raisincains337 Год назад +2

    The way you find pointers is much faster than the way i used to!

  • @user-jg6kg1hn1k
    @user-jg6kg1hn1k 2 года назад +6

    True fact: he is in the same cave as tony stark in iron man 1

    • @KianBrose
      @KianBrose  2 года назад +1

      Lol, yep my walls are literal big rocks

  • @superdepressif6047
    @superdepressif6047 8 месяцев назад

    It was very easy to understand I like how you explain using analogies! I'm curious about game hacking and it's not easy to find a good video like this

    • @KianBrose
      @KianBrose  8 месяцев назад

      glad to hear that!

  • @xAESEC
    @xAESEC 2 месяца назад

    Thx, a great explanation video, espacially the offset-part

    • @KianBrose
      @KianBrose  2 месяца назад

      Glad it was helpful!

  • @tom62926
    @tom62926 2 года назад +1

    great vid man!

  • @AaronGamerCool89
    @AaronGamerCool89 Год назад +1

    finally i found another swedish tech pro, keep up❤

  • @cmaciosek8480
    @cmaciosek8480 2 года назад

    Love your content! Keep up the greate work!

  • @beefybeef1
    @beefybeef1 5 месяцев назад +1

    Thanks for the tutorial man!, i made a executer runner for roblox thanks to this vid

  • @luxosgamer1998
    @luxosgamer1998 Год назад

    Cool bro! greetings from Central America

  • @thenoddingturtle
    @thenoddingturtle Год назад

    I just started watching this video, so I'm not familiar with the content or the channel in general, but I really appreciate the lack of "Hello my name is X and today we'll be doing Y". Nice and straight to the point.

  • @Mrawesome100046
    @Mrawesome100046 2 года назад +1

    Great vid. 👍🏾

  • @farmacialasmariasca6838
    @farmacialasmariasca6838 Год назад +1

    good work king, love you

  • @zharfandanial9030
    @zharfandanial9030 2 года назад

    Love ur gaming bots tutorial. 👍🙏 Thankyou

  • @0797cjm
    @0797cjm 2 года назад +1

    Your living space is rad 🤙🏼

    • @KianBrose
      @KianBrose  2 года назад

      Thanks, my cave is nice and cozy

  • @MaxPlanckEdit
    @MaxPlanckEdit 5 месяцев назад

    Helpful video after I watched the video I found out that there is subscribe variable which I executed immediately :D

  • @lucasanddre
    @lucasanddre Год назад

    You rocked in this tutorial! 🤟

  • @MelonScripter
    @MelonScripter 4 месяца назад

    really helpful!!, made my own menu for a sp game

  • @tinsku332Xd
    @tinsku332Xd 5 месяцев назад

    Very interesting video :D

  • @MrJestriktheJester
    @MrJestriktheJester 2 года назад +2

    YES!!!! FINALLY THE LEGEND HAS COME BACK TO PUBLISH A NEW VIDEO!!!!
    I WAITED SOOOOOOO LONG!!!!
    I LIKE YOUR VIDEOS BECAUSE IT'S SO EASY TO UNDERSTAND!!!!

  • @hash_81
    @hash_81 Год назад +1

    Good, thanks for share!

  • @DaZe1Cinema
    @DaZe1Cinema Год назад +1

    Teaching me new things everyday

  • @aubreydebruyn84
    @aubreydebruyn84 10 месяцев назад +1

    The best subscription request.

  • @skyzecheater
    @skyzecheater Год назад +1

    Thank you mate

  • @thehonestdude1067
    @thehonestdude1067 Год назад

    What an amazing video

  • @KrusherMike
    @KrusherMike Год назад

    Bruh, I've been grifting through all this.
    Loving your breakdowns. 🤙

  • @galisma
    @galisma Год назад +2

    Nice video

  • @Youtubeusermann
    @Youtubeusermann Год назад

    Nice video, easy sub

  • @saaofficial5415
    @saaofficial5415 2 месяца назад +1

    I didn't know that Cheat Engine was actually such a complex program considering that that was one of the first apps I downloaded from the internet...

  • @shillenzez549
    @shillenzez549 2 года назад

    your job is amazing :Dd

  • @AnthonySegarra-wt9wq
    @AnthonySegarra-wt9wq 3 месяца назад

    I am a CS student and have never heard pointers explained better than in your 15 second breakdown

  • @hasanmahmud2016
    @hasanmahmud2016 Год назад +1

    Works good, tnx

  • @musicaway9370
    @musicaway9370 Год назад

    OMG Thank you so much

  • @AniWorld_HD
    @AniWorld_HD 6 месяцев назад

    Nice work ! :D I will try it later with Ratopia

  • @N1K0420
    @N1K0420 11 месяцев назад

    wow didnt understand anything although you explained it perfectly and watching your cheat videos is damn entertaining, hope you get your playbutton soon

  • @coollapiz3570
    @coollapiz3570 6 месяцев назад +1

    Thanks for the knowledge you gave me I am going to use to bypass anti cheats and develop malicious cheats for games, thanks! now im learning kernel level injection

  • @crispy.caesus
    @crispy.caesus Год назад +1

    damn, this is really interesting, thanks

  • @DexVPN
    @DexVPN 7 месяцев назад

    ok the like button lighting up rgb when he mentioned it was sick

  • @OldVideoGameNerd
    @OldVideoGameNerd 9 месяцев назад

    Even i dont use mod menus and not planning on it its helpful to learn codeing

  • @Travis-hb2bl
    @Travis-hb2bl 2 года назад

    Kians back again with his "educational purposes" video

  • @huzaifakhan6474
    @huzaifakhan6474 2 года назад +1

    Love from Lovelak !!

  • @thecrxguy420
    @thecrxguy420 Год назад

    I have so many ideas for this

  • @user-nh1ur5mx8r
    @user-nh1ur5mx8r 5 месяцев назад

    Thanks !! I build a mod menu with this

  • @dawju9
    @dawju9 Год назад

    i very like ur video ur awsome guy

  • @johndeaux8815
    @johndeaux8815 10 месяцев назад

    Thanks, this brings me back to getting 2.47 billion dollars in asphalt 8 in high school 😂 we would play that game at school as it was one of the only ones that would run on the laptops both hardware wise and network wise

    • @KianBrose
      @KianBrose  10 месяцев назад

      ayy the max 32 int value, 2.147, nice!

  • @marktsky1492
    @marktsky1492 3 месяца назад

    Love your vids ❤❤ more bot videos later please 🙏

  • @leothao6560
    @leothao6560 6 месяцев назад

    Well, that variable that made the like button shine made me auto liked the video.

  • @TheNikolaThing
    @TheNikolaThing 3 месяца назад

    One cool thing to know, the offsets are being written in python from down to up, or in programming terms, from right to left(least significant bit to most significant bit) due to windows systems being little endian.
    Some extra knowledge to get you to explore system memory and its core concepts :)

  • @systemachic
    @systemachic Год назад +1

    thanks BRo

  • @Moldoveni538
    @Moldoveni538 Год назад

    thanks
    😀😀😀😀😀

  • @wilmeraid2267
    @wilmeraid2267 2 года назад +1

    nice thx

  • @Cain532.
    @Cain532. Год назад

    Great tutorial! Another way you can do pointer scans is manually. After you activated that breakpoint you can see the address is stored in ebx. If you open the registers and look at ebx, then scan for that pointer value, save the results then re-launch the game. Set another breakpoint on that same function command and then update your search. This generates a substantially smaller pool of results and also takes a great deal less time!
    Will you be going over how to call/alter game functions? or maybe alter the assembly code instructions?

    • @KianBrose
      @KianBrose  Год назад +3

      thats ctually fairly advanced usage of cheat engine i dont even know how to do yet lol
      it does sound interesting,b ut atm im trying to like move away from tutorials into more "educational entertainment" so it's highly unlikely
      in regards to pointers, i dont really use them anymore, i was unable to use pointers with emulated processes like bluestacks so moved to another method called AoB scanning which ive used ever since

    • @Cain532.
      @Cain532. Год назад

      @@KianBrose AOB is very handy but can be time consuming especially if the memory ranges are MASSIVE. There are some fairly advanced techniques that use AOB to scan for a function call which returns the desired pointer to a struct.
      I used to rely HEAVILY on memory manipulation (what you showed) with AOB scans in the PS3/Xbox 360 days. Still useful! All the same, I'd love to see what sort of educational stuff you can come up with!

    • @KianBrose
      @KianBrose  Год назад

      @@Cain532. indeed, i remember my first aob menu taking a solid 5 minutes to scan for values even with methods like taking in 4086 (dont remember exact byte size, multiple of 8) bytes of memory to read at once to minimize memory reads and other methods like that, i also find it quite a lot simpler than pointers once you get the hang of them

    • @Cain532.
      @Cain532. Год назад

      @@KianBrose haha Oooh I remember those days too... Awesome stuff man :) Definitely looking forward to seeing what I can learn from you!

  • @jika8895
    @jika8895 2 года назад

    Why you don't get much views? This was amazing

    • @KianBrose
      @KianBrose  2 года назад +2

      Because as youtube decided to remove the dislike button, people are now unable to judge the authenticity of educational content on the platform which naturally repels viewers from either looking for it or spending time figuring out whether it was good or not

  • @ForeignMadeIt
    @ForeignMadeIt Год назад +1

    Hey I stumbled upon your channel a while ago & I learned a ton! thank you. I been on this tutorial for a while. So far I can get the baseaddress to print the value but with offsets it cant seem to find it. Do i keep trying different offsets from the addresses loaded up?

    • @KianBrose
      @KianBrose  Год назад +1

      In modern games you need to do the pointer scans at least a few dozen times before getting rid of most false positives, but since for demo purposes I used the training program i only had to do it a couple of times

    • @ForeignMadeIt
      @ForeignMadeIt Год назад

      @@KianBrose ok makes sense. thank you. It's definitely a tedious process. Im going to try and do a python script to automate it all.

  • @Devx989
    @Devx989 9 месяцев назад

    Nice

  • @FakedAnime
    @FakedAnime 7 месяцев назад +1

    i love how the like button turns rainbow when you say like button

  • @enzosimionato2361
    @enzosimionato2361 Год назад

    looking forward to the video about AoB scanning..

  • @nivechan9438
    @nivechan9438 2 года назад +2

    what a god

  • @mazarinee
    @mazarinee Год назад +1

    A neat system I found was when I was introduced to Roblox hacking. You can scan for variables being used (adaptation of remotes) and eventually find the one you want by doing the action repeatedly until the variable shows up. You can create simple code to modify it then.

    • @KianBrose
      @KianBrose  Год назад

      indeed

    • @Catalysm
      @Catalysm 6 месяцев назад

      So you can modify variables in Roblox games with cheats?

  • @Pyrox06
    @Pyrox06 Год назад

    thx

    • @KianBrose
      @KianBrose  Год назад +1

      mmmmmmmmmmMMMMMMMMMMWWWWWWWWWWWWWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

  • @BIGQUAN
    @BIGQUAN 2 месяца назад

    yoo he said dat and the like button glew

  • @rcsibiu
    @rcsibiu Год назад

    I have used Cheat Engine for a lot of games and right now I am focused on The Long Dark (there is a detailed video on my channel). However I wish I could transform this into a mod menu which identifies all resources I need into the game and automatically turns them into the value I need.
    My experience with Phyton is zero but I will give it a try. Maybe it will work. In this video you used the CE tutorial which is a very easy "game" with only one variable but The Long Dark is much more complex, even if it uses the same principle: find the address and freeze it to where you like it.
    Huge thanks for the video

    • @KianBrose
      @KianBrose  Год назад +1

      To be honest, for a complex case with bigger games I'd recommend using AoB instead of pointers which is generally easier and more reliable, it will require using a c language like c# or c++

  • @kubamaly4070
    @kubamaly4070 7 месяцев назад +1

    0:16, when he says "the like button" the like button actually glows :DD

  • @trapoganda1660
    @trapoganda1660 Месяц назад

    I’m high asf and you taught me more in 20 minutes than school ever did.

  • @hangup8629
    @hangup8629 Год назад +1

    some corrections:
    1:48 - while technically true, its quite misleading in this context. Modern OSs don't actually give you direct access (atleast easily) to the physical memory in your computer, each process is given its own virtual memory space, it is completely empty, only filled with exclusively what the running program requires to operate, and so the addresses that are shown in cheat engine, and the ones you use to write your own mod menus, use these virtual memory addresses. It is entirely possible for processes to have resources allocated at the same virtual address, matter of fact, all system dlls are guaranteed to be located at the same virtual memory address in every process, partially because the OS relies on DLL injection for standard operation. This is also possible for user dlls - when an instance of one is loaded into memory, any subsequent mapping of it will use its base address, though only as long as nothing else is located there, until all instances of this dll are closed (to an extent, this is heavily dependent upon the version of windows, it might forget the base address right away, or it might take a system restart).
    7:33 - it should be noted that this way of getting the image base will likely never work in the real world. Starting with windows vista a mechanism called ASLR was introduced. This stands for Address Space Layout Randomization, a mechanism that ensures that the base image, stack and heap address won't always be the same. While at the time it was introduced the enforcement of this feature was quite lax, nowadays modern OSs and compilers are far more aggressive at applying it. It can still be disabled though, by modifying the applications PE headers (and in rare cases changing some settings in windows), which is what the CE tutorial executable does.
    For more indepth reading about ASLR you can check out - www.mandiant.com/resources/blog/six-facts-about-address-space-layout-randomization-on-windows.
    also i keep seeing the mention of AoB scanning in the comments to get around ASLR, it should be noted that this is not entirely necessary. To get the base address of an image, internally you can either use GetModuleHandle or CreateToolhelp32Snapshot, while externally only CreateToolhelp32Snapshot will work, for python I'm sure there's libraries that expose this functionality.

    • @KianBrose
      @KianBrose  Год назад

      Great comment, it was unfortunately buried in a weird youtube bug that I was notified today was fixed, you hit some kind of spam filter
      I did not know about most of those things outside of the existence of ASLR, I just knew that while it existed I never encountered it in the wild
      Personally my main reason for going with AoB nowadays is its just pretty simply and convenient to be honest, doesnt require injection, rarely requires anticheat bypass, simple and functional

  • @mellowrebel4618
    @mellowrebel4618 2 года назад

    For at least one game I have successfully concurred the elusive 2 cheats "POWER AND MASS" with Cheat engine. It may change from now game to new game but it remains for the game you are in at the moment. I use power or mass I just go to the value and enter 1000 to make power 1000 to Mass enter 200 and its 200. I stopped the game to rest and it may have changed but will come back and inform you of what it does.

  • @Shynnr
    @Shynnr Год назад

    I like your funny words magic man

  • @ilsigniore2260
    @ilsigniore2260 2 года назад

    amazing video and explanation. i was wondering if you could do some for games if that is possible?

    • @KianBrose
      @KianBrose  2 года назад +2

      Sadly I wont be doing any videos where I show how to use the pointer methods for a game since it's a horrible process and is starting to be nearly impossible to do in 2017+ games where a single pointerscan can take like 200 gb of disk space, but I'll very likely be making a video about how to use "AoB" scanning which is conceptually simple and very reliable
      This video was more of an introduction to how mod menus actually work, some of the logic behind them, memory addresses, what they are and what they do and how to make something really really simple with python

    • @ilsigniore2260
      @ilsigniore2260 2 года назад

      @@KianBrose ah alright well thats fine thank you very much for your response :D

    • @KianBrose
      @KianBrose  2 года назад

      @@ilsigniore2260 np

  • @87bocademivida
    @87bocademivida 2 года назад +1

    Nice vid.
    PS: You look like Steve Smith from American Dad,

  • @Luke24666
    @Luke24666 5 месяцев назад

    WHY DOESMY LIKE BUTTON GLOW WHEN HE SAYS IT?! EVERY TIME TOO