Jump to content

MonkeySAN

Contributor
  • Posts

    1,862
  • Joined

  • Last visited

  • Days Won

    125

Everything posted by MonkeySAN

  1. yeah. its not permanent though. i think no problem in PvE. not sure in PvP.
  2. yup..yours are working. but i will do like this : local lang = {' English',' Español'} local selectHack = {"ONLY SELECT ONE HACK", "ELIGE SOLO UN TRUCO"} local hack = {{'Position', 'Teleport'}, {'Posición', 'Teletransportarse'}} local teleporthack = {{'Map 1', 'Map 2'}, {'Mapa 1', 'Mapa 2'}} 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 TeleportHack() end end function TeleportHack() local hackName = hack[langC][2] local menuTitle = hackName.." - "..selectHack[langC] local menu = gg.choice(teleporthack[langC], nil, menuTitle) if menu == nil then return end if menu == 1 then -- Map 1 elseif menu == 2 then -- Map 2 end end gg.setVisible(false) SelectLanguage() while true do if gg.isVisible() then gg.setVisible(false) Main() end gg.sleep(100) end
  3. above table represent Evolution stages and Levels in it. so how to search a dino at Level 40 with HP 274 we use group search = Evolution stage ; Level ; 274 :: 17 base on the table Level 40 is Evolution stage 3 so start with = 3 ; Level ; 274 but in the codes, Level are just store as value 1 to 10. you can see in the table each stage has 10 levels so Level 40 = 10 so the final group search = 3 ; 10 ; 274 :: 17
  4. didnt you asked for that here : Jurassic World: The Game how to get a locked dinosaur? (#aaiufk7w) that was it. and didnt you read comments that came after you said its the wrong codes?
  5. you can replace the string name with any dino but if it not Heroic or the data hasnt put into the game even it confirmed, it useless. even the trick with use no shards changed nothing.
  6. whats not working? a video would be so much help.
  7. what video and about what?
  8. this is Triceratops at Level 40. normally you wont able to make it Heroic because you already had one. but using the trick in the video you will able to. - see if you can figure out the answer to your question for other Heroic dino.
  9. what exactly is not working? i had my second Pteranodon up to 6 Stars without using shards.
  10. do as shown in the video. change the value at offset 48 to 0 that will turn the dino back to normal which you can sell.
  11. for Heroic dino. VID_20250628125123.mp4 you dont ever need shards to level up to 6 stars.
  12. One way is in Tides of Heroism showdown. search for Triceratops shards. = 15D;1,769,100,302D;1,634,887,011D;125D::29 - refine to 125 - use increment edit to find the correct one - edit the value ie: 9999 Now for Pteranodon shards : goto the address(125) and scroll up to find string name shown below replace both check value with Pteranodon string name = 1,702,121,486;1,869,504,882 then enter and complete the showdown.
  13. nice you gave me some ideas to make my own.
  14. update the game to latest version 1.83.4 if available.
  15. 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
  16. Fair enough, everyone can do it manually. But that's not really the point here. It’s also not about whether it’s ‘important’ or not (that's subjective). it’s about whether it’s useful to people who want a quicker, safer way, or who aren’t comfortable poking around manually everytime. And let's be honest,mistakes happen even for pros . I was just seeing if there’d be any interest, not trying to say it's a must-have for everyone.
  17. i made a script..Does anyone need it? VID_20250613014053.mp4 VID_20250613014714.mp4
  18. yeah. a bit complicated but simple enough for the experienced one only.
  19. for i = 1, #phaseValues do SET_POSITION(table.unpack(phaseValues[i])) displayPhase() end
  20. same as mine for Side Missions and Jurassic Heroes but with more details. Thank you for sharing.
  21. for i = 1, #phaseValues do SET_POSITION(phaseValues[i][1], phaseValues[i][2], phaseValues[i][3]) displayPhase() end
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.