Skip to content

Instantly share code, notes, and snippets.

View WiLuX-Source's full-sized avatar

WiLuX WiLuX-Source

View GitHub Profile
@WiLuX-Source
WiLuX-Source / finallyniceopenings.js
Last active October 10, 2020 20:03
It allows you to listen your music without intro or outro
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);
@WiLuX-Source
WiLuX-Source / EBA-Accelerator.js
Created October 10, 2020 20:03
EBA Video Hızlandırıcı
// 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
@WiLuX-Source
WiLuX-Source / epic-freebie-feed.ts
Last active December 16, 2022 19:20
Pylon Epic Freebie Feed Script
// @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 {
@WiLuX-Source
WiLuX-Source / reddit-feed.ts
Created July 30, 2022 19:15
Pylon Reddit Feed Code
// @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 = {
$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
}