Tip

그냥 여기저기 돌아다니다 보니 있길래 가져와서 써봅니다.

어차피 아실분들 다 알거고 관리 영자도 빨리 알아서 수정좀 했으면 하는 바램입니다.

방식은 메모리 값을 바꿔주는 방식이라 게임을(gameloop) 실행할때마다 값을 지정해줘야 한다.

 

준비물

gameloop

ProcessHacker

cheatengine

 

코드 준비물

#반동 x

기존 코드    00803F0000803F3333933FCDCC8C3F00007041000010419A99C93FACC527370000A040

변경할 코드 0000803F0000803F3333933FCDCC8C3FF0237449000010419A99C93FACC527370000A040

 

#스피드핵(총기마다 이속이 달라서 해당 총기에를 들었을 경우에만 이속이 결정된다

 

 

  • M4
  •  
  • Search Value: 1.08585000038
  • Change Value: 1.69
  •  
  • AK47
  •  
  •  
  • Search Value: 1.03834998608
  • Change Value: 1.63
  •  
  • M21
  •  
  •  
  • Search Value: 1.03170001507
  • Change Value: 1.65
  •  
  • DL
  •  
  •  
  • Search Value: 1.03550004959
  • Change Value: 1.64
  •  
  • AKS
  •  
  •  
  • Search Value: 1.0991499424
  • Change Value: 1.69
  •  
  • RPD
  •  
  •  
  • Search Value: 0.96520000696
  • Change Value: 1.59
  •  
  • Knife
  •  
  •  
  • Search Value: 1.1115000248
  • Change Value: 1.85
  •  
  • BY15
  •  
  •  
  • Search Value: 1.0991499424
  • Change Value: 1.69
  •  
  • MW11
  •  
  •  
  • Search Value: 1.08299994469
  • Change Value: 1.68

 

준비물은 끝났고 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

start

 

gameloop 실행

아 귀찬다 링크 남겨줄께 따라해봐요 ....

https://memoryhackers.org/forums/call-of-duty-mobile-hile-hack.567/

 

Call of Duty Mobile Hile & Hack

Call of Duty Mobile hileleri,Call of Duty Mobile Hilesi,Call of Duty Mobile hile,Call of Duty Mobile hack,Call of Duty Mobile oyun hilesi,Call of Duty Mobile hacks,Call of Duty Mobile Hile 2019,Call of Duty Mobile hileleri 2019

memoryhackers.org

 

 

 

<?xml version="1.0" encoding="utf-8"?>

<CheatTable CheatEngineTableVersion="29">

  <CheatEntries/>

  <UserdefinedSymbols/>

  <LuaScript>

    dbk_initialize() 

    dbk_useKernelmodeOpenProcess() 

    dbk_useKernelmodeProcessMemoryAccess() 

 

    if getOpenedProcessID() then openProcess(getOpenedProcessID()) end 

 

    dbk_writesIgnoreWriteProtection(true)

      

      function AOBRep(search, change)

    local aob = AOBScan(search)

    if aob then

      for i=0,aob.Count-1 do

        autoAssemble(aob[i]..':\ndb '..change)

      end

      aob.Destroy()

    end

    end

 

    EmuForm = createForm(true)

    EmuForm.Caption = 'Select Emulator'

    EmuForm.Width = 300

    EmuForm.Height = 60

 

    function gameloop()

    emu= "aow_exe"

    startmenu()

    EmuForm.hide()

    end

 

    function LDPlayer()

    emu="LdBoxHeadless"

    startmenu()

    EmuForm.hide()

    end

    EmuButton1 = createButton(EmuForm)

    EmuButton1.Left = 10

    EmuButton1.Top = 10

    EmuButton1.Width = 110

    EmuButton1.Height = 40

    EmuButton1.onClick = gameloop

    EmuButton1.Caption = 'Gameloop'

 

    EmuButton2 = createButton(EmuForm)

    EmuButton2.Left = 170

    EmuButton2.Top = 10

    EmuButton2.Width = 110

    EmuButton2.Height = 40

    EmuButton2.onClick = LDPlayer

    EmuButton2.Caption = 'LDPlayer'



    function startmenu()

    local p = io.popen('tasklist /fi "IMAGENAME eq '..emu..'.exe" /fi "MEMUSAGE gt 300000" /nh', 'r');

    local procInfo = p:read('*a');

    p:close();

    local pid = procInfo:match('%d+');

    pid = tonumber(pid);

 

    if(pid == nil)then

    messageDialog("You must start the game first!", mtWarning, mbOK)

    closeCE()

    else

    openProcess(pid)

 

    ----------------HACK MENU START----------------

 

    function NoRecoil_M4()

    searchV = '00 00 80 3F 00 00 80 3F 33 33 93 3F CD CC 8C 3F 00 00 70 41 00 00 10 41 9A 99 C9 3F AC C5 27 37 00 00 A0 40'

    replaceV = '00 00 80 3F 00 00 80 3F 33 33 93 3F CD CC 8C 3F F0 23 74 49 00 00 10 41 9A 99 C9 3F AC C5 27 37 00 00 A0 40'

    AOBRep(searchV,replaceV)

    end

 

    function NoRecoil_AllM4()

    searchV = '00 00 80 3F 00 00 80 3F 33 33 93 3F CD CC 8C 3F'

    replaceV = '00 00 80 3F 00 00 80 3F 33 33 93 3F CD CC 8C 3F F0 23 74 49 00 00 10 41 9A 99 C9 3F AC C5 27 37 00 00 A0 40'

    AOBRep(searchV,replaceV)

    end

 

    MyForm = createForm(true)

    MyForm.Caption = 'Call Of Duty Hack V.1'

    MyForm.Width = 400

    MyForm.Height = 100



    btn0 = createButton(MyForm)

    btn0.Left = 10

    btn0.Top = 10

    btn0.Width = 195

    btn0.Height = 40

    btn0.onClick = NoRecoil_M4

    btn0.Caption = 'No Recoil M4'

 

    btn1 = createButton(MyForm)

    btn1.Left = 200

    btn1.Top = 10

    btn1.Width = 195

    btn1.Height = 40

    btn1.onClick = NoRecoil_AllM4

    btn1.Caption = 'No Recoil  All Series M4'

    ---/

    info1l = createLabel(MyForm)

    info1l.Caption= 'Active Hack in The Game[JustOneTime]'

    info1l.Left = 90

    info1l.Top = 60

 

    info2l = createLabel(MyForm)

    info2l.Caption= 'Hack By DeathZero1st YT'

    info2l.Left = 130

    info2l.Top = 80

 

    ----------------HACK MENU FINISH----------------

 

    end

    end

</LuaScript>

</CheatTable>

 

터키어로 나오면 영어로 바꿔서 보시길

 

궁금한 사항은 메일 남겨요