Jump to content

Anonymous1000

Ascended
  • Posts

    325
  • Joined

  • Last visited

  • Days Won

    19

Everything posted by Anonymous1000

  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,057 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
  15. Anonymous1000

    GG-Detected!

    apps: Busybox xposed installer, do not download from uptodown because it has advertising trojan. Xprivacy lua is installed from the app of xposed. Game guardian It is important that you delete the free fire data before doing the procedure.
  16. Anonymous1000

    GG-Detected!

    This game can be modified with scripts, using game guardian without being detected. Tested on android 5 - 6 and 7. I do not play this. I just wanted to verify, if GG was detected.
  17. Anonymous1000

    GameGuardian

    The debate or opinion was based on sponsoring more the brand of "game guardian" creating their own virtual environment. Answers or possibly valid arguments of the administration: "We do not have time for that". Smart answer: We will take your opinion into account, thank you. What did I gain with this? Nothing !!. What the company wins: users, prestige, income. Etc .... Stupid opinions of people who do not know how to run a company? Many ..... NOTE: You can never offend "anonymous 1000" which is a person with very high self-esteem and their conversations are based on valid arguments according to the topic.
  18. Anonymous1000

    GameGuardian

    It is not about fighting between user and administrator. It is about generating constructive opinions that nobody else has generated in the forum. Maybe you're not the right person for this topic. Better to continue with the programming. Maybe @d2dyno understands the business point of view, I do not know. What I do know is that there will be no coalition here. Remember that users are the cause of the success of applications, companies, singers, artists, etc ... They should perhaps implement a quick response for opinions to improve the forum or the "application". How: Thank you, your opinions are very important to us. We want to always offer you the best. And avoid inconveniencing users.
  19. Anonymous1000

    GameGuardian

    The companies have different dependencies. The tool works well. Do you want to modify games? Do you want to ask for help? Do you want to create scripts? Do it !!! Nobody prevents you. My opinion is about the finances of a company or brand based on problems with some external functions of the app. Your arguments are like the po-op that goes down the drain. Study a little on the subject to be able to have argumentation. For the time being, keep asking for help for your games since you can not do it yourself.
  20. Anonymous1000

    GameGuardian

    quote what I wrote without meaning. I like the arguments. When I started my opinion, it was based on something called "marketing" of the company or brand "game guardian". If you do not know what "marketing" is, study "economics" or search in "google". Intelligence is not about knowing how to program and discuss with children about programming. You are just one more programmer among many. So much time coding this application and the owner is another. an intelligent person would already be the owner and not administrator of a forum and encoder of the "app" All the respect and admiration I had for him, has been lost. I will spend little time on the internet, for any argument. I do not usually spend a lot of time on the internet, since life is outside in the open air and not locked up at home watching videos or playing online.
  21. The file is finished. this Video ? is old but it will serve as a guide for the installation. In the description of the video, you will find the download link. Route: the best free mods/grim soul. Any doubt. write on my channel: ANONYMOUS 1000 HACKER Note: Practice any modification or hack before making it in your official account.
  22. Anonymous1000

    GameGuardian

    they are not nonsense, you told me. ? 29 minutes ago, Enyby said: Well yes. Compare me with google. This is equivalent: one person who does not get a penny from this, and a world company with hundreds of thousands of employees and billions of dollars in turnover. I answered: they started from school without capital. you know about programming. I know a lot about marketing, international business and economics. the one who has a project and is frustrated because there is no capital does not progress. The problem is that you have responsibility on your shoulders to administer a forum and code an "app". It is a lot of work. and this mark what you need is a "marketing study" to start generating income for the work provided. That's what the forums are about, to provide ideas for brand improvements. good night .....
  23. Anonymous1000

    GameGuardian

    I have a lot of respect for you, it has helped me a lot. But look Larry Page and Sergey Brin started Google as a university project in January 1996 when they were both students. and look at the company today, it is a success with everything it has achieved. Many of the world's largest companies have started from the bottom up and have no investment capital. Here, the important thing is to think big, have more clients every day. give priority to the "game guardian" brand. that is guaranteed, that people invest and feel very grateful with the brand "game guardian" with the "app"
  24. Anonymous1000

    GameGuardian

    is that this is about marketing for the company, for the forum, for the "game guardian" brand. and not to sponsor "apps" of third parties. look at google: it has its "app" of browser, keyboard, mail, translation ... etc...
×
×
  • 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.