Cheat Engine Tutorial Step 7 : Code Injection

Sdílet
Vložit
  • čas přidán 26. 04. 2019
  • In this tutorial I explain how to do basic Code Injection and explain the basics of an code injection auto assembler script
    www.cheatengine.org
  • Hry

Komentáře • 32

  • @FINDROBLOX
    @FINDROBLOX Před 3 měsíci

    dude im loving this ive only used cheat engine for basics like changing stat values and stuff but sometimes im limited and this just fixed everything for me and now i know why sometimes values wont change and stuff not just from this video but like your other videos thank you

  • @Greasemonkey6507
    @Greasemonkey6507 Před 2 lety

    Great tutorial! I understand you just fine, and I live in the States. There is nothing wrong with your accent mate.

  • @poryg5350
    @poryg5350 Před 2 lety

    I wonder, how would one make it a script that increases by 2 when on and decreases by 1 when off?

  • @atultripathi9166
    @atultripathi9166 Před 2 lety +2

    how to calculate jmp bytes?

  • @makilaki3695
    @makilaki3695 Před 4 lety

    В первый раз мучился но сейчас всё чики-пуки!
    Взламываю игры как семечки. :)

  • @daktuno
    @daktuno Před 2 měsíci

    I tried to add that to the cheat table afterwards. It told me to add [enable] and [disable] tags. I tried, but after I injected the code, the tutorial window crash and closed. lol

  • @intrer8601
    @intrer8601 Před 4 lety +10

    What accent is that? It sounds kinda french and dutch, but I'm not sure. Thanks for the video, it really helped!

    • @cheat_engine
      @cheat_engine  Před 4 lety +13

      It's supposed to be a Dutch accent lol

    • @srap988
      @srap988 Před 2 lety

      deutsch?

    • @test-rj2vl
      @test-rj2vl Před 6 měsíci

      When you turn on CC then you will even see that auto generated captions are Dutch 🙃

  • @MasterJohnny007
    @MasterJohnny007 Před 4 lety +10

    And why would anyone google "hedgehog belly"? o.O
    Care to explain? ^^

  • @annieetflorian106
    @annieetflorian106 Před 4 lety +1

    Avec des sous titres en plusieurs langue ce tuto serait vraiment parfait.

  • @EricCartmanFTW
    @EricCartmanFTW Před rokem

    what does he say from 1:37-1:41?

  • @test-rj2vl
    @test-rj2vl Před 6 měsíci

    Can you explain that jmp short? Normal jmp would do something wrong? Doesn't jmp take addresses?

    • @cheat_engine
      @cheat_engine  Před 6 měsíci

      No. jmp short is just 2 bytes long and might sometimes be preferred but in the end it doesn't matter

  • @alexP9T
    @alexP9T Před rokem

    What prog language is this?

  • @alikaracadev
    @alikaracadev Před 4 lety

    awesome video explaing thins for noobs like me

  • @Chillico
    @Chillico Před 3 lety +1

    Um it says error not all code is injectable (Error in line 7 (globalAlloc(newmem,8)) :Error allocating memory)
    Are you sure you want to edit this

    • @cheat_engine
      @cheat_engine  Před 3 lety

      any reason you're using globalalloc? it's only useful if you have other scripts accessing newmem. (it allocates once so usually a bad thing for newmem which tends to be unique per script)
      besides that, make sure you are attached to a process

    • @Chillico
      @Chillico Před 3 lety

      @@cheat_engine it was for Genshin Impact with a script

  • @charlo12
    @charlo12 Před 3 lety +2

    lmao i made it so that it subtracted 2, not added 2

  • @Sam-ob3sb
    @Sam-ob3sb Před 9 měsíci +1

    its really hard to understand what you are saying

  • @someone-mk8zr
    @someone-mk8zr Před 3 lety

    doesnt work i try to hit it doesnt show anything

  • @poshinky1701
    @poshinky1701 Před 3 lety +3

    iam litterly bad at english + his accent iam DEAD

  • @shinayaperterson7170
    @shinayaperterson7170 Před 4 lety +1

    nice accent

  • @MasterJohnny007
    @MasterJohnny007 Před 4 lety +2

    I don't understand why you added "short" and "long".
    Your accent isn't helping either :(
    But it worked for me anyway, I just wrote
    "add dword ptr [rsi+000007E0],02
    jmp exit"
    (without "") where the code should be placed and that's it.
    Thanks for the video, wouldn't have been able to do it without it :)

    • @cheat_engine
      @cheat_engine  Před 4 lety +3

      short and long are just ways to tell the assembler to generate specific code. e.g if you don't use it then CE will just assume it's long even when you could have used less bytes