19.02.2019, 15:28
O site que estб nessa include й brunosilva.net16.net/tradutor.php e estб offline.
O site usa parametros GET na url.
Ou o cara que fez manda o arquivo php, ou й sу vc fazer o seu proprio php , traduzir o que for passado e mandar como resposta na pagina.
O site usa parametros GET na url.
pawn Code:
static buffer[255];
format(buffer, 255, traducao"?texto=%s&entrada=%s&saida=%s", urlencode(string), entrada, linguagem);
// texto = string contendo texto a ser traduzido
// entrada = string codigo da linguagem atual (deixar 'detectar' para auto-detectar a linguagem)
// saida = string codigo da linguagem nova
arraySet(tradutor, playerid, color);
return HTTP( playerid == -1 ? MAX_PLAYERS + 1 : playerid, HTTP_GET , buffer , "\0", "RespostaTraducao");
forward RespostaTraducao( playerid, resposta, data[]); public RespostaTraducao( playerid, resposta, data[]) {
if(resposta == 200) {
data[strfind(data, "<!-- Hosting24 Analytics Code -->")] = 0;
////////////
print(data);
if( MAX_PLAYERS + 1 == playerid )
SendClientMessageToAll( arrayGet(tradutor, MAX_PLAYERS + 1) , data ) ;
else
SendClientMessage( playerid, arrayGet(tradutor, playerid) , data );
/////////////
arraySet(tradutor, playerid, 0);
}
return true;
}