Jump to content

Search the Community

Showing results for tags 'voicechat'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • RAGE Multiplayer
    • Announcements
    • Discussion
    • Suggestions
  • Scripting
    • Scripting
    • Resources
  • Community
    • Support
    • Servers
    • Media Gallery
  • Non-English
    • Русский - Russian
    • Français - French
    • Deutsch - German
    • Espanol - Spanish
    • Română - Romanian
    • Portuguesa - Portuguese
    • Polski - Polish

Categories

  • Scripts
  • Gamemodes
  • Libraries
  • Plugins
  • Maps
  • Tools

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Facebook


Youtube


Skype


Web


VK

Found 4 results

  1. I recently updated Windows 10 latest update that was here few days ago, after I installed it my microphone starting to not work on RageMP in GrandRP server. I tried closing the microphone setting on windows 10 settings but it didn't work. This is not the first time happening this happened twice where I somehow fixed it by closing and opening the microphone settings on windows on and off and it started to work. RageMP doesnt work but discord does. When I click on RageMP it says C Drive > RAGEMP > GTAV.exe which I opened as administrator and it still didnt work. I am really looking for a fix so I can enjoy my game again. https://prnt.sc/-grB1VtesQWe https://prnt.sc/D6katAvcKg_a
  2. Hello! I've got kind of a problem like the title says for me there is no "Voicechat" settings in the settings i've uninstalled RageMP and GTA V and even resetet my pc by i really wanna play but all of that didn't work pls help me
  3. Website: www.strawberry-rp.de Mit Freundlichen Grüßen TobseN
  4. Здравствуйте, пытаюсь сделать прототип системы voice чата, для этого использую методы enableVoiceTo disableVoiceTo внутри объекта игрока, а в клиенте просто сделал бинд клавиши который вызывает событие на сервер, но почему то такой способ не работает, может быть я что то упускаю, и надо внутри клиента что то дополнительно указывать? Клиентский код(использую rpc) => mp.keys.bind(88, true, () => { this.rpc.callServer('voice-enable'); }); mp.keys.bind(88, false, () => { this.rpc.callServer('voice-disable'); }); Серверная часть кода => global.rpc.register('voice-enable', (players, info) => { console.log(`Включил voice ${info.player.name} ${info.player.id}`); if(info.player.id == 0) { let player = mp.players.at(0); mp.players.forEach((_player) => { if(player == _player) return false; player.enableVoiceTo(_player); }); } else if(info.player.id == 1) { let player = mp.players.at(1); mp.players.forEach((_player) => { if(player == _player) return false; player.enableVoiceTo(_player); }); } }); global.rpc.register('voice-disable', (players, info) => { console.log(`Выключил voice ${info.player.name} ${info.player.id}`); if(info.player.id == 0) { let player = mp.players.at(0); mp.players.forEach((_player) => { if(player == _player) return false; player.disableVoiceTo(_player); }); } else if(info.player.id == 1) { let player = mp.players.at(1); mp.players.forEach((_player) => { if(player == _player) return false; player.disableVoiceTo(_player); }); } }); P.S пока делаю это только для 2 игроков на сервере, что бы убедиться что это вообще работает, как в качестве прототипа. P.S.S все условия отрабатывают, вроде все отрабатывает, но как будто вот именно методы rage не работают...
×
×
  • Create New...