en faites ajoute cette fonction sur ton gm ( a la fin)
GoogleTranslate(text[], from[], to[], size = sizeof text)
{
new
tmp[384],
idx = -1,
pos
;
while (text[++idx])
{
switch (text[idx])
{
case ' ' : tmp[idx] = '+';
default : tmp[idx] = text[idx];
}
}
format(tmp, sizeof tmp, "http://ajax.googleapis.com/ajax/services/language/translate?v=1.0&q=%s&langpair=%s%%7C%s", tmp, from, to);
pwncurl_get(tmp, tmp, sizeof tmp);
pos = strfind(tmp,"ext":"");
if (pos != -1)
{
strdel(tmp, 0, pos + 6);
strdel(tmp, strfind(tmp, ""}, "res"), sizeof tmp);
else
{
format(tmp, size, text);
}
return tmp;
}
et puis dans une cmd tu integre ca avec tes parametre
GoogleTranslate(text[], from[], to[], size = sizeof text);