Jump to content

Anonymous1000

Ascended
  • Posts

    325
  • Joined

  • Last visited

  • Days Won

    19

Anonymous1000 last won the day on January 13 2019

Anonymous1000 had the most liked content!

Additional Information

  • Android
    7.x (Nougat)
  • Device
    Android

Recent Profile Visitors

33,960 profile views

Anonymous1000's Achievements

Community Regular

Community Regular (8/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Collaborator Rare

Recent Badges

248

Reputation

1

Community Answers

  1. View File Rogue Dungeon RPG Game Description : Rogue Dungeon RPG Totally optional in-app purchases. Level up and gain over 110 unique passive skills that interact in powerful ways! Hardcore: permanent death. Progression: unlock persistent bonuses and items with each run of the dungeon. Endless Action RPG. Fight to the death, then rise again stronger than ever. Collect magical and legendary items and relics. Power up your relics after death. Inspired by classic PC action role-playing games, this roguelike RPG uses randomly generated maps, permanent character death, randomized item drops and more for unlimited replayability. Regular updates are ongoing! Instructions: Touch anywhere to move Touch and hold on nearby enemies to attack Double-tap to use your special attack Tap on items, chests, shrines and other things to interact Collect shards to power up your relics! Collect gemstones to resurrect after death! Advance your character by discovering powerful items and relics. Gain levels for yourself and your relics. Choose from four ferocious classes - Warrior, Rogue, Mage and Monk This game collects basic usage data but does not collect any personally identifying information. Script: You will be able to obtain all the infinite resources. Watch the video to succeed. You must have the resources as they are in the photo or it may not work. Remember that I do not play Rogue Dungeon RPG Any doubt of the game go to google play. Submitter Anonymous1000 Submitted 01/14/19 Category LUA scripts
  2. @nalcwap Old, it is already published but it is not approved. For that reason I'll post them on a friend's page and when I'm ready I'll notify them. ?
  3. @Anaconda69 @Qusdrok @nalcwap Script for rogue dungeon rpg Rogue Dungeon RPG (#74idhe9t)
  4. Version 1.4.6

    1,064 downloads

    Game Description : Rogue Dungeon RPG Totally optional in-app purchases. Level up and gain over 110 unique passive skills that interact in powerful ways! Hardcore: permanent death. Progression: unlock persistent bonuses and items with each run of the dungeon. Endless Action RPG. Fight to the death, then rise again stronger than ever. Collect magical and legendary items and relics. Power up your relics after death. Inspired by classic PC action role-playing games, this roguelike RPG uses randomly generated maps, permanent character death, randomized item drops and more for unlimited replayability. Regular updates are ongoing! Instructions: Touch anywhere to move Touch and hold on nearby enemies to attack Double-tap to use your special attack Tap on items, chests, shrines and other things to interact Collect shards to power up your relics! Collect gemstones to resurrect after death! Advance your character by discovering powerful items and relics. Gain levels for yourself and your relics. Choose from four ferocious classes - Warrior, Rogue, Mage and Monk This game collects basic usage data but does not collect any personally identifying information. Script: You will be able to obtain all the infinite resources. Watch the video to succeed. You must have the resources as they are in the photo or it may not work. Remember that I do not play Rogue Dungeon RPG Any doubt of the game go to google play.
  5. Another game ?? LOL .... And what happened with Rogue Dungeon RPG? I will help you with your other game. and I'll give you a script for Rogue Dungeon RPG. Remember that you must create the theme with the name of the game. Each game has its own theme. ?
  6. Remember that you should always double your value. In dword. This address will take you to your gold. You should only add the value of your gold at the end and search. 260;100;100;8;
  7. I use root. Try leaving the memory ranges as they were.
  8. Old, maybe dexterity and also trial and error. I do not understand this question.
  9. @LionelHax encrypt the script before publishing it, so they do not copy and change your name. Use this script to encrypt, add protection. Script compiler (#9b2xri28)
  10. You have the solution in my old comment. This would be your script: if gg.isVisible(true) then gg.setVisible(false) end LionelHax = gg.prompt({[1] = 'ENTER THE CURRENT VALUE OF YOUR MONEY => LIONELHAX '}, {[1] = 'SUSCRIBANCE A MI CANAL PERROS '}) gg.toast('CREATED BY LIONELHAX') if LionelHax == nil then gg.alert('CANCELASTE EL SCRIPT ') os.exit() end gg.clearResults() gg.searchNumber(LionelHax[1], gg.TYPE_DWORD) if gg.getResultsCount() == 0 then gg.alert('THE SEARCH DOES NOT YIELD ANY RESULTS') gg.toast('CREATED BY LIONELHAX') os.exit() end gg.getResults(15) gg.editAll ( '999999999' , gg.TYPE_DWORD) Which tells the user, to enter the value of their current money and then edit it to 99999. What do you do so that the search can be refined? add this line of code. to give the user time to earn or spend money. gg.setVisible(false) while true do if gg.isVisible() then gg.setVisible(false) break end gg.sleep(100) end then add this line again, so that the user can write the current value of their money. LionelHax1 = gg.prompt({[1] = 'ENTER THE CURRENT VALUE OF YOUR MONEY => LIONELHAX '}, {[1] = 'SUSCRIBANCE A MI CANAL PERROS '}) gg.toast('CREATED BY LIONELHAX') if LionelHax1 == nil then gg.alert('CANCELASTE EL SCRIPT ') os.exit() end gg.clearResults() gg.searchNumber(LionelHax[1], gg.TYPE_DWORD) if gg.getResultsCount() == 0 then gg.alert('THE SEARCH DOES NOT YIELD ANY RESULTS') gg.toast('CREATED BY LIONELHAX') os.exit() end But I noticed that in this line now it is called LionelHax1 and before it was LionelHax. This way you have your script ordered and without errors. Now you can add the end of the script that is this. gg.getResults(15) gg.editAll ( '999999999' , gg.TYPE_DWORD) now we unite everything, and add some texts. if gg.isVisible(true) then gg.setVisible(false) end LionelHax = gg.prompt({[1] = 'ENTER THE CURRENT VALUE OF YOUR MONEY => LIONELHAX '}, {[1] = 'SUSCRIBANCE A MI CANAL PERROS '}) gg.toast('CREATED BY LIONELHAX') if LionelHax == nil then gg.alert('CANCELASTE EL SCRIPT ') os.exit() end gg.clearResults() gg.searchNumber(LionelHax[1], gg.TYPE_DWORD) if gg.getResultsCount() == 0 then gg.alert('THE SEARCH DOES NOT YIELD ANY RESULTS') gg.toast('CREATED BY LIONELHAX') os.exit() end gg.alert(' SPEND OR ACQUIRE COINS AND THEN PRESS THE GAMEGUARDIAN TO REFINE .') gg.setVisible(false) while true do if gg.isVisible() then gg.setVisible(false) break end gg.sleep(100) end LionelHax1 = gg.prompt({[1] = 'INGRESE EL VALOR ACTUAL DE SU ORO '}, {[1] = 'LionelHax'}) gg.toast('CREATED BY LIONELHAX') if LionelHax1 == nil then gg.alert('CANCELASTE EL SCRIPT ') os.exit() end gg.searchNumber(LionelHax1[1], gg.TYPE_DWORD) if gg.getResultsCount() == 0 then gg.alert('THE SEARCH DOES NOT YIELD ANY RESULTS') gg.toast('CREATED BY LIONELHAX') os.exit() end gg.getResults(50) gg.editAll ( '9999999' , gg.TYPE_DWORD) gg.alert('THE HACK TO FINISHED SUCCESSFULLY') os.exit() wonderful. Take your time to analyze everything. Because I will not be back in a long time. and in this forum they will send you to google. When they send you to google. send them also to look for the word "selfishness". The current teaching methodology they are incorporating in all courses is called: practice and not study. Practice: use examples so that the person understands faster. study: read a bit of s***(?) that only serves to delay the student to learn something. Old remember Go to the GG help where you can see more examples not very clear. But they will help you understand a little more. ? perro Lol LionelHax.lua
  11. @nalcwap @Anaconda69 I do not play this game, I downloaded it to help them. Use the same method for the other resources. 1 = 2 This means that if you have 10 coins, look for 20. Good luck ?
  12. This game is easy to modify. If I remember correctly, the values are in dword and you should look for them at twice the value. Example: if you have 100 coins you should look for 200 coins. Before editing the values have coins nearby. So that at the time of editing, take the coins and your hack is saved. I recommend using the "add to a value, do not substitute" box. ?
  13. This line of code is to perform the hidden search. ? Here write what you want ? this line serves to show a short ad. ? This line is used to display a fixed text on the screen. ? This serves to cancel the script. ? Old I do not come much to this forum. but with these examples you can start to create scripts. I leave the download link, because when you copy it from the forum screen, many times invisible signs are incorporated that when executing the script throws you error.
  14. This function is used to search. And your script is dialing 1. For that reason, look for 1 and not the number you drink. Try this : if gg.isVisible(true) then gg.setVisible(false) end LionelHax = gg.prompt({[1] = 'ENTER THE CURRENT VALUE OF YOUR MONEY => LIONELHAX '}, {[1] = 'SUSCRIBANCE A MI CANAL PERROS ?'}) gg.toast('CREATED BY LIONELHAX') if LionelHax == nil then gg.alert('CANCELASTE EL SCRIPT ??') os.exit() end gg.clearResults() gg.searchNumber(LionelHax[1], gg.TYPE_DWORD) if gg.getResultsCount() == 0 then gg.alert('THE SEARCH DOES NOT YIELD ANY RESULTS') gg.toast('CREATED BY LIONELHAX') os.exit() end gg.getResults(15) gg.editAll ( '999999999' , gg.TYPE_DWORD) Revoxtical.lua
×
×
  • 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.