-
Posts
287 -
Joined
-
Last visited
-
Days Won
8
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by HorridModz
-
This post cannot be displayed because it is in a forum which requires at least 1 post to view.
-
This post cannot be displayed because it is in a forum which requires at least 1 post to view.
-
-
I thanked you in the review you made, but thanks again for the kind words. No, clan items are not lost if you leave a clan. However, clan armor cannot be uaed if you are not in a clan with that league or higher (ie golden division armor cannot be used in wooden division clan). Luckoly I was able to answer this question. But these are game mechanics, so consulting the pixel gun fandom wiki or asking fellow pg3d players is a better way to get answers to questions like this. It does work. I am just curios - If you can't test / use it, why does it affect you whether it works or not? No offense!
-
-
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
-
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.
-
Thanks for helping! My code does the same thing, but now @XkPPhas options! They can choose whichever one they understand the most.
-
-
-
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
-
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.
-
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
-
-
-
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.
-
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.
-
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.
-
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
-
Only if reported by the community, which is likely if you play duels.
-
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)
-
-
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
-
Version 1.0.0
735 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! -