Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/12/2023 in all areas

  1. 859 downloads

    Must 64bit game and version game : 1.50.203922 • Unli Skill Gameplay:
    1 point
  2. Version 1.0.0

    1,780 downloads

    Function: Big Head, Giant, Speed Watch the video to learn how to use the script -> https://youtu.be/TK11YvWVQgo
    1 point
  3. I dunno, can't help with encryption related questions. Because the moment you enter or leave a match the game stores the current level at a new address. Sometimes it also happening mid game So even if you do refine it won't be the correct value because the real values changed already address as you can see in the video: mobizen_20230412_045809.mp4 You can either install old version of the game and edit the atck file because text is readable or you can do a group search from in the lobby. Group search exist out of current level -1 and the points you get when placing blocks. First go in a match, don't finish the level. Remember the state of the points you had for lay blocks. In my case i returned to home screen when state of points was on 5. And my current level is 10,007 - 1. So group search is: 10,006D;5D::17
    1 point
  4. It's not more complicated than to print table elements starting from key 1. Looks more like the question is about how to print table elements at all. In the most basic case to print elements with integer keys starting from 0 and without printing contents of any nested tables it's enough to have one loop: local t = {[0] = 0, 1, 2, 3} print("{") local index = 0 local element = nil while true do element = t[index] if element == nil then break end local representation = string.format(" [%d] = %s", index, element) -- implement custom type-dependent converion of value to string if needed, this one uses default conversion, i.e. string "1" and number 1 will result in the same output print(representation) index = index + 1 end print("}")
    1 point
  5. My comment was intended for @ByTwiiixy
    1 point
×
×
  • 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.