Main/resources/[weapons]/[Scripts]/nordi_shootingrange/html/index.html

16 lines
330 B
HTML
Raw Normal View History

2025-07-26 08:55:30 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script>
window.addEventListener('message', function (event) {
if (event.data.action === 'play') {
let audio = new Audio(`./${event.data.sound}.ogg`);
audio.play();
}
});
</script>
</head>
<body></body>
</html>