Jump to content

HorridModz

Contributor
  • Posts

    282
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by HorridModz

  1. Because pixel gun's collectables and currencies are all encrypted. These mods require lots of skills and experience - more than I have!
  2. View File Pixel Gun 3D Godmode Hack Enable and disable godmode in pixel gun 3d! This script will make you 100% invincible! You can still die from going off the map though. This hack will only work on 64bit android devices. To see if your device is 64bit, download a simple 64bit checker app from the app store. I am sorry for not uploading anything for a long time. I have been busy working on many scripts - especially pixel gun weapon unlocker! I had this script sitting around, so I figured I'd post it! Contact me: User123456789#6424 on discord. Enjoy! Submitter HorridModz Submitted 04/21/2022 Category LUA scripts  
  3. If you don't understand it then don't post here please. Someone who understood already helped me. Same for you @HEROGAMEOfficialHEROGAMand @zam535582
  4. Oh thanks, so my parameter and variable had a contradicting name! Easy fix, thanks for finding! WDYM?
  5. If you search your coins and go to the address, you get the keys around 30 addresses below, right? So, a nearby search for say 500 with a distance of 30 will return every value within an offset of 30 from the coins value that is equal to 500. This means that if I find gold value and nearby searches the keys value (which the script prompts for) with a distance of say 40, every value that has the prompted value will come up. If you have, say, 42 keys, and you nearby search 42 with distance of 40, and only with the option "After" checked and not before (shown in the attached pictures), I should get my keys value. And since I am only searching 40 addresses, most likely the only one that equals 42 is my keys value. To make use of this, click "record script" and record yourself doing this nearby search. Then open up that script as a text file and copy the code and add it into your script. Coins and score are dword ...?
  6. The picture isn't working. Can you tell me what you found about score multiplier? @FluidZJust prompt user for their keys, coins, and hoverboards, and do a nearby search for those values. You don't need to know exact offset!
  7. Look at function number 2 (selectconditions) and the last function (searchandrefine). When I run this and select some stuff, it says there is an attempt to index a nil value (encrypted) in function searchandrefine. But I clearly define encrypted as encrypted = gg.multiChoice in function selectconditions. Can someone please fix my code? Thanks! function wait_for_action() gg.setVisible(false) while true do gg.sleep(500) if gg.isVisible()then break end end end function selectconditions(encrypted) if encrypted == 1 then encrypted = gg.multiChoice({'Encrypted'},nil,'Is the value encrypted?') end signs = {gg.SIGN_EQUAL,gg.SIGN_NOT_EQUAL,gg.SIGN_GREATER_,gg.SIGN_LESS,gg.SIGN_GREATER_OR_EQUAL,gg.SIGN_LESS_OR_EQUAL} signchoice = gg.multiChoice({'=',' ≠','>','<',' ≥','≤'},nil,'What condition?') i = 0 while not signchoice[i] do i = i + 1 end sign = signs[i] end function selecttype() menu = gg.multiChoice({'Auto','Dword','Float','Double','Word','Byte','Qword','Xor'},nil,'What type to search?') if menu == nil then else if menu[1] then a = 1 type = gg.TYPE_AUTO end if menu[2] then a = 1 type = gg.TYPE_DWORD end if menu[3] then a = 1 type = gg.TYPE_FLOAT end if menu[4] then a = 1 type = gg.TYPE_DOUBLE end if menu[5] then a = 1 type = gg.TYPE_WORD end if menu[6] then a = 1 type = gg.TYPE_BYTE end if menu[7] then a = 1 type = gg.TYPE_QWORD end if menu[8] then a = 1 type = gg.TYPE_XOR end end while a == 0 do a = 0 menu = gg.multiChoice({'Auto','Dword','Float','Double','Word','Byte','Qword','Xor',},nil,'What type to search?') if menu == nil then else if menu[1] then a = 1 type = gg.TYPE_AUTO end if menu[2] then a = 1 type = gg.TYPE_DWORD end if menu[3] then a = 1 type = gg.TYPE_FLOAT end if menu[4] then a = 1 type = gg.TYPE_DOUBLE end if menu[5] then a = 1 type = gg.TYPE_WORD end if menu[6] then a = 1 type = gg.TYPE_BYTE end if menu[7] then a = 1 type = gg.TYPE_QWORD end if menu[8] then a = 1 type = gg.TYPE_XOR end end end end function selectranges() menu = gg.multiChoice({'Jh: Java heap','Ch: C++ heap','Ca: C++ alloc','Cd: C++ .data','Cb: C++ .bss','PS:PPSSPP','A: Anonymous','J: Java','S: Stack','A: Ashmen','V: Video','O: Other','B: Bad','Xa: Code app','Xs: Code system','Reset','All'},nil,"Select memory ranges. If you don’t know what this is, select “All”.") ranges = "" if menu[1] then ranges = ranges .. "gg.REGION_JAVA_HEAP | " end if menu[2] then ranges = ranges .. "gg.REGION_C_HEAP | " end if menu[3] then ranges = ranges .. "gg.REGION_C_ALLOC | " end if menu[4] then ranges = ranges .. "gg.REGION_C_DATA | " end if menu[5] then a = 1 type = gg.TYPE_WORD end if menu[6] then a = 1 type = gg.TYPE_BYTE end if menu[7] then a = 1 type = gg.TYPE_QWORD end if menu[8] then a = 1 type = gg.TYPE_XOR end gg.setRanges(ranges) end end function searchandrefine() gg.clearResults() selecttype() selectconditions(1) value = gg.prompt({[1] = 'What is the value?'}, {[1] = '0'}, {[1] = 'text'}) gg.searchNumber(value[1], type, encrypted[1], sign) while gg.getResultsCount() > 10 do gg.alert('Make the value change, then click the gameguardian icon.') wait_for_action() gg.refineNumber(value[1], type, encrypted[1], sign) value = gg.prompt({[1] = 'What has the value changed to?'}, {[1] = '0'}, {[1] = 'text'}) end continue = gg.multiChoice({'There are' .. gg.getResultsCount() .. 'results left. Would you like to continue refining?'},nil,'') while continue[1] or gg.getResultsCount() < 2 do gg.alert('Make the value change, then click the gameguardian icon.') wait_for_action() gg.refineNumber(value[1], type, encrypted[1], sign) value = gg.prompt({[1] = 'What has the value changed to?'}, {[1] = '0'}, {[1] = 'text'}) continue = gg.multiChoice({'There are' .. gg.getResultsCount() .. 'results left. Would you like to continue refining?'},nil,'') end end searchandrefine()
  8. Version 1.0.0

    1,524 downloads

    Enable and disable godmode in pixel gun 3d! This script will make you 100% invincible! You can still die from going off the map though. This hack will only work on 64bit android devices. To see if your device is 64bit, download a simple 64bit checker app from the app store. I am sorry for not uploading anything for a long time. I have been busy working on many scripts - especially pixel gun weapon unlocker! I had this script sitting around, so I figured I'd post it! Contact me: User123456789#6424 on discord. Enjoy!
  9. Yes, I figured out pixel gun's logic!
  10. Quoting both of these, I have answered on discord. I am working on finding more ids. Tutorial on id finding coming soon!
  11. View File Pixel Gun 3D Weapon Unlocker Unlock almost all guns in pixel gun 3d! Notice: This script is abandoned. I will not be updating, maintaining, or helping with it. Please do not ask me for help finding ids, report bugs with the script, or ask for help using it. Update: @red091753has adopted this script and is actively maintaining and updating it: PG3D all weapon unlocker - LUA scripts - GameGuardian. If you have any feedback, suggestions, or questions, ask there, not here. Armor unlock script is done and will be coming soon! Weapon spoofer script is done and will be coming soon! Unlock at your level instead of level 1 script is done and will be coming soon! Use illegal weapons like bone knife script is done and will be coming soon! Unlock UNCOMMON GUNS script is done and will be coming soon! Do you want necklace of the ice king, spirit staff, and ultimatum? How about heart of volcano, desert fighter, and iron sword? No? Maybe ice paws, activity neutralizer, and cyclops sling? Unlock all your dream guns with pixel gun 3d weapon unlocker, with only the click of a button! This hack comes with 500 of the most wanted weapons! 4.3 is now out! And it has 5 times as many buyable weapons! Notes: -Some weapons do not have buy buttons. If a weapon does not have a buy button, you cannot buy it (Update: In 22.4.0, the devs unpatched it and now they all do!) -This mod does not get you the guns for free. You still need currency. However, I am working on a currency hack at the moment! I will post it once it is done. -This script takes about 10-50 minutes because it has to search and edit about 2000 values. -You can manually add your own ids if you have extra ids, or if you just don't want to wait for all the ids. Contact me: User123456789#6424 on discord. Credits: Script 100% by me (HorridModz) Some weapon IDs by me, but about 80% are by my friends. G_M#5963 is the only one who wants credit. Submitter HorridModz Submitted 04/10/2022 Category LUA scripts  
  12. @HthacksHow is it not working? what is your issue? Does it not get found or not edit? It has worked fine for everyone ever since the game came out. Look up township helicopter hack on youtube and watch any video so you can understand how to use the hack.
  13. Version 5.3.0

    36,818 downloads

    Unlock almost all guns in pixel gun 3d! Notice: This script is abandoned. I will not be updating, maintaining, or helping with it. Please do not ask me for help finding ids, report bugs with the script, or ask for help using it. Update: @red091753has adopted this script and is actively maintaining and updating it: PG3D all weapon unlocker - LUA scripts - GameGuardian. If you have any feedback, suggestions, or questions, ask there, not here. Armor unlock script is done and will be coming soon! Weapon spoofer script is done and will be coming soon! Unlock at your level instead of level 1 script is done and will be coming soon! Use illegal weapons like bone knife script is done and will be coming soon! Unlock UNCOMMON GUNS script is done and will be coming soon! Do you want necklace of the ice king, spirit staff, and ultimatum? How about heart of volcano, desert fighter, and iron sword? No? Maybe ice paws, activity neutralizer, and cyclops sling? Unlock all your dream guns with pixel gun 3d weapon unlocker, with only the click of a button! This hack comes with 500 of the most wanted weapons! 4.3 is now out! And it has 5 times as many buyable weapons! Notes: -Some weapons do not have buy buttons. If a weapon does not have a buy button, you cannot buy it (Update: In 22.4.0, the devs unpatched it and now they all do!) -This mod does not get you the guns for free. You still need currency. However, I am working on a currency hack at the moment! I will post it once it is done. -This script takes about 10-50 minutes because it has to search and edit about 2000 values. -You can manually add your own ids if you have extra ids, or if you just don't want to wait for all the ids. Contact me: User123456789#6424 on discord. Credits: Script 100% by me (HorridModz) Some weapon IDs by me, but about 80% are by my friends. G_M#5963 is the only one who wants credit.
  14. View File Pixel Gun 3D Speedhack PRO Video coming soon! By User123456789#6424 (discord) After weeks of hard work, the finished version is finally here! It has 35 options! Control time in pixel gun 3d! You can use speed for many hacks, including freezing match time, rapid fire, and gadget spam! If you want to run fast, remove pullout delay, spam gadgets, rapid fire, control match time, or whatever other hack you want, this script is for you! The possibilities are limitless. No other currently working and public hack is able to do this! This hack comes in two versions: Lite and Pro. With lite, you can only choose from a limited number of speeds, and you can only edit the value once per game session. With pro, you can change the value to whatever you want, as much as you want. This includes setting negative time, and freezing time. Guide to using script: The script instructions are self-explanatory. To edit the match time, you must be the host of the match. I do not know exactly how to be the host. However, if you do duels, you will have a 50% chance to be the host. If you make a private duel, the person who creates it will have a 100% chance to be the host. Some hacks may get you kicked. Rapid firing or gadget spamming too quickly will get you kicked. Rapid firing is advised to be used on low fire rate weapons like melees and snipers. Using rapid fire on a automatic primary will get you instantly kicked. My recommended weapons (high capacity and low fire rate) are ultimatum, laser bow, and proud eagle. Rest assured, however: You will not get banned, no matter what. Suggested uses: -Use high speed to remove delay. -Use high speed, a one-shot sniper, aiming assistance, and auto-shooting to quickly kill any enemies who approach you. -Use high speed in duel to quickly farm wins. -Use low speed to easily complete difficult parkour. -Use high speed to rapid fire or spam gadgets. -Use low speed to make gadgets like denied, rocket mech, and biotic shield last longer. -Use low speed to make spawn protection infinite. -Use low speed to make boosts like damage boost from teammate's weapons and invisibility from clock of night last longer. -Use low speed to hover in midair - especially useful in block crash! Credits: Credits are in script. Submitter HorridModz Submitted 04/09/2022 Category LUA scripts  
  15. Version 5.0.0

    4,189 downloads

    Video coming soon! By User123456789#6424 (discord) After weeks of hard work, the finished version is finally here! It has 35 options! Control time in pixel gun 3d! You can use speed for many hacks, including freezing match time, rapid fire, and gadget spam! If you want to run fast, remove pullout delay, spam gadgets, rapid fire, control match time, or whatever other hack you want, this script is for you! The possibilities are limitless. No other currently working and public hack is able to do this! This hack comes in two versions: Lite and Pro. With lite, you can only choose from a limited number of speeds, and you can only edit the value once per game session. With pro, you can change the value to whatever you want, as much as you want. This includes setting negative time, and freezing time. Guide to using script: The script instructions are self-explanatory. To edit the match time, you must be the host of the match. I do not know exactly how to be the host. However, if you do duels, you will have a 50% chance to be the host. If you make a private duel, the person who creates it will have a 100% chance to be the host. Some hacks may get you kicked. Rapid firing or gadget spamming too quickly will get you kicked. Rapid firing is advised to be used on low fire rate weapons like melees and snipers. Using rapid fire on a automatic primary will get you instantly kicked. My recommended weapons (high capacity and low fire rate) are ultimatum, laser bow, and proud eagle. Rest assured, however: You will not get banned, no matter what. Suggested uses: -Use high speed to remove delay. -Use high speed, a one-shot sniper, aiming assistance, and auto-shooting to quickly kill any enemies who approach you. -Use high speed in duel to quickly farm wins. -Use low speed to easily complete difficult parkour. -Use high speed to rapid fire or spam gadgets. -Use low speed to make gadgets like denied, rocket mech, and biotic shield last longer. -Use low speed to make spawn protection infinite. -Use low speed to make boosts like damage boost from teammate's weapons and invisibility from clock of night last longer. -Use low speed to hover in midair - especially useful in block crash! Credits: Credits are in script.
  16. I do keep the raw version myself. I didn't mean decrypt mega hack, I just meant grab it from my person repository - sorry! Anyway though, it's still a pain. If you really think it's that good of an idea, maybe I can try it out!
  17. View File Township Helicopter Hacker With this simple script, easily hack township helicopter orders! You can use this to mod gold, exp, and money! Features: -Super easy to use - nothing needs to be done manually -Hack gold, money, and exp -Freezes orders so every single order you send will give you the modified rewards -Has an anti-ban system - it will prevent you from getting banned from modified orders -Works on all versions of the game WARNING: Getting to over 25k dollars will usually result in a ban due to you having abnormally high currency. Contact Me: User123456789#6916 on discord Credits are in the script Township mega hack is coming soon! Submitter HorridModz Submitted 04/06/2022 Category LUA scripts  
  18. Thanks. But still no. Why? Because publishing takes forever. I have to encrypt script, decrypt mega hack, add to mega hack, encrypt mega hack again, and then update the post on a crappy phone. Also, people will not see it's updated because noone follows script posts.
  19. Version 1.0.0

    5,019 downloads

    With this simple script, easily hack township helicopter orders! You can use this to mod gold, exp, and money! Features: -Super easy to use - nothing needs to be done manually -Hack gold, money, and exp -Freezes orders so every single order you send will give you the modified rewards -Has an anti-ban system - it will prevent you from getting banned from modified orders -Works on all versions of the game WARNING: Getting to over 25k dollars will usually result in a ban due to you having abnormally high currency. Contact Me: User123456789#6424 on discord Credits are in the script Township mega hack is coming soon!
×
×
  • 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.