Cheat Engine - Fly Hack / Multi-Jump

Поділитися
Вставка
  • Опубліковано 11 січ 2025

КОМЕНТАРІ • 69

  • @mastergames8123
    @mastergames8123 4 роки тому +3

    good explanation, you are great

  • @warcatbattalion
    @warcatbattalion 8 місяців тому +1

    scanning 1 or 0 takes humongous amount of time in big sized games

  • @Aequitas887
    @Aequitas887 Рік тому +1

    seems simple enough for a simple ghame but such a pain in the ass for newer modern game with a million things to scan for 0 alone.

    • @TheLegendOfLame
      @TheLegendOfLame 4 місяці тому

      Just gotta keep repeating the process til you get down to something more managable like 1000 results. From there you can do a manual binary search of all 1000 results by selecting your first result, shift selecting your middle-most result (or at least roughly middle most), pressing space to enable a lock on all of those first 500 or so results, do something in the game that you could test if it's actually locked or not, in this case jumping.
      If there's no difference, delete all of those results you toggled.
      If there is a difference, delete the 2nd half of results that you didn't toggle.
      Then you can repeat the process - highlight half of the results, press space, test it, delete the irrelevant half, etc.
      Should, worst case scenario, find your address in about 10 cycles of toggles.

  • @rikkoo
    @rikkoo 3 роки тому +1

    i wonder what happen if you kept that mov subset 7C to 1 the whole time

  • @diamondfamily1837
    @diamondfamily1837 10 місяців тому

    fun fact if you use the pause method plus 0 and 1 to check for death and restart you might get a lot but if you can spot the two specifically for it you can lock them allowing you to not die nor restart albiet I didn't figure out its code so you'd have to do that 😀

  • @Mr_Thoror
    @Mr_Thoror 11 місяців тому

    I have the coordinates of the x y z axis how to create the air jump in game via cheat engine I tried your way but it gives me an error when I change the z axis because when I jump only the z axis changes

  • @WXsama
    @WXsama 4 роки тому +1

    I succeeded in Human Fall Flat , thank u ! I'll try to do more

    • @WXsama
      @WXsama 3 роки тому

      can use in online,but you must the host

    • @WXsama
      @WXsama 3 роки тому

      [ENABLE]
      aobscan(inf_jmp,88 46 5C 8B 47 1C)
      alloc(newmem,$100)
      label(code)
      label(return)
      newmem:
      code:
      //mov [esi+5C],al
      mov [esi+5C],#1
      mov eax,[edi+1C]
      jmp return
      inf_jmp:
      jmp newmem
      nop
      return:
      registersymbol(inf_jmp)
      [DISABLE]
      inf_jmp:
      db 88 46 5C 8B 47 1C
      unregistersymbol(inf_jmp)
      dealloc(newmem)

    • @WXsama
      @WXsama 3 роки тому

      do you have an Outlook email,i can send you the CT

    • @WXsama
      @WXsama 3 роки тому

      sorry bro , china is banned discord , but i sent the email to you

    • @WXsama
      @WXsama 3 роки тому

      what about now,i sent again for another email

  • @JackAdams0
    @JackAdams0 3 роки тому +3

    the audio quality is so crisp and clear. like broadcast radio type

  • @ImperfectTuber
    @ImperfectTuber Рік тому

    how do you do it for games you can not jump?

  • @stevenwang8859
    @stevenwang8859 4 роки тому +1

    To Dear Tekkit Shawn , is this method can apply to other game that have the limit of do something certain number of time and make it no limitation so you can use as many time as you want to in game ? thanks

  • @haha_.1312
    @haha_.1312 3 роки тому

    can u do tutorial on fly in jump king please?

  • @VITAS874
    @VITAS874 Рік тому

    what: (please target another process) why this error

  • @darwinnexus6925
    @darwinnexus6925 4 роки тому +2

    Thank you so much!!!

  • @moneyboy503
    @moneyboy503 3 роки тому +1

    I know this video is super old but if anyone comes across this that understands assembly more than i do, please help. so im play Sly 3 on an emulator. I found the flag that tells the game whether i'm jumping or not. The issue is, it appears to be a shared flag spot for multiple actions I.E 0 - standing, 1 - Walking, 2 - Running, 3 - Jumping, 23 - Attacking etc. Freezing this value at 0 allows me to jump as high as i want but i cant move thereafter. im new to assembly but i have a general knowledge of coding but that only gets me so close. (I think) I essentially need to write an IF statement. IF == 3 Do Nothing (as in skip line or set to 1 to allow movement?) . ELSE allow function to run normally. is this possible? also, not sure if this means anyhing, but the value itself changes when the character state changes, there arent any (Je) OPcodes for me at least near above

    • @hodayfa000h
      @hodayfa000h 2 роки тому +1

      there is multiple ways but do you still need help? because if you do that is called a shared opcode you can see tutorials because i don't play that game to test my theories

    • @moneyboy503
      @moneyboy503 2 роки тому

      @@hodayfa000h I haven't looked into this game specifically in about since I made the post but I think I have the table saved. I'd appreciate a little help though for future reference, it could help for in another game

    • @hodayfa000h
      @hodayfa000h 2 роки тому

      @@moneyboy503 (this works on all games)
      shared opcodes are very common in games like really common to learn it you need to learn the basics of cheat engine but first you need to learn what they are
      shared opcodes are codes or instructions that control more than one thing you can use an auto assembler script to solve it the main commands are jne(jump if not equal){jumps if the thing isn't equal
      and cmp(compare or compare to)
      they are not the only ones but they are the easiest to use
      you need to learn
      like the first 6 steps of the cheat engine tutorial it isn't necessary but it helps a lot
      anyway all you have to do is look up for a tutorial because i can't fit everything in one comment and without something you can see so yes it is complicated but it is a really important thing and another important thing is learning assembly it is really easy if you just want to hack games

    • @hodayfa000h
      @hodayfa000h 2 роки тому

      @@moneyboy503 i can tell you a lot of things but really you might just not understand and it won't be useful if you don't know other things i am sorry i am just not good at explaining you can ignore what i said
      not reply if you want

    • @moneyboy503
      @moneyboy503 2 роки тому

      @@hodayfa000h you're fine, my degree is in computer science. I went in for coding, I'll get the basics but I won't have you type it all, at the very least could you point me in the right direction? You said shared opcodes?

  • @ex4mple69
    @ex4mple69 9 місяців тому

    what about unreal engine?

  • @aloshie1
    @aloshie1 2 роки тому

    how about in games where you cannot pause?

    • @moneyboy503
      @moneyboy503 2 роки тому +1

      I bound my Increased, Decreased, and Unchanged Value search hotkeys so I could hit that while the game would be in motion for games like that

    • @VITAS874
      @VITAS874 Рік тому +1

      @@moneyboy503 and how to do that?

    • @mugosquero
      @mugosquero 11 місяців тому +1

      One year later: you can pause the process Cheat Engine attached to by going to "Advanced options" and clicking the stop/pause icon. You may want to assign hotkeys so to speed this process up.

  • @محمد-ج5ض8د
    @محمد-ج5ض8د 4 роки тому

    it work with online game?

  • @FilianAfterHours
    @FilianAfterHours 3 місяці тому

    Doesn't really help with 64 bit games

  • @fct6701.
    @fct6701. 2 місяці тому +1

    This is useless. I tried exactly the same thing, and it doesn't work.

  • @samistoyanov5108
    @samistoyanov5108 4 роки тому

    Guys can u help me with this for pixel worlds

  • @Daniel-eg5sh
    @Daniel-eg5sh 5 років тому +1

    what if the game is online and cant be paused?

    • @tekkitshawn6782
      @tekkitshawn6782  5 років тому +6

      tsk tsk tsk

    • @joaobragamesquita6179
      @joaobragamesquita6179 4 роки тому

      Use 0.02 or .05 speed And accept the box pause the gaame while scanning

    • @ToobRust
      @ToobRust 4 роки тому +1

      @@PlayboyPrime lmao

    • @LexDex.
      @LexDex. 3 роки тому

      @@tekkitshawn6782 tsk tsk? tell me what to do when it cant be paused! :D

    • @legionmod2735
      @legionmod2735 2 роки тому

      Jump and pause the game the full game codes will stop changing untill paused

  • @vigneshvampire
    @vigneshvampire 5 років тому +1

    this is only for basic games not for god of war like games

    • @HahaYes
      @HahaYes 4 роки тому +3

      Well yes, but the method on more complex games is pretty similar

    • @vigneshvampire
      @vigneshvampire 4 роки тому

      @@HahaYes i cant find god of war 1 demo fly hack i tried it

  • @woatbgyt7420
    @woatbgyt7420 3 роки тому

    why it dosent work in online?

    • @CetutsDS
      @CetutsDS 9 місяців тому

      bcuz ur not the host if ur the host u take all the game's data so u can manipulate stuff in CE

  • @J9Rkz
    @J9Rkz 4 роки тому

    Thanks for the great video. But i am trying to hack games in android. Please i found no helpful videos in UA-cam. Can you please give tutorials for Android game hacks using game guardian. Thanks. 😍😍

  • @JoshP86
    @JoshP86 5 днів тому

    Sadly this is wortless, did the same as the vid says and nothing.

  • @paronzoda
    @paronzoda 3 роки тому

    Very good video

  • @HandyFox333
    @HandyFox333 3 роки тому

    Why are people trying to hack online games?

    • @hoshiburaito
      @hoshiburaito 3 роки тому

      and what's wrong? as long as it's not affecting anyone's game, I don't see any reason to worry.

  • @GGEZ0508
    @GGEZ0508 4 роки тому

    helpme

  • @wafuu6083
    @wafuu6083 Рік тому

    👏

  • @VITAS874
    @VITAS874 Рік тому

    its impossible

  • @VITAS874
    @VITAS874 Рік тому

    no working