-
Posts
1,903 -
Joined
-
Last visited
-
Days Won
130
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by MonkeySAN
-
here is the script with Jump Height and Movement Speed hack added. com.theand.minimal[EDITED].lua All credit goes to @Platonic
- 40 replies
-
1
-
- Exact value
- Script error
-
(and 2 more)
Tagged with:
-
its GREAT. THANK YOU AGAIN. @Platonic
- 40 replies
-
- Exact value
- Script error
-
(and 2 more)
Tagged with:
-
any idea where can i add gg.prompt for setvalue in here? function class_CharacterJump() if loop_CharacterJump == false then filter_class(CharacterJump) -- only call function once loop_CharacterJump = true end CharacterJumpClass_address = class_pointers gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber(CharacterJumpClass_address[1].address, gg.TYPE_QWORD) local pointers_to_class = gg.getResults(gg.getResultsCount()) gg.clearResults() local field_JumpHeight = {} for i, v in ipairs(pointers_to_class) do field_JumpHeight[i] = {address = v.address + 0xB8, flags = gg.TYPE_FLOAT, value = "3"}--wanna use prompt instead of fixed value end gg.setValues(field_JumpHeight) gg.toast("Jump Height DONE") end
- 40 replies
-
- Exact value
- Script error
-
(and 2 more)
Tagged with:
-
@Platonic well thanks for the script. still lots in it but much neater looking. i was able to add Jump hack for it. just made/added a few changes here and there...without so much scratching my head. Screenrecorder-2022-11-11-17-14-38-518.mp4
- 40 replies
-
1
-
- Exact value
- Script error
-
(and 2 more)
Tagged with:
-
i dont quite understand you.
- 40 replies
-
- Exact value
- Script error
-
(and 2 more)
Tagged with:
-
Thank you. but i already done that. way before you post your first script.(my apologize) though...it work perfectly everytime..it just i dont quite like it as the script had too many things going on in it. and it took me quite sometime to understand it. the first one of yours are much simpler.
- 40 replies
-
1
-
- Exact value
- Script error
-
(and 2 more)
Tagged with:
-
in my game the search value is 23636 that value will stay the same after you completely exit the game and enter again. while in the game.. the already turned on God Mode hack will not work anymore when you entered a new stage. need to search again but that value had changed.
- 40 replies
-
- Exact value
- Script error
-
(and 2 more)
Tagged with:
-
many thanks. but its not working. that search value is not static between gameplay and app restart.
- 40 replies
-
- Exact value
- Script error
-
(and 2 more)
Tagged with:
-
class name = Health field offset = 0x1C
- 40 replies
-
1
-
- Exact value
- Script error
-
(and 2 more)
Tagged with:
-
this is much better..i think. Screenrecorder-2022-11-10-01-59-54-723.mp4 found through dump.cs hope someone can make a script for it. im too lazy nowadays.
- 40 replies
-
1
-
- Exact value
- Script error
-
(and 2 more)
Tagged with:
-
same here. Screenrecorder-2022-11-09-03-07-45-244.mp4
- 40 replies
-
- Exact value
- Script error
-
(and 2 more)
Tagged with:
-
Homescapes Golden Ticket (Item Swap) (#1s8hnpmo) Homescapes Golden Ticket (Item Swap) (#40mwvzbw)
-
i use start/first address from Cb region. you can search value 0 and take the first address as the base address and apply offset to it. in the script you would write : gg.getRangesList("libnative-lib.so:bss")[1].start :bss = indicate that you take Cb region from the lib file [1].start = indicate the first address in Cb region without the ":bss" you will use Xa region
-
have you look at another type of value instead of just Float? rather than just freeze it...maybe you can increase the value.
-
my gosh.. well...at least it didnt show everything and still pay credits to @NoFear who knows...in the future..what will it be.
-
thats the wrong one. picture below it..is so clear.
-
yup..it is still the same. search the Amount x 100 in the Quest
-
here is my take..same like @CmP one local pi= gg.getRangesList("libil2cpp.so")[2].start local addr = pi + 0x10BBCDC gg.setValues({ {address = addr, flags = 4, value = 1384440288}, {address = addr + 0x4, flags = 4, value = -698416192} }) gg.toast("Done") for the Grenade. tested it many times now...no crash.
-
hmm... i guess you dont read my message(pm)? that should be solved the crash problem as @CmP suggest
-
yep. print(gg.getRangesList("libil2cpp.so")) just this.
-
a simple script with above written..just like that.