- Aug 2, 2020
- 348
- 354
Go to here:What should I do if the value of the decrypted archive is still encrypted? View attachment 3184955
You must be registered to see the links
Paste this code:
Code:
using System;
public class Program
{
public static int Decrypt(int value, int key)
{
return value ^ key;
}
public static void Main()
{
// Decrypt
int currentCryptoKey = 1064485534; // Ur Crypto Key
int hiddenValue = 1064485865; // Ur hidden Value
Console.WriteLine(Decrypt(hiddenValue, currentCryptoKey));
// Encrypt
int moneyUWant = 99999999; // How much money u want
Console.WriteLine(Decrypt(moneyUWant, currentCryptoKey));
}
}
Run it and copy the number on the bottom into the "hiddenValue" field in ur Save file.