Jump to content

MonkeySAN

Contributor
  • Posts

    1,602
  • Joined

  • Last visited

  • Days Won

    99

Everything posted by MonkeySAN

  1. i got my Gems by buying Weapon in the Shop. change the gems into negative value. since it will not visually shown you need to use increment too. take note of your current gems in hand and buy. then (New value - old value) = the difference is the Weapon gems value. Coins/Gold...i just buy it using the Gems.
  2. dont know if im actually doing it right but.. the Damage is now permanent.
  3. can you show me(video) how you actually did it? you search for the weapon Attack value example : Handgun +100 search 100 after results came then edit by increment 1 all results will change to 101,102,103... and so on. then tap and look at the weapon Attack value and find the match value from the results. thats your weapon Attack value.
  4. you can search HP, DEF, DMG and Ammo while playing. its all Dword in Anonymous region. search and refine. while in HP and DEF address you can find many things such as the speed of the character. PZ_GunnerSpeed.mp4 Fly..??
  5. MonkeySAN

    Lua Script Help

    obviously you can.. 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 elseif v.value == 130 then v.value = 1400 elseif v.value == 9 then v.value = 400 elseif v.value == 26 then v.value = 4000 end end gg.setValues(results) --gg.addListItems(results) gg.clearResults() gg.toast("Done") --end
  6. Please create a script for Mr. Autofire i would pay for it (#dtdqpexb)
  7. MonkeySAN

    Lua Script Help

    yup..its really posibble and easy. HP and Defense. one is in Dword and the other is Float.. search either one of them... go up or down...you sure will find the other one. or just search both at the same time. which is which and which one come first that.. im sure you can figure it out.
  8. MonkeySAN

    Lua Script Help

    only 1 value changed to max all of that..but it actually didnt work ..only visuals. its yours that really work. btw im guess you got HP hack too??
  9. MonkeySAN

    Lua Script Help

    hmm.... im not the expert...maybe not? im sometime use it and sometime not too. btw check this out : DWZ_Weapon.mp4
  10. 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
  11. 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
  12. MonkeySAN

    Egg inc golden eggs

    https://streamable.com/cre4de
  13. 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.
  14. 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
  15. 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.
  16. - 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.
  17. 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.
  18. MonkeySAN

    LUA scripting

    local d = gg.prompt({"New Speed?[0;500]"},{250},{"number"})
  19. 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...
  20. so far so good.. just do as what @ItsSC said. = 250;50;5::49 = type Dword = Anonymous
  21. 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.
×
×
  • 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.