Skip to content

Commit

Permalink
Merge pull request #51 from skrill-on-discord/main
Browse files Browse the repository at this point in the history
  • Loading branch information
penguinify authored Jan 13, 2024
2 parents d548b52 + 8d1d65c commit d8787e6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
10 changes: 6 additions & 4 deletions dist/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -1373,7 +1373,7 @@
window.open(url, '_blank')
},
ondisable: function () {
alert('go to goguardian.com and clear all cookies+cache, disabling this does nothing')
alert('Go to goguardian.com and clear all cookies+cache, disabling this does nothing')
},
custom_render: !1,
}
Expand Down Expand Up @@ -1423,15 +1423,17 @@
'use strict'
Object.defineProperty(n, '__esModule', { value: !0 })
const t = {
display_name: 'Metal Pipe SFX',
description: '💀',
// updated this because metal pipe kinda died
display_name: '🎡',
description: '🎡',
id: 'metalpipe',
section: 'fun',
onactive: function () {
let e = document.getElementsByTagName('img')
if (e)
for (let n of e)
new Audio('https://www.myinstants.com/media/sounds/jixaw-metal-pipe-falling-sound.mp3').play(), (n.src = 'https://i.ytimg.com/vi/qDvMkxtLV74/maxresdefault.jpg')
// this mp3 link will hopefully not expire
new Audio('https://us-tuna-sounds-files.voicemod.net/2ff3560b-a76f-49dd-adbc-709b9f59c5c2-1704237226346.mp3').play(), (n.src = 'https://us-tuna-sounds-images.voicemod.net/2ff3560b-a76f-49dd-adbc-709b9f59c5c2-1704237226346.jpeg')
},
always: !0,
custom_render: !1,
Expand Down
10 changes: 5 additions & 5 deletions src/modules/modules/fun/metalpipe.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import { moduleDefinition } from '../../moduleapi'

// function is still metal pipe 'cause i dont got time to change allat (i have no clue what any of it means)
function metalpipe() {
let images = document.getElementsByTagName('img')
if (!images) return

for (let image of images) {
var audio = new Audio('https://www.myinstants.com/media/sounds/jixaw-metal-pipe-falling-sound.mp3')
var audio = new Audio('https://us-tuna-sounds-files.voicemod.net/2ff3560b-a76f-49dd-adbc-709b9f59c5c2-1704237226346.mp3')
audio.play()
image.src = 'https://i.ytimg.com/vi/qDvMkxtLV74/maxresdefault.jpg'
image.src = 'https://us-tuna-sounds-images.voicemod.net/2ff3560b-a76f-49dd-adbc-709b9f59c5c2-1704237226346.jpeg'
}
}

const plugin: moduleDefinition = {
display_name: 'METAL PIPE',
description: 'idk why i added this',
display_name: '🎡',
description: '🎡',
id: 'metalpipe',
section: 'fun',
onactive: metalpipe,
Expand Down

0 comments on commit d8787e6

Please sign in to comment.