Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/04/2019 in Posts

  1. Have you tried it at least? I highly doubt that searching for 500 consecutive addresses and editing all of them to one value can noticeably slow down your script. So are you sure that it does not suffice because of performance reasons? As pointed out above, editing values one-by-one in a loop is very inefficient. This approach should be used instead, if simple one with fuzzy search does not suffice: Example of implementing it: local startAddress = 0x12340000 local count = 500 local editValue = '555444' local values = {} for i = 1, count do values[i] = {address = startAddress; flags = gg.TYPE_DWORD; value = editValue} startAddress = startAddress + 4 end gg.setValues(values)
    3 points
  2. I developed a chat in the game guardian and if someone wants to help me with suggestions of what I could put I would be grateful: -:
    1 point
  3. server side means you can edit all values but when you spend or buy something, the game will contact the server and match the value on the server. if there is a value that does not match the server, the server will not allow the purchase. Sorry for bad grammar
    1 point
  4. Dear, will someone please respond?! How and what values to change? Pleaaaaaaaseeeeee!
    1 point
  5. You choose not only worst possible way, you try it make more worst. Progressive edit is much worst in performance terms.
    1 point
  6. View File Horrorfield Video tutorial Get 1k silver,gold and exp ——–-————— dont use with your main account If your account get ban i cant help So create a new account Submitter AjYouTube Submitted 02/03/19 Category LUA scripts
    1 point
  7. @Shuaiouke No. I understand you right. You need search your 500 address and change it. But you can use long way with loop if you want.
    1 point
  8. local t = {} t[1] = {} t[1].address = 0x18004030 t[1].flags = gg.TYPE_DWORD t[2] = {} t[2].address = 0x18004034 t[2].flags = gg.TYPE_DWORD t[3] = {} t[3].address = 0x18004038 t[3].flags = gg.TYPE_DWORD gg.loadResults(t) yourTable = gg.getResults(3) for i,v in ipairs(yourTable) do yourTable.value = 10000 yourTable.flags = gg.TYPE_DWORD end gg.setValues(yourTable)
    1 point
  9. If you don't like your script decompiled, why don't you think of the game maker you cracked? they spend a lot of money and time than you. if your script doesn't want to be decompiled, don't share it. crackers don't know the creator and don't want to know him. no crackers no premiums free, no gameguardian applications and no this forum. Welcome to cyberspace
    1 point
  10. @DESYROLLERSE, you can't blame someone for not being able/not wanting to learn by "trial and error" approach, when you are not able/don't want to do this yourself. Just remember how many times you asked me to "give you an example" (more like write the code for you)? It looked like you were not able to progress in developing your script without getting more and more "examples". When I told similar thing to you last time, you were very angry, you were definitely thinking that I had to provide you everything you need when you ask for it. So since when you've started to agree with this statement? Looks like a clear example of hipocrisy and double standards.
    1 point
  11. Tried the ammo editing, but it reverted back after reloading the game. Could you please explain how you did all of yours that worked?
    1 point
  12. Up up up... Lol.. I become frustrated
    1 point
  13. Please someone could explain with a video. It's too hard! Please help!
    1 point
  14. Learn by trial and error... Taking shortcuts you learn nothing but how to copy someone else's work. It's time consuming, but more rewarding when you actually do it yourself.
    -1 points
  15. @Enyby Do you know if it is possible that the script i make can ask for root Rights? I want to make a Standoff 2 menu with root and no root function, if i grant permission then it will continue to Root version else it goes to No Root. Is that possible? If so How?
    -1 points
×
×
  • 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.