This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name TagPro Example Offense Bot | |
// @description Limited example offense bot for TagPro. | |
// @version 0.1 | |
// @grant none | |
// @include http://tagpro-maptest.koalabeast.com:* | |
// @include http://tangent.jukejuice.com:* | |
// @include http://*.newcompte.fr:* | |
// @author snaps_ | |
// @namespace http://www.reddit.com/user/snaps_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name TagPro Lap Time Tracker | |
// @namespace http://www.reddit.com/user/NewCompte | |
// @description Track lap times | |
// @include http://maptest.newcompte.fr:* | |
// @include http://maptest2.newcompte.fr:* | |
// @license WTFPL | |
// @author NewCompte, snaps | |
// @version 0.9.1 | |
// ==/UserScript== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python2 | |
# From http://stackoverflow.com/a/21957017/1698058 | |
from http.server import SimpleHTTPRequestHandler, HTTPServer | |
import http.server | |
class CORSRequestHandler (SimpleHTTPRequestHandler): | |
def end_headers (self): | |
self.send_header('Access-Control-Allow-Origin', '*') | |
SimpleHTTPRequestHandler.end_headers(self) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name TagPro Flag Carrier Name | |
// @namespace http://www.reddit.com/user/snaps_/ | |
// @description Adds the name of the flag carrier next to the flags on the TagPro game UI. | |
// @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html | |
// @version 0.1.3 | |
// @author snaps | |
// @downloadURL https://gist.github.com/chrahunt/03a399925e42f7c4f1e6/raw/tagpro-fc-status.user.js | |
// @include http://tagpro-*.koalabeast.com:* | |
// @include http://tangent.jukejuice.com:* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name TagPro Example Bot | |
// @description Limited example bot for TagPro. | |
// @version 0.1 | |
// @grant none | |
// @include http://tagpro-maptest.koalabeast.com:* | |
// @include http://tangent.jukejuice.com:* | |
// @include http://*.newcompte.fr:* | |
// @author Cflakes, snaps_ | |
// @namespace http://www.reddit.com/user/snaps_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Socket.io Loopback Interface | |
// @namespace http://www.reddit.com/user/snaps_/ | |
// @description Adds a loopback capability to socketio sockets. Emitting a message with the event name prepended with "local:" will emit the message to the client-side socket listeners. | |
// @include http://tagpro-*.koalabeast.com:* | |
// @include http://tagpro-*.koalabeast.com/groups/* | |
// @include http://tangent.jukejuice.com:* | |
// @include http://tangent.jukejuice.com/groups/* | |
// @include http://maptest*.newcompte.fr:* | |
// @include http://maptest*.newcompte.fr/groups/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @module mover/browser | |
*/ | |
define(function() { | |
/** | |
* The Mover is responsible for executing actions within the | |
* browser environment and managing keypresses. | |
* Agents should utilize a personal `move` function that should | |
* be set as the move function of the object created from this | |
* class. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Velocity Arrows | |
// @version 0.1.0 | |
// @description Shows an arrow indicating the player's current velocity. Example of a graphics object drawn static relative to the player. | |
// @include http://tagpro-*.koalabeast.com:* | |
// @include http://tangent.jukejuice.com:* | |
// @include http://*.newcompte.fr:* | |
// @author snaps | |
// ==/UserScript== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name TagPro Tile Pattern | |
// @namespace http://www.reddit.com/u/snaps_/ | |
// @description Tints every other floor tile a slightly different shade. | |
// @include http://tagpro-*.koalabeast.com:* | |
// @include http://tangent.jukejuice.com:* | |
// @include http://*.newcompte.fr:* | |
// @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html | |
// @author snaps | |
// @version 0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name TagPro Chat Enhancer | |
// @namespace http://www.reddit.com/user/-omicron-/ | |
// @description Disables ingame chat messages while logging messages outside the game environment with the same styling/formating but allowing for all kinds of extra functionality in doing so. | |
// @include http://tagpro-*.koalabeast.com:* | |
// @include http://tagpro-*.koalabeast.com/groups/* | |
// @include http://tangent.jukejuice.com:* | |
// @include http://tangent.jukejuice.com/groups/* | |
// @include http://maptest.newcompte.fr:* | |
// @include http://maptest.newcompte.fr/groups/* |