How to set up multiple accounts with Mutt E-mail Client
Thanks to this article by Christoph Berg
Directories and files
~/
#lang racket | |
;; Code for the little schemer | |
(define (atom? x) | |
(and (not (pair? x)) | |
(not (null? x)))) | |
(define (lat? l) | |
(cond ((null? l) #t) |
{ | |
"aigoals": { | |
"versions": [ | |
{ | |
"description": "Enables | Disables Drawing AI Goals", | |
"permission": "any", | |
"overloads": { | |
"default": { | |
"input": { |
{ | |
"closewebsocket": { | |
"versions": [ | |
{ | |
"description": "commands.closewebsocket.description", | |
"permission": "any", | |
"is_hidden": true, | |
"overloads": { | |
"default": { |
For advanced users, a syntax highlighter for sublime text and | |
textmate which makes reading the list easier can be found here: | |
https://gist.github.com/jocopa3/e4a35921e4f978572e7f45360d231f37 | |
============ Blocks ============ | |
All blocks as found in the 1.1.0.0 Block::initBlocks function. | |
Block names are the same names used in the /give command. | |
Name Id Data |
{ | |
"body": { | |
"input": { | |
"message": "Hello World" | |
}, | |
"origin": { | |
"type": "player" | |
}, | |
"name": "say", | |
"version": 1, |
// To subscribe to an event, pass this JSON text to the client through the WebSocket: | |
{ | |
"body": { | |
"eventName": "NameOfEvent" // Replace with an event name listed below | |
}, | |
"header": { | |
"requestId": "xxxxxxxx-xxxx-xxxx-xxxxxxxxxxxxxxxxx", // UUID | |
"messagePurpose": "subscribe", | |
"version": 1, // Protocol version (currently 1 as-of 1.0.2) |
// For more information about available commands, look at the commands/standard.json file in the game's assets. | |
{ | |
"body": { | |
"input": {}, // Command inputs go here | |
"origin": { | |
"type": "player" // Where the command originates from | |
}, | |
"name": "name-of-command", // Command name goes here (i.e. for /say, enter "say") | |
"version": 1, |
Thanks to this article by Christoph Berg
Directories and files
~/
license: gpl-3.0 |