Criaz40k Posted December 13, 2020 Posted December 13, 2020 Samp Voice Plugin SVP Salutare, aceasta este noua versiune de samp voice, varianta cea veche postata de mine fiind inactiva, din nou, este doar un plugin imprumutat de la rusi, si netestat, succes la implementat :) TUTORIAL DE INSTALARE Pentru inceput deschideti server.cfg si adaugati pe linia plugins urmatorul lucru: Quote plugins sampvoice Mai apoi trebuie sa adaugati include-ul in gamemode: Quote #include <sampvoice> Apoi avem urmatoarele definitii Quote #if defined _sampvoice_included #define SV_KEY_B 0x42 #define SV_KEY_Z 0x5A Adaugam urmatoarele variabile Quote #if defined _sampvoice_included new SV_GSTREAM:gstream = SV_NULL, SV_LSTREAM:lstream[MAX_PLAYERS] = { SV_NULL, ... }; #endif Adaugam acest cod in OnGamemodeInit Quote #if defined _sampvoice_included gstream = SvCreateGStream(0xFF0000FF, "Global"); #endif Adaugam acest cod in OnGamemodeExit Quote #if defined _sampvoice_included if (gstream != SV_NULL) { SvDeleteStream(gstream); gstream = SV_NULL; } #endif Adaugam asta la OnPlayerConnect Quote #if defined _sampvoice_included if (SvGetVersion(playerid) == SV_NULL) { SendClientMessage(playerid, -1, "Не удалось обнаружить плагин sampvoice"); } else if (SvHasMicro(playerid) == SV_FALSE) { SendClientMessage(playerid, -1, "Не удалось обнаружить микрофон"); } else { if (gstream != SV_NULL) { SvAttachListenerToStream(gstream, playerid); SvAddKey(playerid, SV_KEY_B); } if ((lstream[playerid] = SvCreateDLStreamAtPlayer(40.0, SV_INFINITY, playerid, 0x00FFFFFF, "Local")) != SV_NULL) { SvAddKey(playerid, SV_KEY_Z); } } #endif Iar apoi acest cod la finalul gamemode ului LINK DOWNLOAD: https://github.com/CyberMor/sampvoice/releases/download/v3.1/sv_server_037.zip
emanueld Posted January 2, 2021 Posted January 2, 2021 dami si mie add pe discord te rog Johncsgo113#6332
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now