Skip to content

Instantly share code, notes, and snippets.

View Lycol50's full-sized avatar

Frizth Lyco Tatierra Lycol50

View GitHub Profile

Keybase proof

I hereby claim:

  • I am lycol50 on github.
  • I am princepines (https://keybase.io/princepines) on keybase.
  • I have a public key ASDF2dETUaFM08A-lgt6bSLaaxkyRwDpc932HjmkbD-ZFgo

To claim this, I am signing this object:

@Lycol50
Lycol50 / egg-liteloader-b-d-s.json
Last active December 5, 2022 14:41
LiteloaderBDS Egg for Pterodactyl
{
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO",
"meta": {
"version": "PTDL_v2",
"update_url": null
},
"exported_at": "2022-12-05T22:41:01+08:00",
"name": "Liteloader BDS - v2",
"author": "webmaster@pines-ph.cf",
"description": "Liteloader BDS egg",
@Lycol50
Lycol50 / mc-server-presence.js
Created January 25, 2021 18:27
Simple Minecraft server status bot with presence in Discord.js -- add me on Discord! vegeta897#7777
const Discord = require('discord.js');
const client = new Discord.Client();
client.login('your token');
var request = require('request');
var mcCommand = '/minecraft'; // Command for triggering
var mcIP = '123.123.123.123'; // Your MC server IP or hostname address
var mcPort = 25565; // Your MC server port (25565 is the default)
var url = 'http://mcapi.us/server/status?ip=' + mcIP + '&port=' + mcPort;