21.03.2014, 22:18
Olб , eu adaptei o FS do Lucas_Alemao no meu GM , mas sу que a voz nгo sai :S , alguem pode me ajudar ? O Codigo logo abaixo :
FS : https://sampforum.blast.hk/showthread.php?tid=312138
No server log aparece isso quando digito o comando :
PHP Code:
CMD:falar(playerid, params[])
{
new Str2[30];
if(sscanf(params, "s", Fala)) return SendClientMessage(playerid, CINZA, "Use /falar [texto]");
for(new i = 0; i < MAX_PLAYERS; i++)
{
format(Str, sizeof(Str), "http://translate.******.com/translate_tts?tl=pt&q=%s", Fala);
PlayAudioStreamForPlayer(i, Str, 0, 0, 0, 0, 0);
}
format(Str2, sizeof(Str2), "~h~~g~%s ~y~Falando", Nome(playerid));
GameTextForAll(Str2, 1500, 1);
return 1;
}
No server log aparece isso quando digito o comando :
Code:
sscanf warning: Strings without a length are deprecated, please add a destination size.