Skip to main content
Version: 5.9.6

Anti-Cheat Toolkit

Resolve conflict with functions provided by Anti-Cheat Toolkit

When you attempt to create or modify data using the Param value after adding the obscured variable to Param provided by the Anti-Cheat Toolkit, {} value can be saved.

When adding an obscured variable to Param, the decoded value must be added to Param to store the proper value in the server.

Return decoded value

GetDecryped()

Example

ObscuredInt level = 5;
Param param = new Param();

// If you use it this way, the {} value is stored.(Do not use it this way.)
param.Add("level", level);

// You must use it this way to store a proper value.
param.Add("level", level.GetDecrypted());