Skip to content

Instantly share code, notes, and snippets.

View Wist9063's full-sized avatar
:shipit:

josh Wist9063

:shipit:
View GitHub Profile
@stonar96
stonar96 / Anti-Xray.md
Last active March 4, 2024 15:16
Recommended Paper Anti-Xray settings by stonar96

❗ This has been moved to the official PaperMC docs ❗

Link: https://docs.papermc.io/paper/anti-xray

Help: https://discord.gg/papermc






Recommended Paper Anti-Xray settings by stonar96

General

Anti-Xray can be configured per world in the paper.yml configuration file. To understand how per world configuration works please read this first. Note that after changing any settings for Anti-Xray you have to restart your server. Executing the /reload command (you should never do this) won't apply the settings to worlds that are already loaded.

@makos
makos / index.js
Last active February 2, 2020 12:06
Discord.js audio timeout test bot
const Discord = require('discord.js');
const BotConfig = require('./config.json');
const ytdl = require('ytdl-core');
const client = new Discord.Client();
client.once('ready', () => {
console.log('Ready!');
});
client.login(BotConfig.token);