-
Posts
1,722 -
Joined
-
Last visited
-
Days Won
109
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by MonkeySAN
-
Coins value are multiply from Gems. find that multiplier...change it to negative.. and you get this.
-
Finding Values in Pixel Z Gunner! >:D / script question
MonkeySAN replied to Crystal_Mods100x's topic in Requests
Get Golds from weapon sell. PZG_WpnSell.mp4 -
Finding Values in Pixel Z Gunner! >:D / script question
MonkeySAN replied to Crystal_Mods100x's topic in Requests
PZ_GunnerGEM.mp4 -
Finding Values in Pixel Z Gunner! >:D / script question
MonkeySAN replied to Crystal_Mods100x's topic in Requests
i got my Gems by buying Weapon in the Shop. change the gems into negative value. since it will not visually shown you need to use increment too. take note of your current gems in hand and buy. then (New value - old value) = the difference is the Weapon gems value. Coins/Gold...i just buy it using the Gems. -
Finding Values in Pixel Z Gunner! >:D / script question
MonkeySAN replied to Crystal_Mods100x's topic in Requests
finally Gems and Golds.. -
Finding Values in Pixel Z Gunner! >:D / script question
MonkeySAN replied to Crystal_Mods100x's topic in Requests
dont know if im actually doing it right but.. the Damage is now permanent. -
can you show me(video) how you actually did it? you search for the weapon Attack value example : Handgun +100 search 100 after results came then edit by increment 1 all results will change to 101,102,103... and so on. then tap and look at the weapon Attack value and find the match value from the results. thats your weapon Attack value.
-
Finding Values in Pixel Z Gunner! >:D / script question
MonkeySAN replied to Crystal_Mods100x's topic in Requests
you can search HP, DEF, DMG and Ammo while playing. its all Dword in Anonymous region. search and refine. while in HP and DEF address you can find many things such as the speed of the character. PZ_GunnerSpeed.mp4 Fly..?? -
Finding Values in Pixel Z Gunner! >:D / script question
MonkeySAN replied to Crystal_Mods100x's topic in Requests
https://streamable.com/u1ks28 just started. -
obviously you can.. local gg = gg gg.setRanges(32) gg.searchNumber("95;75;3;200;1;130;9;1,075,419,546;26;1,065,353,216;26;1,094,713,344;26::49", 4) gg.refineNumber("75;130;9;26") local results = gg.getResults(10) for i,v in pairs(results) do if v.value == 75 then v.value = 85 elseif v.value == 130 then v.value = 1400 elseif v.value == 9 then v.value = 400 elseif v.value == 26 then v.value = 4000 end end gg.setValues(results) --gg.addListItems(results) gg.clearResults() gg.toast("Done") --end
-
Please create a script for Mr. Autofire i would pay for it (#dtdqpexb)
-
yup..its really posibble and easy. HP and Defense. one is in Dword and the other is Float.. search either one of them... go up or down...you sure will find the other one. or just search both at the same time. which is which and which one come first that.. im sure you can figure it out.
-
only 1 value changed to max all of that..but it actually didnt work ..only visuals. its yours that really work. btw im guess you got HP hack too??
-
hmm.... im not the expert...maybe not? im sometime use it and sometime not too. btw check this out : DWZ_Weapon.mp4
-
local gg = gg gg.setRanges(32) gg.searchNumber("95;75;3;200;1;130;9;1,075,419,546;26;1,065,353,216;26;1,094,713,344;26::49", 4) gg.refineNumber("75;130;9;26") local results = gg.getResults(10) for i,v in pairs(results) do if v.value == 75 then v.value = 85 end if v.value == 130 then v.value = 1400 end if v.value == 9 then v.value = 400 end if v.value == 26 then v.value = 4000 end end gg.setValues(results) --gg.addListItems(results) gg.clearResults() gg.toast("Done") --end
-
local gg = gg gg.setRanges(32) gg.searchNumber("95;75;3;200;1;130;9;1,075,419,546;26;1,065,353,216;26;1,094,713,344;26::49", 4) gg.refineNumber("75;130;9;26") local results = gg.getResults(10) for i,v in pairs(results) do if v.value == 75 then v.value = 85 end if v.value == 130 then v.value = 1400 end if v.value == 9 then v.value = 400 end if v.value == 26 then v.value = 4000 end gg.setValues(results) --gg.addListItems(results) gg.clearResults() gg.toast("Done") end
-
https://streamable.com/cre4de
-
EDIT ANOTHER ADRESS WITH ONLY ONE VALUE? TEACH ME
MonkeySAN replied to DrBesar1234566's question in Help
correction = -3,219,128,320 Qword -
EDIT ANOTHER ADRESS WITH ONLY ONE VALUE? TEACH ME
MonkeySAN replied to DrBesar1234566's question in Help
also base on the video above..im was able to make up a group search like this gg.searchNumber("512;2.5F::50",4) --512 is your 2nd value in Dword --2.5F is your 1st value(Qword) in Float local p = gg.getResults(2) local t = {} t[1] = {} t[1].address = p[1].address --512 address t[1].flags = 16--edit the Float t[1].value = 14160822e-46 gg.setValues(t) t[1].address = p[2].address --2.5F address t[1].flags = 32--edit the Qword t[1].value = -3146121216 gg.setValues(t) gg.clearResults() gg.toast("Done") end but i not know for sure if all above will work because i cannot test it. i cant install the game on my device somehow. -
EDIT ANOTHER ADRESS WITH ONLY ONE VALUE? TEACH ME
MonkeySAN replied to DrBesar1234566's question in Help
same if you want to use this value = 3,219,128,320 Qword for edit and then using offset to edit the 2nd value. --search and refine gg.searchNumber("3,219,128,320", 32)--32 is gg.TYPE_QWORD --single value search gg.refineAddress("address here",-1) --if too many results and the address stay the same. --better the same last 4 digit of the address but last 2 still ok. local p = gg.getResults(1) -- edit the 1st value local t = {} t[1] = {} t[1].address = p[1].address t[1].flags = 32 t[1].value = -3,146,121,216 gg.setValues(t) --edit 2nd value(offset) t[1].address = p[1].address - 0x30 t[1].flags = 16 t[1].value = 1,4160822e-46 gg.setValues(t) gg.clearResults() gg.toast("Done") end -
EDIT ANOTHER ADRESS WITH ONLY ONE VALUE? TEACH ME
MonkeySAN replied to DrBesar1234566's question in Help
you can use this as group search. = 1.0F;512;4.0F::13,gg.TYPE_DWORD/gg.TYPE_QWORD only if the value above(1.0F) and below(4.0F) stay the same all the time. refine to 512 then edit the Float gg.searchNumber("1.0F;512;4.0F::13",4)--4 is gg.TYPE_DWORD gg.refineNumber("512") local t = gg.getResults(1) for i,v in pairs(t) do if v.value == 512 then v.flags = 16--Float v.value = 14160822e-46F end end gg.setValues(t) gg.clearResults() gg.toast("Done") end hope this will help. -
EDIT ANOTHER ADRESS WITH ONLY ONE VALUE? TEACH ME
MonkeySAN replied to DrBesar1234566's question in Help
- first do the search of your value normally. - if it give many results then you have to refine it. if it always in the same address then you may refine to address to get to the value. - if not...you may have to make a group search of it and then refine to your value. -
EDIT ANOTHER ADRESS WITH ONLY ONE VALUE? TEACH ME
MonkeySAN replied to DrBesar1234566's question in Help
i = gg.getResults(4) this take 4 results from the search. x[1].address = i[1].address + "yourOffsetCode" but call only the 1st out the 4 results for offset editing. -
local d = gg.prompt({"New Speed?[0;500]"},{250},{"number"})