'전체 글'에 해당되는 글 152건

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>

 

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

 

궁금한 사항은 메일 남겨요 

Tip

모르는점은 문의 남겨주시면 답변 드리도록 하겠습니다.

 

Step 1

- Windows firewall entries:

- Open cmd (as admin)

(윈도우키 -> cmd 타이핑 -> 그 상태에서 Ctrl + Shift + ENTER 누름)

(시작버튼을 마우스 오른쪽 버튼 클릭-> windows powershell(관리자모드)실행

 

netsh advfirewall firewall add rule name="Nox Block In" dir=in action=block remoteip=220.181.0.0-220.181.255.255,183.128.0.0-183.143.255.255,182.92.0.0-182.92.255.255,101.200.0.0-101.201.255.255,211.151.0.0-211.151.255.255,198.11.128.0-198.11.191.255,124.160.0.0-124.160.255.255,140.205.0.0-140.205.255.255,110.173.192.0-110.173.223.255,121.52.224.0-121.52.255.255,178.162.216.0-178.162.219.255

netsh advfirewall firewall add rule name="Nox Block Out" dir=out action=block remoteip=220.181.0.0-220.181.255.255,183.128.0.0-183.143.255.255,182.92.0.0-182.92.255.255,101.200.0.0-101.201.255.255,211.151.0.0-211.151.255.255,198.11.128.0-198.11.191.255,124.160.0.0-124.160.255.255,140.205.0.0-140.205.255.255,110.173.192.0-110.173.223.255,121.52.224.0-121.52.255.255,178.162.216.0-178.162.219.255

위에 두 명령어를 복사해서 입력

 

 

Step 2

- Windows host entries:

- Go to C:\Windows\System32\drivers\etc - Open hosts file in text editor - Add the following entries:

- Open hosts file in text editor

- Add the following entries:

(윈도위키+R->C:\Windows\System32\drivers\etc\hosts 입력-> 메모장으로 여시면 됩니다.)

127.0.0.1 api.bignox.com

127.0.0.1 tracking.trnox.com

127.0.0.1 bi.yeshen.com

127.0.0.1 launcher.us.yeshen.com

127.0.0.1 pubstatus.sinaapp.com

127.0.0.1 noxagile.duapp.com

127.0.0.1 common.duapps.com

127.0.0.1 pasta.esfile.duapps.com

127.0.0.1 api.mobula.sdk.duapps.com

127.0.0.1 hmma.baidu.com

127.0.0.1 nrc.tapas.net

127.0.0.1 au.umeng.com

127.0.0.1 www.yeshen.com

127.0.0.1 www.yeshen.com.w.kunlungr.com

127.0.0.1 hm.e.shifen.com

127.0.0.1 tdcv3.talkingdata.net

127.0.0.1 alog.umeng.com

127.0.0.1 sdk.open.inc2.igexin.com

127.0.0.1 androiden.duapp.com

위 와 같이 입력후 저장 

 

 

Step 3

- Download install and run Nox:

녹스 다운로드후 설치

- First enable Root mode and restart

루트 설정후 재실행

- Get Evie Launcher from play store and run it (set as preferred launcher when prompted)

구글 플레이에서 다른 런처를 받아 설치하시고 기본 실행 앱으로 지정

(원문에서는 Evie Launcher 추천했는데 실제 사용해보니 괜찮더군요)

- Evie launcher might put the emulator in portrait mode, now would be a good time to set the custom resolution and enable landscape mode.

중요한게 아님으로 패스

- Open 'File Manager' (not ES File Explorer)

녹스의 기본 앱인 파일관리자 (File Manager)를 실행합니다.

- Go to 'System\app\Launcher' (or just delete the whole dir)

파일관리자에서 "System\app\Launcher" 이동하여 아래 설명같이 하시거나 System\app\Launcher 폴더 자체를 삭제 하셔도 됩니다.

- Find file named Launcher_X.X.X_en_signed.apk - Click and hold, a menu opens...rename file to be *.bak (or delete it w/e) - Reboot

다음과 같이 변경하거나 삭제 하시면 됩니다. 그리고 재부팅

 

Step 4

핵심인 중요한 부분입니다.

- Emulator host file changes:

- Open 'File Manager'

녹스에서 파일관리자앱을 실행

- Go to 'System\etc' and find hosts file

System\etc 폴더에서 hosts 파일을 찾아 편집해줍니다.

- Long tap and select properties > permissions

hosts 파일을 길게 누르고 다음 스샷순으로 진행 .

 

- Check the box for 'group' and 'write(W)'

다음과 같이 순서대로 설정해주시면 됩니다.

 

- Go to the hosts file again, open and paste in the entries from step 2

이렇게 쓰기가 가능해진 녹스 에뮬내부의 hosts 파일을 열어

아래의 내용을 복사해서 붙여 넣어 주시면 됩니다.

127.0.0.1 api.bignox.com

127.0.0.1 tracking.trnox.com

127.0.0.1 bi.yeshen.com

127.0.0.1 launcher.us.yeshen.com

127.0.0.1 pubstatus.sinaapp.com

127.0.0.1 noxagile.duapp.com

127.0.0.1 common.duapps.com

127.0.0.1 pasta.esfile.duapps.com

127.0.0.1 api.mobula.sdk.duapps.com

127.0.0.1 hmma.baidu.com

127.0.0.1 nrc.tapas.net

127.0.0.1 au.umeng.com

127.0.0.1 www.yeshen.com

127.0.0.1 www.yeshen.com.w.kunlungr.com

127.0.0.1 hm.e.shifen.com

127.0.0.1 tdcv3.talkingdata.net

127.0.0.1 alog.umeng.com

127.0.0.1 sdk.open.inc2.igexin.com

127.0.0.1 androiden.duapp.com

 

- Save and close emulator

저장후 녹스를 재실행 하시면 됩니다.

그럼 부팅후 녹스의 기본 런쳐는 사라지고 광고 또한 없이 깔끔한 녹스를 이용하실수 있습니다.

세로 모드로 시작되나 게임하실때는 가로모드로 자동 변경되니 걱정 안하셔도 됩니다.

궁금한 사항은 메일로 연락 주세요

jskali@outlook.com

댓글보단 메일로 답변 받으시기 빠릅니다.

App

Action Launcher: Pixel Edition Features:
• Quick access to all your apps as a slider
• Add home screens to up to seven numbers
• Ability to change background images
• Quick access to settings
• Supports various launcher icons pack
• Customizable features
• And many more.

What is New?
• Adding new features
• Bug fixed
• Added multiple optimizations

 

다운로드

정상

App

AdClear Features:
• Advanced Ad Blocker for Android
• to block encrypted ads
• Save your device’s bandwidth and battery
• Easy Enable and disable function
• Safer and more secure web browsing
• Compatible with all Android browsers
• And many more.

What is new?
• Fix Google search result issue
• The user interface color scheme has changed
• Fix app crash

 

다운로드

정상

App

NoxCleaner Features:
• Optimize and speed up your smartphone
• Find unnecessary files and delete them in just a few seconds
• Organize your images images
• Automatically detect similar images with the possibility to remove them
• Reduce the size of available images using the internal compression tool
• Identify useless and unnecessary apps
• And many more.

What is new?
• Added whitelist tab
• Optimize and fix application errors

 

다운로드

 

NoxCleaner-Ad-Free-2.2.9_Startcrack.com.apk

 

drive.google.com

정상

App

Audio Beats Pro Features:
• Support all audio formats
• Support for equalizer bands and preset stations
• Edit audio file tags
• Support for playlist
• High-quality sound output
• graphical and classical design
• Control audio files through the notification bar
• Navigation is simple and easy with just one touch
• Support lock screen widget
• Multiple customization options
• And many more.

What is new?
• Bug fixed
• New features added

 

다운로드

정상

App

Photo Studio PRO Features:
• Provides 150 different filters for applying on images
• The availability of +200 amazing effects for beautiful images
• Offering over 1,000 different stickers
• Ability to remove red eye
• Adding unique digital frames to images
• Change brightness, contrast, the color of images
• Ability to resize and rotate images
• Availability of more than 100 frames
• Ability to add images to the app
• Apply different edits and changes to photos
• And many more.

What is new?
• Added new effects and features
• Bug Fixed

다운로드

 

Photo-Studio-PRO-2.2.0.3_Startcrack.com.apk

 

drive.google.com

 

정상

App

PicsArt Photo Studio Features:
• professional global network for sharing a creative imagery
• Having hundreds of professional tools for creating beautiful images
• Personalization Effects and filters
• Ability to embed text and watermark on images
• Having a Collage Builder
• Possibility to take pictures directly from the app
• Having a professional drawing and painting tool
• Artistic brushes
• Possibility to produce video output and GIF animations
• Many more.

 

다운로드

 

정상

1 2 3 4 ··· 19
블로그 이미지

"우리 사람되는 건 어렵지만 괴물은 되지 맙시다"

Js.Park