Monster Hunter World (Steam)

Upload your cheat tables here (No requests)
purplefrootloops
What is cheating?
What is cheating?
Posts: 4
Joined: Fri Dec 07, 2018 5:17 am
Reputation: 0

Re: Monster Hunter World (Steam)

Post by purplefrootloops »

Arthur22Q wrote:
Tue Dec 11, 2018 5:16 pm
Here's my specs: MHW build 161254, CH version 6.8.1, Borderless Windowed: Yes, Stealth Edit 2.4 64-bit dll, private and offline session. Invulnerable for me, works. As in, character is unaffected by any status effects/shouts or attacks. Did an arena quest with it on the whole time. Not sure what's going on for those who say it won't work.
Are you on Steam(?) is what matters most.

How to use this cheat table?
  1. Install Cheat Engine
  2. Double-click the .CT file in order to open it.
  3. Click the PC icon in Cheat Engine in order to select the game process.
  4. Keep the list.
  5. Activate the trainer options by checking boxes or setting values from 0 to 1

Arthur22Q
Cheater
Cheater
Posts: 38
Joined: Thu Jun 15, 2017 3:51 pm
Reputation: 8

Re: Monster Hunter World (Steam)

Post by Arthur22Q »

Sorry, key bit of info missed there. Yes I am.

Squall8
RCE Fanatics
RCE Fanatics
Posts: 564
Joined: Fri Mar 03, 2017 7:43 am
Reputation: 1117

Re: Monster Hunter World (Steam)

Post by Squall8 »

qiqichenx wrote:
Tue Dec 11, 2018 2:41 pm
viewtopic.php?p=71135#p71135

CODEX USERS:
Of course the table isn't going to work properly for you. Why? You've been reporting issues that have existed long before this updated anti-cheat came out, so I know you are working with an old version. A number of things have changed since then. The current table also uses the module address in some of the scripts which is specifically tied to the Steam Version, let alone Build ID. While they may enable, its hooking a completely different location. I said I would help you out eventually, but to be honest, I'm not sure when I'll get around to it. In the meantime, start sifting through Flings old trainers. Or try this, again not all options will work:

Code: Select all

{$lua}
local function hex(input)
      return string.format("%02X", input)
end

local function restoreCheck(start_address)
      local indx = 100
      while indx < 200 do
            if readBytes(start_address+indx,1) == 0xB0 then
               if readBytes(start_address+indx+1,1) == 0x01 then
                  if readBytes(start_address+indx+2,1) == 0x90 then
                     writeBytes(start_address+indx,0x0f, 0x94, 0xc0)
                     return 1
                  end
               end
            end
            indx = indx + 1
      end
      return 0
end

local function removeCheck(start_address)
      local indx = 100
      while indx < 200 do
            if readBytes(start_address+indx,1) == 0x0f then
               if readBytes(start_address+indx+1,1) == 0x94 then
                  if readBytes(start_address+indx+2,1) == 0xc0 then
                     writeBytes(start_address+indx,0xB0, 0x01, 0x90)
                     return 1
                  end
               end
            end
            indx = indx + 1
      end
      return 0
end

local function aa_tamper(activate)
    local aobs = AOBScan("8B 02 48 8D 52 04 48 33 D8", "+X-C-W", 0)
    local modded = 0
    if aobs ~= nil then
      for ind = 0,aobs.count-1 do
          if activate then
             modded = modded + removeCheck(getAddress(aobs[ind]))
          else
             modded = modded + restoreCheck(getAddress(aobs[ind]))
          end
      end
    end
    --print(modded.." places modified.")
end

[ENABLE]
aa_tamper(true)

[DISABLE]
aa_tamper(false)


^Seikur0's old bypass, should work on Codex. I'm pretty sure if you grab his table, that'll work as well.

User avatar
qiqichenx
Expert Cheater
Expert Cheater
Posts: 52
Joined: Wed Jul 11, 2018 6:53 am
Reputation: 0

Re: Monster Hunter World (Steam)

Post by qiqichenx »

Squall8 wrote:
Tue Dec 11, 2018 9:00 pm


viewtopic.php?p=71135#p71135

CODEX USERS:
Of course the table isn't going to work properly for you. Why? You've been reporting issues that have existed long before this updated anti-cheat came out, so I know you are working with an old version. A number of things have changed since then. The current table also uses the module address in some of the scripts which is specifically tied to the Steam Version, let alone Build ID. While they may enable, its hooking a completely different location. I said I would help you out eventually, but to be honest, I'm not sure when I'll get around to it. In the meantime, start sifting through Flings old trainers. Or try this, again not all options will work:

