Add dxREMsnd function

This commit is contained in:
D4rkl1ght3r
2025-08-23 14:21:36 +02:00
parent e4f7bbe23e
commit 5079fe0eb2

View File

@@ -72,6 +72,12 @@ dxsnd = function(snd_id)
setglobal(snd_id, sndvar) setglobal(snd_id, sndvar)
end end
-- Function to create global variables for dx REM Voice lines
dxREMsnd = function(snd_id)
local sndvar = "dx_REM_" .. tostring(snd_id) .. "_" .. tostring(dx_gen)
setglobal(snd_id, sndvar)
end
-- Function to create global variables for dx Voice lines -- Function to create global variables for dx Voice lines
vdxsnd = function(snd_id) vdxsnd = function(snd_id)
local sndvar = "dx_" .. tostring(snd_id) .. "_" .. tostring(voice_gen) local sndvar = "dx_" .. tostring(snd_id) .. "_" .. tostring(voice_gen)