- Katılım
- 3 yıl 7 ay 27 gün
- Mesajlar
- 49
Linkleri,görmek için
Giriş yap veya üye ol.
Linkleri,görmek için
Giriş yap veya üye ol.
Mikrafon'u hud'a entegre etmek için:
TokoVoip c_main üzerindeki setPlayerTalking'i şununla değiştirin:
RegisterNUICallback("setPlayerTalking", function(data)
voip.talking = tonumber(data.state);
if (voip.talking == 1) then
if voip.plugin_data.radioTalking then
TriggerEvent("ron-hud:client:talkingOnRadio",true)
else
TriggerEvent("ron-hud:client:talkingOnVoice",true)
end
setPlayerData(voip.serverId, "voip:talking", 1, true);
talkanim[voip.serverId] = PlayerId()
PlayFacialAnim(PlayerPedId(), "mic_chatter", "mp_facial");
else
TriggerEvent("ron-hud:client:talkingOnVoice",false)
talkanim[voip.serverId] = nil
setPlayerData(voip.serverId, "voip:talking", 0, true);
PlayFacialAnim(PlayerPedId(), "mood_normal_1", "facials@gen_male@base");
end
end)
---------------------------------------------------------------------------------------------
Ayrıca Tokovoip Komut Dosyanızı c_TokoVoip.lua'da bununla değiştirin:
function TokoVoip.updateTokoVoipInfo(self, forceUpdate) -- Update the top-left info
local info = "";
if (self.mode == 1) then
info = "Whisper";
elseif (self.mode == 2) then
info = "Normal";
elseif (self.mode == 3) then
info = "Shout";
end
if (info == self.screenInfo and not forceUpdate) then return end
self.screenInfo = info;
self:updatePlugin("updateTokovoipInfo", "" .. info);
TriggerEvent("ron-hud:client:GetVoiceLevel", info)
end