pma-voice

Here you can see modifications to improve the roleplay experience.

Can't talk on radio when is dead

  • Go to file pma-voice/client/module/radio.lua

  • Search function isDead()

You will see this
  • Replace that function with this one

function isDead()
	if LocalPlayer.state.isDead then
		return true
	elseif IsPlayerDead(PlayerId()) then
		return true
	elseif exports['stRadio']:isDead() then
		return true
	end
end
  • Save the file and done!

Change the default pma-voice sounds to those of stRadio

  1. Go to [stRadio].pack.zip

  2. Go to STEP-6 folder and drop the "ui" folder inside of pma-voice folder

EXAMPLE:

Last updated

Was this helpful?