-
Posts
298 -
Joined
-
Last visited
-
Days Won
17
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by Collen
-
How to find wall hack in any type of dumped lib file?
Collen replied to DARK_DEMON_SCRIPTER's question in Help
I usually use -1F. -
How to find wall hack in any type of dumped lib file?
Collen replied to DARK_DEMON_SCRIPTER's question in Help
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: -
How to find wall hack in any type of dumped lib file?
Collen replied to DARK_DEMON_SCRIPTER's question in Help
You can check for colliders on dump, but I like to search the values on the game. -
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
-
1
-
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) -
KICK PLAYER VIDEO HACK Forward assault Antiban script
Collen commented on Yee77's file in LUA scripts
-
I can't, maybe because It's a external link.
-
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
-
1
-
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 -
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.
-
Almost there, chomebooks use the Chrome OS.
-
You put: your_values2[9].value1 = 5000 Correct: your_values2[9].value = 5000
-
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
-
It's not an emulator, chromebooks can also run android apps.
-
I got banned, is anyone else trying?
-
Sure. Really need. I recommend that you try to understand how it works, and maybe read some of the GG documentation.
-
No need to use editAll, the edited values are being passed on: your_values[9].value = 3 -- 3 It's the edited value.
-
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
-
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.
-
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
-
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
-