Jump to content

HorridModz

Contributor
  • Posts

    282
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by HorridModz

  1. Can you say the issue you are experiencing? The script should still work on 22.5.4. 1. It will come out when it comes out. You should try to do other things while you wait for public mods to use in a game - there is more to life. 2. No. If I did, I would put it here.
  2. I just gave you a general guide. If you do not understand, you are on the perfect website to learn modding It works decent enough for 22.5.1. I just gave you a general guide. If you do not understand, you are on the perfect website to learn modding Weapon unlocker works on all versions, but when a new script update comes out, it is still best to update to get the improvements It works decent enough for 22.5.1. I just gave you a general guide. If you do not understand, you are on the perfect website to learn modding
  3. It is possible, but price is server sided and will kick you. If you can someone bypass the kick, you can change the price not by modifying the unlocking, but modifying the price itself. The easiest way to do this is to hex patch the price of everything (can found in the ItemPrice class) Mentioning gameguardian mods is against the website's rules. I don't know why it is, but it is. I would delete that comment before your account gets banned.
  4. Thanks for helping! My code does the same thing, but now @XkPPhas options! They can choose whichever one they understand the most.
  5. You update it for 22.5.1, I don't feel like it. Don't rely on free modders for weapons in a block game.
  6. Weapons that you unlock at level 65 (see here: https://pixelgun.fandom.com/wiki/Veteran_Chest) These weapons are risky because if you are not level 65, it is impossible to legitimately have them - meaning you can be reported by other players.
  7. Ah ok. Here's code for that: The code may have some errors. It works by building an array of all the values you selected, and removing any results that do not have any of those values. local function contains(item,array) local index local value for index, value in ipairs(array) do if value == item then return true end end return false end local menu = gg.multiChoice(val,nil,"") if menu == nil then os.exit() -- user clicked 'cancel' end valid = {} local index = 0 while index < #menu do index = index + 1 if menu[index] then valid[#valid + 1] = val[index] end end results = gg.getResults(gg.getResultsCount()) for result in results do if not(contains(result.value,results)) then gg.removeResults(result) end end
  8. Ugh, this is exactly what I said. I just made a mistake in that code. Use this new code. Try the code in the quote. I updated it.
  9. View File Dynamic Value Remover This is a simple tool that spams value unchanged search on your search results. It is useful when you have a bunch of results, and want to narrow them down. Submitter HorridModz Submitted 07/14/2022 Category LUA scripts  
  10. Version 1.0.0

    994 downloads

    This is a simple tool that spams value unchanged search on your search results. It is useful when you have a bunch of results, and want to narrow them down.
  11. I don't really know how ban waves work, but weapons should not get you banned. Of course, you can still be reported by other players (though the chance of this occurring is miniscule)
  12. The qword and dword value in that address are the ones I search for. IDK how qword and dword values are generated, because it's obviously not a direction variation of float and qword (because there are thousands of float 1.0 values, but the dword value comes up hundreds of thousands of times, and the qword only comes up 1-4 times). All I know is that the values stay the same whenever I load the game on 22.5.0 with a 64bit device. As for the force update, you have to go into google play games and switch your pixel gun 3d account to a new one. You must have been using 22.5.0, because this screen means your player data has data past 22.5.0. Thanks for finding the value yourself! What do you mean, the value isn't always 1.0? The value may change sometimes when the game actually changes zoom itself, but on the loading screen, in the lobby, and in matches, this shouldn't happen. For me, it is always 1.0. By the way, you can still play with zoom on the force update screen. That's all that is really necessary.
  13. I don't know what you mean. I also don't intend to fix any issues you have. I'm trying to explain to you how to do what you want to do. It's great that you want to make a script using advanced features and I know it's not easy. But I'm not going to make your script for you. I'm only here to help you when you get stuck on how to do something. Please rephrase what you mean by this - I don't get what you are trying to say.
  14. 22.5 eventually, I'm very lazy. Thanks so much for the compliments! I really appreciate it. No, why the heck would it? And don't try asking for it, because that won't make it come out any faster. IDK go do something with your life while you wait, no I don't and if I did you are not so special that I would randomly give it to you but noone else, and please stop begging me for mods because waiting for mods to use in a block game all your life isn't your purpose in life. I know I'm being harsh, but using a mod in a video game isn't what you live for. There's much better things to do and look forward to.
  15. It's not menu[val]. If your multichoice gets val, and val is a table, then gg will return the index checkbox you selected. Fixed: local menu = gg.multiChoice(val,nil,"") if menu == nil then os.exit() -- user clicked 'cancel' end local index = 0 while menu[index] ~= true do index = index + 1 if index > #menu then os.exit() - no checkboxes selected end end gg.refineNumber(val[index],4) end Another way to do this is with gg.choice. gg.choice has different ui (only lets you select one, rather than checkboxes) and returns the index of the one you clicked. local menu = gg.choice(val,nil,"") if menu == nil then os.exit() -- user clicked 'cancel' end gg.refineNumber(val[menu],4) end
  16. Only if reported by the community, which is likely if you play duels.
  17. I don't want you to have to go through a lot of effort, but if you don't mind maybe you could find the zoom value and send me a picture, and maybe we could see if the memory changes based on device? By the way, I am on version 22.5.0. You're probably on 22.5.1. You can download 22.5.0 here: com.pixel.gun3d_22.5.0-192077_minAPI19(arm64-v8a)(nodpi)_apkmirror.com (1) (mediafire.com)
  18. But I used your tutorial to make it :). If you don't want credit, I can remove it. Here is the zoom value: -4,436,591,651,086,925,824 Qword in anonymous region Maybe this script only works on my device. I will attach a picture of the values near zoom value for me.
  19. View File Pixel Gun 3D Xray Hack Youtube Demo: Made with my pixel gun 3d zoom hack (read that post before downloading this script): Pixel Gun 3D Zoom Hack - LUA scripts - GameGuardian Make sure to run this script when the game is around 5-60% loaded. If it doesn't work, try restarting the game and retrying. This script was made on a 64bit device for version 22.5.0. I don't know if this will work on version 22.5.1 or on armv7 devices. Please tell me if it does or not! Submitter HorridModz Submitted 07/01/2022 Category LUA scripts  
  20. Version 1.0.0

    710 downloads

    Youtube Demo: Made with my pixel gun 3d zoom hack (read that post before downloading this script): Pixel Gun 3D Zoom Hack - LUA scripts - GameGuardian Make sure to run this script when the game is around 5-60% loaded. If it doesn't work, try restarting the game and retrying. This script was made on a 64bit device for version 22.5.0. I don't know if this will work on version 22.5.1 or on armv7 devices. Please tell me if it does or not!
    This is awesome, but I'm kind of confused. What benefits does this have over using dump.cs? I am going to go read the github repository now
  21. View File PG3D Godmode Hack (All Updates) Youtube demo: Contact me on discord: User123456789#6424 This script gives you godmode in pixel gun 3d! Just activate the script while in a match and you will be immune to damage! Thanks to poggersbutnot (don't try to contact him, he's gone) for the godmode method. I just made it into a script. Submitter HorridModz Submitted 06/30/2022 Category LUA scripts  
  22. Version 1.0.0

    1,687 downloads

    Youtube demo: PG3D Godmode Demo - YouTube Contact me on discord: User123456789#6424 This script gives you godmode in pixel gun 3d! Just activate the script while in a match and you will be immune to damage! Thanks to poggersbutnot (don't try to contact him, he's gone) for the godmode method. I just made it into a script.
  23. View File Pixel Gun 3D Zoom Hack Contact me on discord: User123456789#6424 Youtube demo: PG3D Zoom Hack Demo - YouTube This is a simple zoom hack for pixel gun 3d. It lets you zoom in and out. It's not very useful, but it was fun to make and hopefully will be fun to use. Both the script and the way I found this hack are inspired by @Platonic. This script was made on a 64bit device for version 22.5.0. I don't know if this will work on version 22.5.1 or on armv7 devices. Please tell me if it does or not! Sometimes, multiple values are found. If you want only one value to be found, try running the script when the game is around 5-60% loaded. Enjoy! Submitter HorridModz Submitted 06/30/2022 Category LUA scripts  
  24. Version 2.0.0

    578 downloads

    Contact me on discord: User123456789#6424 Youtube demo: PG3D Zoom Hack Demo - YouTube This is a simple zoom hack for pixel gun 3d. It lets you zoom in and out. It's not very useful, but it was fun to make and hopefully will be fun to use. Both the script and the way I found this hack are inspired by @Platonic. This script was made on a 64bit device for version 22.5.0. I don't know if this will work on version 22.5.1 or on armv7 devices. Please tell me if it does or not! Sometimes, multiple values are found. If you want only one value to be found, try running the script when the game is around 5-60% loaded. Enjoy! I used this to make an xray hack! Download it here: https://gameguardian.net/forum/files/file/3060-pixel-gun-3d-xray-hack/
×
×
  • 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.