NodZen Posted June 9, 2012 Share Posted June 9, 2012 Hola amigos , encontre este script en la comunidad y quiero saber como reproducir un sinido (que yo tengo) cuando el player reciba el PM... Les dejo el codigo y miren function cmdPrivateMessage(source, cmd, targetname, ...) local message = table.concat({...}, " ") if (message == "") then outputChatBox("Usa /pm Nick Mensaje para enviar un Mensaje Privado a alguien", source, 0, 255, 0) return end local target = getPlayerFromNick(targetname) if (not target) then outputChatBox("Oops! El Player no esta por aqui!", source, 255, 107 , 107) return end outputChatBox("Has Enviado un PM a "..targetname..":#FFFFFF "..message, source, 255, 0, 0, true) outputChatBox("Has Recibido un PM de "..getPlayerNametagText(source)..":#FFFFFF "..message, target, 0, 0, 255, true end addCommandHandler("pm", cmdPrivateMessage, false, false) Intente con con playSound3D , pero no funciona... Link to comment
Castillo Posted June 9, 2012 Share Posted June 9, 2012 triggerClientEvent + playSound Link to comment
JuanM27 Posted June 9, 2012 Share Posted June 9, 2012 puedes usar el PlaySound es facil de usar. saludos Link to comment
Recommended Posts