Jump to content

MonkeySAN

Contributor
  • Posts

    1,906
  • Joined

  • Last visited

  • Days Won

    130

Everything posted by MonkeySAN

  1. i think maybe this..SWGOH.
  2. hmm... https://www.stephero.io/game/gunfire
  3. Screenrecorder-2022-02-04-08-31-02-270.mp4
  4. hmm... could it be that you search it in wrong order? thus..the values found wasnt the correct one.
  5. may i know.. exactly what "something wrong" is that? i tried it multiple times now..its quite working..more or less.
  6. shoot im late..!!! do group search in ordered starting value from item on the right to the left..
  7. just post your question in the forum..things that you would like to know.. you may get your answer. or use the search bar.
  8. well got this... and also this.
  9. im bet you can.
  10. actually you can search and edit Money and Gold directly. Screenrecorder-2022-01-19-03-43-49-804.mp4
  11. its just a simple hack. search = 100;7500:: type = Dword you will only get 2 results. change the price to negative value to get Cash and Gold or 0 to get FREE buy.
  12. https://gameguardian.net/forum/topic/34172-goodbye/ well not sure about that.
  13. obviously you need more practice.
  14. yup. Great for you.
  15. Screenrecorder-2022-01-16-02-56-24-247.mp4
  16. you can get by this way..
  17. MonkeySAN

    floating icon

    TEST2_TapGG_icon.lua you can try it..see if it work for you. not the best one i guess but never hurt to try.
  18. MonkeySAN

    floating icon

    something like this..more or less. Screenrecorder-2022-01-15-22-00-21-997.mp4
  19. MonkeySAN

    floating icon

    im not sure if that Sx button can be shown outside GG interface. need to ask expert for that. but you can just tap GG icon to execute hack without even opening GG interface. just remove all the ui button command. Examples of Lua scripts (#d2j0lrom)
  20. MonkeySAN

    floating icon

    if it just one hack and nothing else..how about this gg.showUiButton() while true do if gg.isClickedUiButton() then gg.setVisible(false) --your hack here-- end gg.sleep(100) end
  21. MonkeySAN

    Help with scipt.

    oh man..thats the game. i made a script for myself.. its slow(group search),long(offsets) but its worked everytime. perhaps using pointers is a good idea. libs(dump.cs) hack maybe? --------------------------------------- you could just hack only the 3rd option for each category. that can make the script less long than hack all of them.
  22. of course it didnt worked. it was a long time ago..most hacks in here will not work anymore. i dont play the game anymore and i will not play it again. maybe wait for someone else whos playing the game.
  23. MonkeySAN

    Help with scipt.

    hmm..maybe add more offsets down the line but with 20 results more..its still long to write. since i had no idea how the initial search is done or how the said codes appear structurely in the game of yours..i'll say you wait for someone else to give their inputs.
  24. MonkeySAN

    Help with scipt.

    use offsets maybe...? = price address + offset something like this.. local t = gg.getResults(1)--price address found local p = {} p[1] = {} p[1].address = t[1].address --price address p[1].flags = gg.TYPE_DWORD --value type p[1].value = 0--edit to your value gg.setValues(p) p[1].address = t[1].address + 0x4-- add offset for amount address below it. p[1].flags = gg.TYPE_DWORD --value type p[1].value = 999999--edit to your value gg.setValues(p) or local t = gg.getResults(1) gg.setValues({ {address = t[1].address,flags = gg.TYPE_DWORD,value = 0}, {address = t[1].address + 0x4,flags = gg.TYPE_DWORD,value = 999999} })
×
×
  • 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.