Cyber ml
Showing all content.
- Past hour
-
Jurassic World: The Game how to get a locked dinosaur?
kakapookapoo replied to greenhairbeard's topic in Requests
Does anyone have an id for The cerato, if it even exists? - Today
-
The script is available on the first page
-
Could you unlock the script again so I can use it?
-
Hey, I need to log in now. I'm using Maddie's code, and I'm not getting any error messages. I'm just reaching my limits. The opponent is a million times stronger, and now I can't do it anymore. I've tried it with several values, like 0 and 99 first, then -1 and 99, and sometimes -10 and 100, or 500, or even 1200. Sometimes I manage, but I've never gotten this error message.
-
Jurassic World: The Game how to get a locked dinosaur?
hemen replied to greenhairbeard's topic in Requests
REGULAR BOSS STATUES -1479839203 (Omega 09) 169078216 (Juggernaut 32) 1213838668 (Kraken 18) 1511097404 (Colossus 04) 253703920 (Valkyrie 77) -1809034836 (Phoenix 44) -660039944 (Salamander 16) -1402139955 (Maelstrom 08) 57795765 (Ouroboros 66) 686633828 (Death dodo) -153991617 (Alpha 06) -331935970 (Akupara 81) 379729028 (Vulcan 19) -397666220 (Behemoth 93) -2128948937 (Imperatosuchus 53) GOLD BOSS STATUES -1238538682 (Gold Kraken 18) 1700107005 (Gold Omega 09) -480609928 (Gold Ouroboros 66) -281760963 (Gold Valkyrie 77) -365400059 (Gold Juggernaut 32) -2010820612 (Gold Death Dodo) 1230544733 (Gold Maelstrom 08) -1536862410 (Gold Colossus 04) 1444559527 (Gold Alpha 06) 1897514044 (Gold Phoenix 44) 948112181 (Gold Salamander 16) -158750391 (Gold Vulcan 19) 203199187 (Gold Akupara 81) -1135756980 (Gold Behemoth 93) 1630620922 (Gold Imperatosuchus 53) - Yesterday
-
Can you share the source code of this game?
-
i using don't have any problem me
-
View File BRAVELAND HEROES SCRIPT MENU THE KING'S SCEPTER OF THE SEVEN KINGDOMS WAS PERFIDIOUSLY STOLEN FROM THE THRONE ROOM. THE KINGS HAVE SUMMONED THE MIGHTIEST HEROES OF MAGIC AND OFFERED A GENEROUS BOUNTY TO THE PERSON, WHO RETURNS IT. DM ME TO GET OPEN SOURCE VERSION. GAME LINK: APKCOMBO SCRIPT MENU: - FREE SHOPING - FREE RESOURCE - UNLOCK SKIN - SPELL LEVEL - HITKILL + GODMODE Submitter Collen Submitted 08/27/2025 Category LUA scripts
-
Version v1.77.27
19 downloads
THE KING'S SCEPTER OF THE SEVEN KINGDOMS WAS PERFIDIOUSLY STOLEN FROM THE THRONE ROOM. THE KINGS HAVE SUMMONED THE MIGHTIEST HEROES OF MAGIC AND OFFERED A GENEROUS BOUNTY TO THE PERSON, WHO RETURNS IT. DM ME TO GET OPEN SOURCE VERSION. GAME LINK: APKCOMBO SCRIPT MENU: - FREE SHOPING - FREE RESOURCE - UNLOCK SKIN - SPELL LEVEL - HITKILL + GODMODE -
There is a bit more efficient approach for this case: since all needed information to check target values is present in results of the initial search, just adapt the check to work based on them. It can be implemented in various ways, below is one for example: gg.clearResults() gg.searchNumber("119;1;16777216::50", gg.TYPE_DWORD) local results = gg.getResults(gg.getResultsCount()) local expectedValueAddresses = {} for i, v in ipairs(results) do if v.value == 16777216 then expectedValueAddresses[v.address] = true end end gg.refineNumber("119", gg.TYPE_DWORD) local targetValues = {} for i, v in ipairs(results) do if expectedValueAddresses[v.address + 0xC] then targetValues[#targetValues + 1] = { address = v.address, flags = v.flags, value = 25, freeze = true, name = "SKILL" } end end gg.addListItems(targetValues)
-
-
Jurassic World: The Game how to get a locked dinosaur?
tobiashkansson replied to greenhairbeard's topic in Requests
Which of em? -
I can use this hacking method in a story company But it doesn't work in the arena and in the challenge mode. Maybe it's related to the latest update of the game My game version is 2.3.500.969 I'll create a new account and try again, maybe it will make a difference
-
I sometimes get this error but no such message appeared. It suddenly kicked me out of the game but it doesn't happen all the time.
-
Don't you have this error?
-
Oh i think bug fixed
-
@FTRMN Tiles_Survive_Error.mp4
-
For new season UTF-8: :SSPDecor28skatePoints.amount
-
-
Jurassic World: The Game how to get a locked dinosaur?
dthai1111 replied to greenhairbeard's topic in Requests
Does anyone have the boss statue id? -
Jurassic World: The Game how to get a locked dinosaur?
tobiashkansson replied to greenhairbeard's topic in Requests
I dont think there is one yet? -
Jurassic World: The Game how to get a locked dinosaur?
MURACH replied to greenhairbeard's topic in Requests
And the ID OF GOLD D-Rex Statue? Does anyone have it? -
Jurassic World: The Game how to get a locked dinosaur?
hemen replied to greenhairbeard's topic in Requests
@MonkeySAN @tobiashkansson @THEGOAT313 I need help from you guys on creatures changing during battle i tried many ways and i figured ou that we can only do that during battle because before batlle there is no strings for that during battle i searched for dino;level and got result but changing it didn't work so search for it's health and after finding the correct one I goto address in this image the value 87,676,104 remains same for evey dino in the battle and 102 are the actuall health value and 87 is current health value here i see all the dinos health value like this and there are also for damge values too here 88,013,820 is same for all the dinosaurs and 32 is the damage value of the dino I didn't find any dinosaur id here so I need your help -
Hello, what im trying is to get all results and put them in table array, lets say all result are 100, then i need to check 1 by 1 with offset, if the value after calculate offset is the same as i want, then only add that into saved list, i also see some previous example in this link Read value in offset (#an95zfus) and here what my code looks like : gg.searchNumber('119;1;16777216::50', 4) gg.refineNumber('119', 4) local searchResults = gg.getResults(100) local q = {} local checkValue = '16777216' if #searchResults == 0 then os.exit end for i, v in ipairs(searchResults) do q[i] = {address = v.address + 0xC, flags = 4} end q = gg.getValues(q) for i, v in ipairs(q) do if v.value == checkValue then gg.addListItems({{address = q[1].address - 0xC, flags = 4, value = 25, freeze = true, name = 'SKILL'}}) end end