Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/08/2023 in all areas

  1. Version 1.0.0

    1,525 downloads

    This script lets you unlock any Vehicle locked behind the curtains in the newest version of HCR2 I gotta admit I absolutely did not like that update Huge thanks to NoFear for telling me all the edits for the script, my brain was too slow lmao This script is made only for the arm64/v8a version of the game
    1 point
  2. Hi @lucky_you, here's my approach on how you can learn to create script, this not limited to lua only: - Always remember Language functions and syntax. On lua the syntax is: "do", "end", "if", "else", "elseif", "then". - Always learn from examples or open source project/script. - Familiar yourself with reading documentation. - Always do script testing. + Train yourself in debugging / reading others code. Disect them. Here's list of reference that you should read and experiment with: - Reference LUA 5.1: since GG is based on this version of LUA - Reference Game Guardian Above commenters has provide great reference, I only made detailed point.
    1 point
  3. [ @DimoNULL ] --- You need to specify what colors you're looking for, is it Shaders or Textures? Also, Shaders depends on Device Architecture (Mali or Snapdragon). Here's how you can find it: - Shaders are usually consist of RGB values (Red, Green, Blue). Each values is ranged from 1 to 255, example for color Blue : [0, 0, 255]. You can search this values as Float. - If you're looking for Body Color (changing Player color), you can search for "1" as float, and mess around with it. Usually it is for Unity based game. - You can change color by Hex value: Hex color. You need to change it before the game reach loading screen. - For textures, you can't change it's color. You need to edit the texture itself, which will involve editing the in-game files. - Assuming the game don't have tiled textures, you can change color for any object texture. You need to make the game unload the textures by deleting in-game files or unreferencing it on Memory (before loading screen). The object will turn to purple / pink: No Texture, which then you can find the pink color values and change to anything you want. - As for shaders, you can also debug your in-game renderer (OpenGL or Vulkan) using: Android GPU Inspector (never tried it) . Also, you can go with Android Emulator route and use: SpecialK or: Ninja Ripper to dump your in-game shaders to help you find color values. --- I have given you 6 answers for each scenario. If you have any questions, just ask me.
    1 point
  4. PC not need. https://cheatengine.org/download/CheatEngine.apk
    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.