Jump to content

Collen

Moderators
  • Posts

    298
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by Collen

  1. No problem!
  2. I usually use -1F.
  3. There is two values that always works for some Unity games: 0.08F - CA 0.000001F - XA or CB But may this happen or crash:
  4. You can check for colliders on dump, but I like to search the values on the game.
  5. View File SNAKE LITE SCRIPT MENU SNAKE LITE IS AN AWESOME ARCADE WORM GAME. DIFFERENT FROM OTHER SLITHER&SNAKE GAMES, NOT ONLY CAN YOU COLLECT YUMMIES AND DIFFERENT POWERUPS IN THE ARENA, BUT YOU CAN ALSO COMPETE WITH OTHER PLAYERS TO SEE WHO IS THE LONGEST SNAKE! WORMS .IO IS A CLASSIC FUN AND DYNAMIC ACTION PVP HUNGRY SNAKE GAME - RELAX, THE RULES ARE SIMPLE. CONTROLLING YOUR WORMS TO EAT MORE DELICIOUS FOOD BECOMES LONGER, WIN THE WORM.IO BATTLE AND BECOME THE BIGGEST WORM&SNAKE OF THEM ALL! LIKE THE OLDEST CLASSIC SNAKE GAME, SNAKE ZONE.IO RETAINS THE CORE GAMEPLAY MECHANISM! UNIQUE GRAPHICS KEEP MINIMALISTIC AND SIMPLE. GAME LINK: APKCOMBO SCRIPT MENU: - ZOOM HACK - SCORE MULTIPLIER - LEVEL EDIT (PLAYER) - AGILITY - SPEED - COIN MULTIPLIER - DISABLE AI - INVENCIBLE (ENEMY TOO) Submitter Collen Submitted 10/28/2022 Category LUA scripts  
  6. Version v4.16.0

    815 downloads

    SNAKE LITE IS AN AWESOME ARCADE WORM GAME. DIFFERENT FROM OTHER SLITHER&SNAKE GAMES, NOT ONLY CAN YOU COLLECT YUMMIES AND DIFFERENT POWERUPS IN THE ARENA, BUT YOU CAN ALSO COMPETE WITH OTHER PLAYERS TO SEE WHO IS THE LONGEST SNAKE! WORMS .IO IS A CLASSIC FUN AND DYNAMIC ACTION PVP HUNGRY SNAKE GAME - RELAX, THE RULES ARE SIMPLE. CONTROLLING YOUR WORMS TO EAT MORE DELICIOUS FOOD BECOMES LONGER, WIN THE WORM.IO BATTLE AND BECOME THE BIGGEST WORM&SNAKE OF THEM ALL! LIKE THE OLDEST CLASSIC SNAKE GAME, SNAKE ZONE.IO RETAINS THE CORE GAMEPLAY MECHANISM! UNIQUE GRAPHICS KEEP MINIMALISTIC AND SIMPLE. GAME LINK: APKCOMBO SCRIPT MENU: - ZOOM HACK - SCORE MULTIPLIER - LEVEL EDIT (PLAYER) - AGILITY - SPEED - COIN MULTIPLIER - DISABLE AI - INVENCIBLE (ENEMY TOO)
  7. Fix the description, you must use English please.
  8. Collen

    Vphone gaga - Vmos

    I can't, maybe because It's a external link.
  9. View File BILHAR SCRIPT MENU WHETHER YOU’RE AN AMATEUR OR A PRO PLAYER, BILLIARDS. BILHAR IS THE PERFECT POOL GAME FOR YOU. SO WHAT ARE YOU WAITING FOR? GRAB YOUR CUE AND JOIN THE BALL GAME ACTION IN THE WORLD OF BILLIARDS WITH OUR EXCITING POOL GAMES TODAY! PLAY NOW IN 8 BALL POOL AND IMMERSE YOURSELF IN THE BEST SNOOKER GAME EXPERIENCE AVAILABLE! GAME LINK: APKPURE SCRIPT MENU: - LONG LINE Submitter Collen Submitted 10/16/2022 Category LUA scripts  
  10. Version v2.381

    309 downloads

    WHETHER YOU’RE AN AMATEUR OR A PRO PLAYER, BILLIARDS. BILHAR IS THE PERFECT POOL GAME FOR YOU. SO WHAT ARE YOU WAITING FOR? GRAB YOUR CUE AND JOIN THE BALL GAME ACTION IN THE WORLD OF BILLIARDS WITH OUR EXCITING POOL GAMES TODAY! PLAY NOW IN 8 BALL POOL AND IMMERSE YOURSELF IN THE BEST SNOOKER GAME EXPERIENCE AVAILABLE! GAME LINK: APKPURE SCRIPT MENU: - LONG LINE
  11. Collen

    offset from lib

    Change the function name.
  12. Collen

    Reset all changes

    You need clear before make another search, and also make sure that GG are finding that group search. You need use gg.clearResults() always at the function start, works for me.
  13. Almost there, chomebooks use the Chrome OS.
  14. Collen

    Reset all changes

    You put: your_values2[9].value1 = 5000 Correct: your_values2[9].value = 5000
  15. Collen

    Reset all changes

    if menu== 2 then gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber('184;10;2,9;0;0::100',gg.TYPE_DOUBLE) your_values2= gg.getResults(100) your_values2[1].value = 5000 your_values2[6].value = 5000 your_values2[9].value = 5000 gg.setValues(your_values2) gg.clearResults() gg.toast("done") end .value It's not correct. Try again
  16. Sure.
  17. It's not an emulator, chromebooks can also run android apps.
  18. I got banned, is anyone else trying?
  19. Collen

    Reset all changes

    Sure. Really need. I recommend that you try to understand how it works, and maybe read some of the GG documentation.
  20. Collen

    Reset all changes

    No need to use editAll, the edited values are being passed on: your_values[9].value = 3 -- 3 It's the edited value.
  21. Collen

    Reset all changes

    Yeah, and make sure that the index don't change when you restart the game, otherwise this form will not be useful. function your_function() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("10~999", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0) your_values = gg.getResults(1000, nil, nil, nil, nil, nil, nil, nil, nil) your_values[3].value = 323 -- [3] It's the index of your value. your_values[7].value = 9 your_values[9].value = 3 gg.setValues(your_values) gg.clearResults() end
  22. Collen

    Reset all changes

    I think you didn't understand very well. What you need to do now is repeat the process and change the index as you wish.
  23. Collen

    Reset all changes

    Maybe this works. function your_function() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("10~999", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0) your_values = gg.getResults(1000, nil, nil, nil, nil, nil, nil, nil, nil) your_values[2].value = 23 -- [2] It's the index of your value. gg.setValues(your_values) gg.clearResults() end
  24. Collen

    Reset all changes

    Try this way. -- This is a sample code. function your_function() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("15.3242816925", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0) original_values = gg.getResults(1000, nil, nil, nil, nil, nil, nil, nil, nil) -- Here will save the original values before the edit. gg.editAll("1", gg.TYPE_FLOAT) gg.clearResults() end -- function revert_to_original() gg.setValues(original_values) end
  25. Yeah, thank you for comment!
×
×
  • 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.