-
Posts
1,818 -
Joined
-
Last visited
-
Days Won
120
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by MonkeySAN
-
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
-
local gg = gg gg.alert("WELCOME TO SCRIPT HACKUDO") function START() menu = gg.multiChoice({ "", "", ""}, nil,"subscribe Hackudo") if menu == nil then gg.toast("minimize menu") else if menu[1] then DAK_AE1() end if menu[2] then DAK_AE2() end if menu[3] then exit() end end end function DAK_AE1() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("50", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0) revert = gg.getResults(100, nil, nil, nil, nil, nil, nil, nil, nil) gg.editAll("0", gg.TYPE_FLOAT) gg.clearResults() gg.sleep(500) gg.toast("Hack 1 Done") end function DAK_AE2() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("50", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0) revert = gg.getResults(100, nil, nil, nil, nil, nil, nil, nil, nil) gg.editAll("0", gg.TYPE_FLOAT) gg.clearResults() gg.sleep(500) gg.toast("Hack 2 Done") end function exit() gg.setVisible(true) os.exit(print("Thank You")) end while true do if gg.isVisible() then gg.setVisible(false) START() end end
-
Virtual Beggar Virtual Beggar Game VC hack
MonkeySAN commented on AKidWithMidgetFriend's file in LUA scripts
another script i made... which are more direct so to speak.. it use your current level as a base point to find the other things and then edit. in other word...it use offset to get to the target from the base point. btw about the color you see here...its nothing from what im wrote in the script. its something else and its absolute PROHIBITED for anyone to ever to talk about it in here. and please dont PM me about it either. -
Virtual Beggar Virtual Beggar Game VC hack
MonkeySAN commented on AKidWithMidgetFriend's file in LUA scripts