This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "1.0.1", | |
"commit": "9cb0dde" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$VerbosePreference = 'Continue' | |
if (-not $env:ChocolateyInstall) { | |
$message = @( | |
"The ChocolateyInstall environment variable was not found." | |
"Chocolatey is not detected as installed. Nothing to do." | |
) -join "`n" | |
Write-Warning $message | |
return | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @ts-nocheck | |
// Don't forget to give me a star to support! | |
// Don't forget to change the permissions for slash-commands through your server! | |
// Don't forget to give credit if you decide to make something from this! | |
// Don't forget to check about command to learn how to use it! | |
// Don't add more than 2 subreddits! | |
// Disclaimer: None of the devs take responsibility. | |
// Code By WiLuX-Source | |
// Embed Styling & Sub-Command System By PhantomNimbi | |
const reddit_instance = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @ts-nocheck | |
// Don't forget to give me a star to support! | |
// Don't forget to change the permissions for slash-commands through your server! | |
// Don't forget to give credit if you decide to make something from this! | |
// Don't forget to check about command to learn how to use it! | |
// /epic command only works for your started commands instance and can only be used once. | |
// Disclaimer: None of the devs take responsibility. | |
// Code By WiLuX-Source | |
// Embed Styling & Sub-Command System By PhantomNimbi | |
class epic_freebie_instance { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Open Console Via CTRL+SHIFT+I | |
// Then Paste The Code To The Console | |
var video = document.getElementById('com_sebit_plugins_SkipIntro_Video_Container_video1') | |
video.playbackRate = 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var timeend = prompt("Write Your Time Where You Want To End") | |
var timestart = prompt("Write Your Time Where You Want To Start") | |
var vid = $(".html5-main-video.video-stream"); | |
setInterval(() => { | |
if (vid.currentTime > timeend) | |
{ | |
vid.currentTime = timestart | |
}}, 100); |