Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/26/2024 in all areas

  1. @FTRMN You can get them from the Lucky Wheel. You just need to be lucky enough to hit them.
    1 point
  2. I just back to this game recently. Please show me how to add more Halloween event currency. I try modify the coffin price, it do change price, but I cannot buy with this edited price.
    1 point
  3. Hi! It depends on your Approach. Well you can do something like this: Client-Sided: You can define your Password inside your Script (Make sure to Encrypt & Obfuscate them). You can always add this on your Updated script. 1) Implement if the folder already exist. If not, it will ask user for the password. If exist, it will read the folder that contains the password. 2) If User Password is correct, it will create a hidden folder and file that contains password. If wrong, the script will stop with warnings. local password = 'cdaa' local file = '.pass/.pwd' --Folder: .pass & File: .pwd if not (io.open(gg.EXT_STORAGE .. '/' .. file, 'r')) then input = gg.prompt({'Enter a value :'},{[1] = nil},{[1] = 'string'}) if input[1] == password then gg.saveList(gg.EXT_STORAGE .. '/' .. file, gg.LOAD_APPEND) --Add new file io.open(gg.EXT_STORAGE .. '/' .. file, 'w'):write(password) --Save password to file print('Correct!') else print('Not Correct') end else content = io.open(gg.EXT_STORAGE .. '/' .. file,'r'):read('*a') --Read file if content == password then print('Correct!') else os.remove(gg.EXT_STORAGE .. '/' .. file) --Delete if file not match with password print('Not Correct!') end end Server-Sided: It would be more better if you also save the password separated on Pastebin. So create a 2 Pastebin: 1 for your script and 1 for your password. This gives you more control over password and make it easier to update your script. Read more here: - Password on Pastebin - Online Script on Pastebin
    1 point
  4. I'm trying to run this game on a tablet with Android 10, GG has never been installed on it.
    0 points
×
×
  • 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.