Cyber ml
Showing all content.
- Today
-
Please tell me how to hack this game so that I can save progress and use clubs. After hacking the game does not see the Internet
-
For server detection just use host-ing like pubg hacking. It worth a try
-
Sims Freeplay Coins And Lifestyle Points Cheat
GuardianMilky replied to Sysadmin's topic in Archived topics
This still works even today. Thank you for this simple hack If you're wondering how to get LPs and SPs, the two other addresses with a value of zero below the value for Simoleons when you go to the address is what you want to edit like so: Then you can just hit buy and you'll have all the LPs and SPs you'll ever need. -
Jurassic World: The Game how to get a locked dinosaur?
hemen replied to greenhairbeard's topic in Requests
Oh he is also my freind too -
Hi Not sure why my original post was taken down. I'll try again with some things removed. Would be nice to have been told why though to save me guessing (or making the same mistake). I'm trying to modify nitro in Asphalt 9 China (also known as Wild Racing 9). It's running on an Android emulator (Bluestacks 5) on my PC. I've found various videos related to this, but the majority appear to be for older versions of the game. They have taught me the basics though. I can search for float values that increase and decrease while using the nitro and was able to find 3 that look like they're related to nitro. When I edit them, it does change the nitro bar. But it appears to be visual only. The actual nitro usage depletes as normal, even though the bar remains full (although the last portion flickers). I also tried freezing the values, but that didn't work either. So clearly I don't know what I'm doing and need some help. I don't really want the nitro bar frozen at max, because I believe it would be easy for the game anti cheat to find. Instead, I'd like to change the rate at which the nitro is used. So is anyone willing to help me find the right values? Presumably a script will be required, although I think there are templates which I could edit, which should also give me a simple menu where I can activate and deactivate it. Thanks.
-
Jurassic World: The Game how to get a locked dinosaur?
THEGOAT313 replied to greenhairbeard's topic in Requests
nah man but the guy is my friend -
Jurassic World: The Game how to get a locked dinosaur?
hemen replied to greenhairbeard's topic in Requests
Thanks -
Jurassic World: The Game how to get a locked dinosaur?
MonkeySAN replied to greenhairbeard's topic in Requests
nice you gave me some ideas to make my own. -
I thought it was impossible since it was online but, you can hack this game? How?
-
Jurassic World: The Game how to get a locked dinosaur?
hemen replied to greenhairbeard's topic in Requests
Finally my new Script for finding only new dinosau's ids works correctly New Script-2.mp4 -
Jurassic World: The Game how to get a locked dinosaur?
benhandsome123 replied to greenhairbeard's topic in Requests
Scorpios rex gen 2 I'd please ... everyone help meee -
Jurassic World: The Game how to get a locked dinosaur?
hemen replied to greenhairbeard's topic in Requests
No -
Has anyone figured out the Field and Offset for halloween/xmas avatars and holiday event statues? Have Field and Offset for unlocking all other items in game on latest 1.11.6 version 64 bit
-
Jurassic World: The Game how to get a locked dinosaur?
holame replied to greenhairbeard's topic in Requests
thank you it work does the new hybrid have new animations -
-
Hello I come to seek your help to find the Gold hack, They could explain to me how I managed to find the object value to be able to put it at -99999.
- 59 replies
-
- Life in Adventure
- Offline
- (and 6 more)
- Yesterday
-
Jurassic World: The Game how to get a locked dinosaur?
MonkeySAN replied to greenhairbeard's topic in Requests
update the game to latest version 1.83.4 if available. -
Jurassic World: The Game how to get a locked dinosaur?
holame replied to greenhairbeard's topic in Requests
hey i tried the Fukuimimus id and my game crashed -
Jurassic World: The Game how to get a locked dinosaur?
tobiashkansson replied to greenhairbeard's topic in Requests
T-Rex Bull = 1,259,125,636 Fukuimimus = 999,978,268 -
Jurassic World: The Game how to get a locked dinosaur?
amgrad replied to greenhairbeard's topic in Requests
Does anybody know how to get rid of heroic creatures. Is there a way to sell them or get rid of them? Is there a way to get more of them aswell instead of only being limited to one? Just like you can get multiple of the same boss, shouldn't there be a way to get multiple of the same heroic creature? -
local lang = {' English',' Español'} local selectHack = {"ONLY SELECT ONE HACK", "ELIGE SOLO UN TRUCO"} local hack = {{'Position', 'Teleport'}, {'Posición', 'Teletransportarse'}} local toast = {{'Position Hack chosen!', 'Teleport Hack chosen!'},{'¡Posición elegida!', '¡Teletransportado!'}} function SelectLanguage() local menu = gg.choice(lang, nil,'CHOOSE LANGUAGE / ELIGE EL IDIOMA') if menu == nil then os.exit() else langC = menu Main() end end function Main() local menu = gg.choice(hack[langC], nil, selectHack[langC]) if menu == nil then return end gg.toast(toast[langC][menu]) if menu == 1 then -- Position Hack elseif menu == 2 then -- Teleport Hack end end while true do if gg.isVisible() then gg.setVisible(false) SelectLanguage() end gg.sleep(100) end
-
Jurassic World: The Game how to get a locked dinosaur?
hemen replied to greenhairbeard's topic in Requests
Bro are you Ostaposaurus -
Jurassic World: The Game how to get a locked dinosaur?
THEGOAT313 replied to greenhairbeard's topic in Requests
yes bro that exactly what l mean the unrealeased dinos these two different ways to do l hope every one get benfit of this -
hello again, here iam with my curiosity and experiment on lua scripting today i will make menu and the goal is to switch between language using menu text before making this, i ve read some past topic posted by RCPOLSKI heres his topic link RCPOLSI's Topic Link but i will try to make my version with the goal that i want. local lang = {' English'. ' Español'} local langC = 0 local hackEN = {'Position'. 'Teleport'} local hackSP = {'Posición'. 'Teletransportarse'} function SelectLanguage() local menu = gg.choice({lang[1], lang[2]}, nil,'ONLY SELECT ONE LANGUAGE') if menu == nil then os.exit end if menu == 1 then langC = 1 Main() end end if menu == 2 then langC = 2 Main() end end end function Main() if langC == 1 then local menu = gg.choice({hackEN[1], hackEN[2]}, nil,'ONLY SELECT ONE HACK') if menu == nil then os.exit end if menu == 1 then --Position Hack end if menu == 2 then --Teleport Hack end end if langC == 2 then local menu = gg.choice({hackSP[1], hackSP[2]}, nil,'ONLY SELECT ONE HACK') if menu == nil then os.exit end if menu == 1 then --Position Hack end if menu == 2 then --Teleport Hack end end end while true do if gg.isVisible() then gg.setVisible(false) SelectLanguage() end gg.sleep(100) end i wonder what i write above is correct or not, i havent try it yet. maybe perhaps, you can shorten the script text length?