Hi, I'm new to the community and wanted to share these scripts to make monster hunting easier.
The english is not my native language, sorry for that.
Inf Charge Blade Philas
Code: Select all
{ Game : MonsterHunterWorld.exe
Version:
Date : 2020-10-09
Author : wildsnow
This script does blah blah blah
}
[ENABLE]
aobscanmodule(INJECT,MonsterHunterWorld.exe,8B 87 74 23 00 00) // should be unique
alloc(newmem,$1000,"MonsterHunterWorld.exe"+60AFCC)
label(code)
label(return)
registersymbol(INJECT)
newmem:
mov [rdi+00002374],6
code:
mov eax,[rdi+00002374]
jmp return
INJECT:
jmp newmem
nop
return:
[DISABLE]
INJECT:
db 8B 87 74 23 00 00
unregistersymbol(INJECT)
dealloc(newmem)
Bowgun No Reload
Code: Select all
{ Game : MonsterHunterWorld.exe
Version:
Date : 2020-10-09
Author : wildsnow
This script does blah blah blah
}
[ENABLE]
aobscanmodule(ballesta,MonsterHunterWorld.exe,42 39 84 C6 A8 23 00 00) // should be unique
alloc(newmem,$1000,"MonsterHunterWorld.exe"+1E3BF04)
label(code)
label(return)
registersymbol(ballesta)
newmem:
cmp [rsi+r8*8+000023A8],1
jg code
mov [rsi+r8*8+000023A8],1
code:
cmp [rsi+r8*8+000023A8],eax
jmp return
ballesta:
jmp newmem
nop 3
return:
[DISABLE]
ballesta:
db 42 39 84 C6 A8 23 00 00
unregistersymbol(ballesta)
dealloc(newmem)
This script does not change the value of the quantity to all the elements of the game, only to those that you carry in the backpack, so the ammunition and the objects are infinite.
Inf Item Use + Inf Ammo
Code: Select all
{ Game : MonsterHunterWorld.exe
Version:
Date : 2020-10-10
Author : wildsnow
This script does blah blah blah
}
[ENABLE]
aobscanmodule(BALLESTA,MonsterHunterWorld.exe,8B 41 0C 48 8B 5C 24 30 48 8B 74 24 38 48 83 C4 20 5F C3 83) // should be unique
alloc(newmem,$1000,"MonsterHunterWorld.exe"+189E141)
label(code)
label(return)
newmem:
mov [rcx+0C],#10
code:
mov eax,[rcx+0C]
mov rbx,[rsp+30]
jmp return
BALLESTA:
jmp newmem
nop 3
return:
registersymbol(BALLESTA)
[DISABLE]
BALLESTA:
db 8B 41 0C 48 8B 5C 24 30
unregistersymbol(BALLESTA)
dealloc(newmem)
I hope it has helped you, greetings