Code: Select all

{$lua}
local function hex(input)
      return string.format("%02X", input)
end

local function restoreCheck(start_address)
      local indx = 100
      while indx < 200 do
            if readBytes(start_address+indx,1) == 0xB0 then
               if readBytes(start_address+indx+1,1) == 0x01 then
                  if readBytes(start_address+indx+2,1) == 0x90 then
                     writeBytes(start_address+indx,0x0f, 0x94, 0xc0)
                     return 1
                  end
               end
            end
            indx = indx + 1
      end
      return 0
end

local function removeCheck(start_address)
      local indx = 100
      while indx < 200 do
            if readBytes(start_address+indx,1) == 0x0f then
               if readBytes(start_address+indx+1,1) == 0x94 then
                  if readBytes(start_address+indx+2,1) == 0xc0 then
                     writeBytes(start_address+indx,0xB0, 0x01, 0x90)
                     return 1
                  end
               end
            end
            indx = indx + 1
      end
      return 0
end

local function aa_tamper(activate)
    local aobs = AOBScan("8B 02 48 8D 52 04 48 33 D8", "+X-C-W", 0)
    local modded = 0
    if aobs ~= nil then
      for ind = 0,aobs.count-1 do
          if activate then
             modded = modded + removeCheck(getAddress(aobs[ind]))
          else
             modded = modded + restoreCheck(getAddress(aobs[ind]))
          end
      end
    end
    --print(modded.." places modified.")
end

[ENABLE]
aa_tamper(true)

[DISABLE]
aa_tamper(false)


^Seikur0's old bypass, should work on Codex. I'm pretty sure if you grab his table, that'll work as well.
Thank you for the reply, my bad didn't notice the instruction how to use SE, because the page is scrolling fast.
I try it and sometimes working great and sometimes not working.
btw, how to use bypass that you provided up there by Seikur0's

predprey
Expert Cheater
Expert Cheater
Posts: 207
Joined: Thu Mar 02, 2017 8:46 pm
Reputation: 140

Re: Monster Hunter World (Steam)

Post by predprey »

qiqichenx wrote:
Tue Dec 11, 2018 11:06 pm
Thank you for the reply, my bad didn't notice the instruction how to use SE, because the page is scrolling fast.
I try it and sometimes working great and sometimes not working.
btw, how to use bypass that you provided up there by Seikur0's
The bypass will not work on both Steam and CODEX versions. Steam and CODEX versions are both on the same update/build and using the newer anti-cheat. Seikur0's bypass targets the older integrity check but his AOBs are already outdated, you can activate the script but it doesn't actually do anything because if doesn't find any triggers to patch.
Last edited by predprey on Wed Dec 12, 2018 2:51 am, edited 1 time in total.

brokenhopes
Expert Cheater
Expert Cheater
Posts: 87
Joined: Sat Sep 22, 2018 11:52 am
Reputation: 8

Re: Monster Hunter World (Steam)

Post by brokenhopes »

qiqichenx wrote:
Tue Dec 11, 2018 2:41 pm
brokenhopes wrote:
Tue Dec 11, 2018 7:44 am

Which ones cant you activate? I got no issues with invul (tested again against teo and leo), stamina, sharpness, inf items, meal editor, buffs, defense, weapon buff and abnormal status. Also I am on STEAM version.
like below, the uncheck one is not working for me, and a couple more. I'm using STEAM version btw

Image

Image

Image
ok thats weird, i dont use the crafting requirements cos like i mentioned in another post, i use the other table to give myself everything thus no issues. but for the rest like max sharpness and invul, it works for me on STEAM version

predprey
Expert Cheater
Expert Cheater
Posts: 207
Joined: Thu Mar 02, 2017 8:46 pm
Reputation: 140

Re: Monster Hunter World (Steam)

Post by predprey »

-REMOVED-
Last edited by predprey on Thu Dec 13, 2018 9:16 pm, edited 2 times in total.

mayhemfighter
Novice Cheater
Novice Cheater
Posts: 19
Joined: Sat Aug 18, 2018 9:28 pm
Reputation: 3

Re: Monster Hunter World (Steam)

Post by mayhemfighter »

Anyone got a PC Save with All the DLC items and stuff unlocked? Theres a save swapper out now that changes the steam ID of the saves

