Jump to content

MonkeySAN

Contributor
  • Posts

    1,787
  • Joined

  • Last visited

  • Days Won

    117

Everything posted by MonkeySAN

  1. ..me too still learning but me modified again so that we can change memory ranges too. this time now use slider/seek bar instead of checkbox.
  2. memory range = Anonymous type = Dword - search the weapon attack value then use increment to pinpoint the right one. - same for armor.
  3. okay..my mistake..didnt read your first post carefully and miss the word DROP RATE.. im only see GUNSMITH. simple solution just work fine for me...since i got all of them now. plus all items in Store for free.
  4. ...and me modified it so that we can change the value type.
  5. it did worked....what do you want actually?
  6. for some weapon the values edited did stay for all floors but some reset back to its original values. cant figure to as why it happen in that way.
  7. Weapon Stats... 1st value ; 3rd value ::5 = Damage ; Critical Chance ::5 4th value ; 2nd value ::5 = InAccuracy ; Energy Cost ::5 - use increment to pinpoint the correct one.
  8. created sometime ago...i couldnt believe its still work for the latest version of the game(with just minor adjustment...of course) soulKnight.mp4
  9. your script are one step better than mine...kudos to you.
  10. gg.searchNumber("98784247822", 32 ) gg.refineAddress("F8C") local r = gg.getResults(1) local t = {} t[1] = {} t[1].address = r[1].address + 0 t[1].flags = 4 t[1].value = 9 gg.setValues(t) t = nil gg.clearResults() gg.toast("Done") end
  11. add gg.refineAddress("F8C") after search. gg.searchNumber("98784247823", 32 ) gg.refineAddress("F8C") local t = gg.getResults(1) gg.setValues({{ address = t[1].address, flags = 4, value = 9 }}) see if this work for you.
  12. all you need is this...and you can finish the whole worlds in just one hour or less. MrAutoFire.mp4
  13. found that.. 2,146,334,040 is the XOR key for any values that we try to search. BistroHeroesLVL.mp4 use that...searching and editing is much easier like was shown in the video.
  14. the script use offset edit. i made it with my phone which is 32bit device but... your device is 64bit so it will not work. sorry.
  15. cant really say what was wrong because on my side.... everything can be use as normally.
  16. BistroHeroes.mp4 this is how... Dword - encrypted search and refine untill you found a value something like this = 2,146,123,456 with 4 first digit always 2,146,....,.... then edit by remove the very last digit. same for other things too.
  17. got Gems, Stamina+ and Gold Coins so far....
  18. View File BURRITO BISON A simple script for Burrito Bison to get - Coins/Money in Upgrade Shop. How to use : https://streamable.com/rqw1io Submitter MonkeySAN Submitted 10/09/2020 Category LUA scripts  
  19. 1,032 downloads

    A simple script for Burrito Bison to get - Coins/Money in Upgrade Shop. How to use : https://streamable.com/rqw1io
  20. you can actually but that will get you too many results to edit in which can make the game crash. i already done that. while the way i show you in the video gave only few results after refine. here is how i would make the script: local gg = gg gg.setVisible(false) gg.setRanges(2) --Java_heap d = gg.prompt({ "Enter Your Ammo"},{0}) if d == nil then os.exit() else gg.searchNumber(d[1],4)--4 is TYPE_DWORD gg.toast("Done") gg.alert("Now fire some shots...you have 5 seconds.") gg.sleep(5000)--5 seconds d = gg.prompt({ "Enter Your Ammo"},{0}) if d == nil then gg.clearResults() os.exit() else gg.refineNumber(d[1], 4) gg.getResults(5) gg.editAll("999999", 4) gg.clearResults() gg.toast("Done") end end
  21. the address changes everytime between restart but those values before(above) and after(below) ammo value didnt as far i know so... you can use ordered group search like this dwords = 20;10;130;680;30;1,049,414,861::25 then refine to ammo value = 130 the range use is Java_heap so it may take a while to get results or maybe it depend on the device...fast device = fast search...slow device = slow search(like mine) on my part i found that it much faster to find the ammo value itself then refine and edit as shown in video below : ZA2_ammo.mp4 <no video speed>
  22. one way is use gg.prompt to ask user to input the values for searching. then give alert to them to change the values before the next prompt appear to input the change values for refining. lastly edit.
×
×
  • 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.