module/voice/main.php
<?php
global $Event, $Queue, $Text;
$lang = nextArg();
$hash = $Event['message_id'];
setCache($hash.'.txt', removeCQCode(removeEmoji($Text)));
exec("export LC_ALL=C.UTF-8 && export LANG=C.UTF-8 && cd ../storage/cache/ && gtts-cli -f {$hash}.txt -o {$hash}.mp3 --nocheck -l {$lang}"); //So fucking hardcore py3
$Queue[]= sendBack(sendRec(getCache($hash.'.mp3')));
?>