-
Posts
1,722 -
Joined
-
Last visited
-
Days Won
109
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by MonkeySAN
-
well..i dont know how to explain anymore because my english not that good too and i bad at explaining things. maybe others can give you some inputs for that. about that resource...you at least can take a screenshot of it and post it here.
-
obviously you did not watch the video very carefully as i didnt search that loot 342 coins at first. what i did was a fuzzy/unknown search first. then take the coins and refine to a new value that add up to that 342 coins. i had some coins in hand and plus that 342 coins so the new value must much higher/bigger than before. and everything else are pretty much the same way. why dont you watch it again.
-
READ THE PREVIOUS page and you may find it how.
-
same as the others...you do the search in Adventure mode. i dont know about Chips though..as i see its not very useful because you can hack character stats instead and make them powerful.
-
its still change when you getting in and out of a car or dying even when you freeze it. plus if you freeze it at 0..you can get fire rate but you can only slow walk.
-
i think this is how you had got your offset wrong. you think it was Dec then convert it to Hex.
-
to convert it to Dec...you can use calculator app that can do just that. example your offset 70 or you can use GG itself to convert it. must put h behind it...then tap the pointer down next to it to get to below screen. offset in Dec is 112..so you must write like this = shotgun ammo address + 112 you can use either both of them but always write it like this for : Hex = address + 0x70 Dec = address + 112
-
nope. the offset 68 is already in Hex. therefore you must write = 0x68
-
Did you get the right offset..?? this is my offset..different from yours but you always write it like that. where you had got that 46...??
-
... we not even on the modding part yet. Does modding an app or games give malware alert... or the link to a certain site that we clicked?? im confused now...i may need to grow up more. anyway im just a monkey doing monkey business.
-
im using 32bit phone so the offset is different from yours. but i already found that. not sure about the glide thing..its more like the character run so fast and so uncontrollable but it did gave one hell of firing rate. even the shotgun. it maybe worthy to put that on a script but only if it change only the fire rate..not that glide/run thingy.
-
someone in denial..
-
no one wrote the word FAKE or said its FAKE on comments above in here but... you.
-
i THINK and THINK.. THINK again maybe its for Chinese only. if i THINK...maybe i THINK..its know where you come from. if it THINK..you not from Chinese IP then i THINK its give you that malware alert..so i THINK. and im just THINKING only. PLEASE DONT BELIEVE ME.. BELIEVE THE INTERNET.
-
bro.. your question are too generic. different game work in different way when dealing with ban.
-
character stats can be find and change in here during battle but i think its only apply on the next battle. as shown in pictures below..im managed to change Damage and Mobility. the Damage is legit...it give you one hit kill to the enemy.
-
video of it : Kumu_Coins&Emerald.mp4
-
same game in different virtual space..
-
its done..Thank guys.
-
-
-
-
try read this https://gameguardian.net/forum/topic/20939-prefix-buttons-on-and-off/ or https://gameguardian.net/forum/topic/30752-ultimate-guide-for-a-good-menuinterface/
-
in other words...you can write a script in many ways. have fun.. local gg = gg --you can put <gg.setRanges> here if all the hacks are from the same region. function mainmenu() local menu = gg.multiChoice({ "Hack 1", "Hack 2", "Hack 3", "Hack 4", "Hack 5", "EXIT"}, nil,"Main Menu") --cancel if menu == nil then gg.setVisible(false) gg.toast("Minimize menu") else --hack 1 if menu[1] then --put your hack here gg.alert("Hack 1 Done") end --hack 2 if menu[2] then --put your hack here gg.alert("Hack 2 Done") end --hack 3 if menu[3] then --put your hack here gg.alert("Hack 3 Done") end --hack 4 if menu[4] then --put your hack here gg.alert("Hack 4 Done") end --hack 5 if menu[3] then --put your hack here gg.alert("Hack 5 Done") end --EXIT if menu[6] then gg.toast("Canceled") os.exit() end end end while true do if gg.isVisible() then gg.setVisible(false) mainmenu() end end