Jump to content

MonkeySAN

Contributor
  • Posts

    1,623
  • Joined

  • Last visited

  • Days Won

    102

Everything posted by MonkeySAN

  1. MonkeySAN

    Lua Script Help

    local gg = gg gg.setRanges(32) gg.searchNumber("95;75;3;200;1;130;9;1,075,419,546;26;1,065,353,216;26;1,094,713,344;26::49", 4) gg.refineNumber("75;130;9;26") local results = gg.getResults(10) for i,v in pairs(results) do if v.value == 75 then v.value = 85 end if v.value == 130 then v.value = 1400 end if v.value == 9 then v.value = 400 end if v.value == 26 then v.value = 4000 end end gg.setValues(results) --gg.addListItems(results) gg.clearResults() gg.toast("Done") --end
  2. MonkeySAN

    Lua Script Help

    local gg = gg gg.setRanges(32) gg.searchNumber("95;75;3;200;1;130;9;1,075,419,546;26;1,065,353,216;26;1,094,713,344;26::49", 4) gg.refineNumber("75;130;9;26") local results = gg.getResults(10) for i,v in pairs(results) do if v.value == 75 then v.value = 85 end if v.value == 130 then v.value = 1400 end if v.value == 9 then v.value = 400 end if v.value == 26 then v.value = 4000 end gg.setValues(results) --gg.addListItems(results) gg.clearResults() gg.toast("Done") end
  3. MonkeySAN

    Egg inc golden eggs

    https://streamable.com/cre4de
  4. also base on the video above..im was able to make up a group search like this gg.searchNumber("512;2.5F::50",4) --512 is your 2nd value in Dword --2.5F is your 1st value(Qword) in Float local p = gg.getResults(2) local t = {} t[1] = {} t[1].address = p[1].address --512 address t[1].flags = 16--edit the Float t[1].value = 14160822e-46 gg.setValues(t) t[1].address = p[2].address --2.5F address t[1].flags = 32--edit the Qword t[1].value = -3146121216 gg.setValues(t) gg.clearResults() gg.toast("Done") end but i not know for sure if all above will work because i cannot test it. i cant install the game on my device somehow.
  5. same if you want to use this value = 3,219,128,320 Qword for edit and then using offset to edit the 2nd value. --search and refine gg.searchNumber("3,219,128,320", 32)--32 is gg.TYPE_QWORD --single value search gg.refineAddress("address here",-1) --if too many results and the address stay the same. --better the same last 4 digit of the address but last 2 still ok. local p = gg.getResults(1) -- edit the 1st value local t = {} t[1] = {} t[1].address = p[1].address t[1].flags = 32 t[1].value = -3,146,121,216 gg.setValues(t) --edit 2nd value(offset) t[1].address = p[1].address - 0x30 t[1].flags = 16 t[1].value = 1,4160822e-46 gg.setValues(t) gg.clearResults() gg.toast("Done") end
  6. you can use this as group search. = 1.0F;512;4.0F::13,gg.TYPE_DWORD/gg.TYPE_QWORD only if the value above(1.0F) and below(4.0F) stay the same all the time. refine to 512 then edit the Float gg.searchNumber("1.0F;512;4.0F::13",4)--4 is gg.TYPE_DWORD gg.refineNumber("512") local t = gg.getResults(1) for i,v in pairs(t) do if v.value == 512 then v.flags = 16--Float v.value = 14160822e-46F end end gg.setValues(t) gg.clearResults() gg.toast("Done") end hope this will help.
  7. - first do the search of your value normally. - if it give many results then you have to refine it. if it always in the same address then you may refine to address to get to the value. - if not...you may have to make a group search of it and then refine to your value.
  8. i = gg.getResults(4) this take 4 results from the search. x[1].address = i[1].address + "yourOffsetCode" but call only the 1st out the 4 results for offset editing.
  9. MonkeySAN

    LUA scripting

    local d = gg.prompt({"New Speed?[0;500]"},{250},{"number"})
  10. nope.. i was not connected to any accounts what so ever. in fact i dont see log in into FB or any social media is very important for any games that matter.. and that is for me at least. others people...
  11. so far so good.. just do as what @ItsSC said. = 250;50;5::49 = type Dword = Anonymous
  12. MonkeySAN

    Looping issue

    so i changed loop = loop + 0.1 to loop = string.format("%.15f", loop + 0.1) not sure if its the correct solution.. but got this results.
  13. MonkeySAN

    Looping issue

    maybe this will help somehow...? searching 0.3 Double manually...did gave results but when using the script...
  14. MonkeySAN

    Looping issue

    well..i tested it on something else not the game from the video. but it did worked properly. maybe you can put some kind of alert to show you what is happening really..to see if any results were found and got edited. add the results to the list would've come handy too.
  15. MonkeySAN

    Looping issue

    thats strange...the script was just fine. already test it.
  16. that did work for me. just like he said each time when you unlock a class...it will be at Master. 20210311_005646_edited.mp4
  17. MonkeySAN

    Lua script

    hmm...im guess mine doesnt work in your case. i do hope the second prompt will help you to get the idea. and @ItsSC gave you the better one.
  18. other than directly add to MP bar value itself for quick level-up.. another way is changing how much you get MPs when pickup those blue MP orbs. MS_MP_pickup.mp4 im kinda like this one more than the first one.
  19. and starting HP is 1000. to be exact = 1000;1000::5 = type Float but that without any Research buff like Max HP 20% or Max HP 30%. if you use those...you must add 20% or 30% more to the value. as far i know for now...no matter what Class or Subject you choose...the starting HP will be the same above. i not yet go through all the Class or Subject..so i never know for sure as i always end up playing the game rather than finding stuffs to hack. this game is so haunting.
  20. time can be search directly example :- 22:39 = (22x60) + 39 = 1320 + 39 = 1359 pause and search 1359 type Float then refine when it changed. for Level..i chose to hack MP instead as you level up when your MP bar is full and got to choose your magics. MS_Lvl_MP.mp4 it can go all the way to max Level 130 but i just keep it that way.
  21. despite not having to die and cheating the time...this game is somehow still give me enjoyment. 20210307_000425_edited.mp4
  22. it sure fun if we keep the hacks to minimum..there are games out there similar to this type of game where things coming at you and you shooting at them but most are so boring even without doing any hacks on them. for this game though..im feeling joy somehow 20210306_192713_edited.mp4 i played it that it almost drain out my battery and enemy become tired that they become so slow to move around. or so its seem.
  23. a table...menu? still dont get it but this game is super fun.. MS_HP_TIME_HACK.mp4 i just stand still for about an hour.
  24. a table? i dont get it.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.