Skip to content

Instantly share code, notes, and snippets.

View Chew's full-sized avatar
😻
rory fan

Olivia Chew

😻
rory fan
View GitHub Profile
@Chew
Chew / gist:fee908b09826cad189721eab1af92962
Last active September 5, 2016 21:39
Chewbotcca GotPvP Changelog
[v 1.1] - September 5th, 2016:
- Added a `#$help [command]` for pretty much every command.
- Removed an old testing command.
- Removed `#$code` as it didn't even show this Chewbotcca's code anyway.
[v 1.0.0] - September 4th, 2016:
- Created Changelog
- Various improvements
- Updated Staff List (won't happen every time just a part of the log)
@Chew
Chew / gist:3ae533c5f28d1b52073b755dcdc0d941
Created October 8, 2016 03:32
Chewbotcca - GotPvP - CHANGELOG
This one's a big one. I don't even know what was changed so I'll do what I can remember.
- Help Command Updated
- #$help [command] renamed to #$info [command]
- #$ping improved (shows how long it took to ping
- #$GotPvP Staff renamed to #$staff
- #$staff [server] to see staff on one specific server/gamemode
- #$help, #$staff, #$listrolecolours, and various other commands are now pm'd to you!
- /emotes added to see all /[emotes]
- Added some missing #$infos

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@Chew
Chew / yay.md
Last active April 4, 2020 04:50
Converting EssentialsX Perms to Luckperms

Convert EssentialsX default perms to LuckPerms

The hardest part of moving on from essentials handling permissions to being a big boi server owner is getting past the wow thats a lot of perms EssX gives to default players. This guide helps you give your players the perms they deserve(TM).

  1. Copy all the nodes under player-commands into a text file example

Remove commented outs one as needed

  1. Find and replace - <-- with space with essentials. <-- with dot
@Chew
Chew / deployboy.rb
Last active July 3, 2022 16:42
[WIP] DeployBoy - A simple way to automate Rails deployment, efficiently
# Pull from GitHub
puts "Pulling..."
pull = `git pull`
if pull.include? "Already up to date."
puts "Already up to date, nothing to deploy."
exit
end
# Gem changes occur, we must bundle install