HibikiRekka
Expert Cheater
Expert Cheater
Posts: 55
Joined: Sat Dec 08, 2018 9:25 pm
Reputation: 6

Re: Monster Hunter World (Steam)

Post by HibikiRekka »

mayhemfighter wrote:
Wed Dec 12, 2018 7:03 am
Theres a save swapper out now that changes the steam ID of the saves
There's a way to do that now? Could you direct me to where I could get it? EDIT: Nvm, found it. Thanks for the heads up that's it's possible though.

demorest
Expert Cheater
Expert Cheater
Posts: 122
Joined: Tue Mar 28, 2017 5:09 pm
Reputation: 2

Re: Monster Hunter World (Steam)

Post by demorest »

Hello. Is it possible to make invul window of evade distance wider?!

romeo2033
What is cheating?
What is cheating?
Posts: 2
Joined: Wed Dec 12, 2018 10:54 pm
Reputation: 0

Re: Monster Hunter World (Steam)

Post by romeo2033 »

Hi, is there any way to modify the time record in arena record (in GC) ?

And my HR got stucked after I modify my HR in game, is there any way to fix this?

Thanks

chroma12349
Cheater
Cheater
Posts: 40
Joined: Mon Jul 16, 2018 2:26 am
Reputation: 7

Re: Monster Hunter World (Steam)

Post by chroma12349 »

romeo2033 wrote:
Wed Dec 12, 2018 11:39 pm
Hi, is there any way to modify the time record in arena record (in GC) ?

And my HR got stucked after I modify my HR in game, is there any way to fix this?

Thanks
1. No, Arena records are saved server side. Even if you somehow change the record on your gc, the faster/ earlier record that's saved on the server is what people will see.

2. Look through this thread, don't be lazy

ThrowAwayZombie
What is cheating?
What is cheating?
Posts: 2
Joined: Tue Dec 11, 2018 7:33 am
Reputation: 0

Re: Monster Hunter World (Steam)

Post by ThrowAwayZombie »

So I think i broke the game script because I can not see the wyvern ignition to craft it. Any ideas how to fix?

Venator
Expert Cheater
Expert Cheater
Posts: 56
Joined: Sun Jun 11, 2017 12:57 pm
Reputation: 16

Re: Monster Hunter World (Steam)

Post by Venator »

Venator wrote:
Fri Dec 07, 2018 2:50 am
For anyone still noticing that invulnerability does not appear to work, I just want to ask, are you actually losing health or is the bar just turning red? I did notice that area damage effects (e.g., Lunastra's fire, lava, ...Lunastra's fire...) cause the bar to turn red, but it never actually decreases. It just all turns into "recoverable" health, at least visually. I haven't actually fainted while using it after a few runs. I'm using CE 6.8.1.
I am just going to correct my previous statement for the record. I finally did manage to stand in Lunastra's fire long enough to get cooked to a perfect, well-done temperature and got carted. So you do still have to be mindful of how far the green health bar falls. Even so, that was the first time and I've not run into much trouble avoiding it running too low.

endersblade
Expert Cheater
Expert Cheater
Posts: 62
Joined: Sat Aug 11, 2018 11:48 pm
Reputation: 13

Re: Monster Hunter World (Steam)

Post by endersblade »

xSimple wrote:
Tue Dec 11, 2018 8:54 am
endersblade wrote:
Tue Dec 11, 2018 1:53 am
So the older fearlessrevolution trainers had a Rapid Fire cheat for HBGs...can anyone replicate that for this? If so I could finally stop using the fearlessrevolution trainer and just stick to this!
there is an option fot HBG in the weapon buff section, 3 of them for bowgun, it may not like rapid fire from fearlessrevolution because i dont know about it, but there an option u can have bowgun support all ammo with no reload, i have use it and its works fine with no game crash on STEAM version
I appreciate the response but that has nothing to do at all with what I was asking about. The Rapid Fire cheat from the fearlessrevolution trainer makes the "machine gun" (Wyvern fire? I can't recall what it's called) alternate firing method of HBGs to fire like 10 times faster, just spits out tons and tons of bullets at once. Takes about 3 seconds of direct fire at a wyvern to kill it.

Post Reply

Who is online

Users browsing this forum: Baidu [Spider], bregoran, bucket132, GlitchedDuck, Google Adsense [Bot], iLoVeFriDaY, jflam, jonaaa, latexllama, LIOBOSS, mrhavoc01, Necrosx, Rinvista, rudm09, SemrushBot, StealthHawk, wh0oot, WhoAmI, xRif, ZoDDeL