10/07/2021 11:15
então eu tava vendo pesquisando sobre voip varias pessoas tava tendo problema para instalar e eu estou com esse mesmo problema eu instalei como eu vi em um topico aqui e nao pega nao aparece nenhum erro na gamemode liga normal quando eu aperto f11 aparece voip 3.0 para configurar. Mais quando vai fala no chat voice nao funciona nei aparece iconi encima da cabeça do player nei aparece me falaram que que laucher nao funciona nao sei se e vdd pq eu entro nos outros servidores funciona normal. entao pessoal se vcs saber qual e erro me ajuda ai que to precisando muito.
entao esse e scriptes que ta no meu gamemode nao sei se esta certo.
Código PHP:
#include <sampvoice>
Código PHP:
new SV_LSTREAM:lstream[MAX_PLAYERS] = { SV_NULL, ... };
new voIP[MAX_PLAYERS];
public SV_VOID:OnPlayerActivationKeyPress(SV_UINT:playerid, SV_UINT:keyid)
{
// Attach player to local stream as speaker if 'B' key is pressed
if (keyid == 0x42 && lstream[playerid]) SvAttachSpeakerToStream(lstream[playerid], playerid);
}
public SV_VOID:OnPlayerActivationKeyRelease(SV_UINT:playerid, SV_UINT:keyid)
{
// Detach the player from the local stream if the 'B' key is released
if (keyid == 0x42 && lstream[playerid]) SvDetachSpeakerFromStream(lstream[playerid], playerid);
}
Código PHP:
OnPlayerConnect(playerid)
if (SvGetVersion(playerid) == SV_NULL)
{
SendClientMessage(playerid, -1, "[ AVISO ] O servidor não encontrou os arquivos do Voip.");
voIP[playerid] = 0;
}
// Checking for a microphone
else if (SvHasMicro(playerid) == SV_FALSE)
{
SendClientMessage(playerid, -1, "[ AVISO ] Microfone não encontrado pelo servidor.");
voIP[playerid] = 1;
}
else if ((lstream [playerid ] = SvCreateDLStreamAtPlayer ( 40.0 , SV_INFINITY , playerid, 0xff0000ff , "Local" )))
{
SvAddKey(playerid, 0x42);
SvAddKey(playerid, 0x5A);
voIP[playerid] = 1;
}
Código PHP:
OnPlayerDisconnect(playerid, reason)
if (lstream[playerid])
{
SvDeleteStream(lstream[playerid]);
lstream[playerid] = SV_NULL;
}
Código PHP:
GameModeExitFunc()
if (lstream[i])
{
SvDeleteStream(lstream[i]);
lstream[i] = SV_NULL;
}
entao esse e scriptes que ta no meu gamemode nao sei se esta certo.