This file contains hidden or 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 Japanese Bubble Gum Pop Explosion | |
// @description Implements /u/kunmeh13's Texture Pack for Tagpro. Changes color of elements to fit texture pack. | |
// @version 1 | |
// @include http://tagpro-*.koalabeast.com:* | |
// @include http://tangent.jukejuice.com:* | |
// @include http://*.newcompte.fr:* | |
// @author NewCompte, CFlakes, SB-1, and Browncoat. Compiled by /u/kunmeh13. Walls by Bowtie | |
// @namespace http://www.reddit.com/user/kunmeh13 | |
// ==/UserScript== |
This file contains hidden or 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 Morning and Afternoon Textures | |
// @namespace http://your.homepage/ | |
// @version 0.1 | |
// @description Uses different texture packs based on the time of day | |
// @author Acid Rap(/u/kunmeh13) | |
// ==/UserScript== | |
//OPTIONS |
This file contains hidden or 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 Morning and Afternoon Textures with Japanese Bubble Gum Pop Explosion and Pastel Pro by BMO | |
// @namespace http://your.homepage/ | |
// @version 0.1 | |
// @description Uses different texture packs based on the time of day. THIS SPINS BALLS ALREADY! | |
// @author Acid Rap(/u/kunmeh13) | |
// ==/UserScript== | |
//OPTIONS |
This file contains hidden or 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 Different Textures for Different Maps | |
// @namespace github.com/kunmeh13 | |
// @description Use different texture packs for different maps | |
// @include http://*.koalabeast.com:* | |
// @include http://tangent.jukejuice.com:* | |
// @include http://*.newcompte.fr:* | |
// @author /u/kunmeh13 | |
// @version 1 | |
// ==/UserScript== |
This file contains hidden or 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 Different Textures for Different Maps | |
// @namespace github.com/kunmeh13 | |
// @description Use different texture packs for different maps | |
// @include http://*.koalabeast.com:* | |
// @include http://tangent.jukejuice.com:* | |
// @include http://*.newcompte.fr:* | |
// @author /u/kunmeh13 | |
// @version 1 | |
// ==/UserScript== |
This file contains hidden or 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 Seconds Off The Clock | |
// @namespace reddit.com/u/kunmeh13 | |
// @version 0.1 | |
// @include http://tagpro-*.koalabeast.com:* | |
// @include http://tangent.jukejuice.com:* | |
// @include http://*.newcompte.fr:* | |
// @description Says the seconds out loud | |
// @author Acid Rap(/u/kunmeh13) | |
// ==/UserScript== |
This file contains hidden or 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 scoreboard color changer | |
// @version 0.1 | |
// @description Changes the color and opacity of score at bottom | |
// @author Browncoat or someone | |
// @include http://tagpro-*.koalabeast.com:* | |
// @include http://tangent.jukejuice.com:* | |
// @include http://*.newcompte.fr:* | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or 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 Cam's Sounds | |
// @namespace http://tagpro.gg/ | |
// @version 1.0 | |
// @include http://tagpro-*.koalabeast.com:* | |
// @include http://tangent.jukejuice.com:* | |
// @include http://*.newcompte.fr:* | |
// @description Change the sounds of tagpro to Cam's sound pack. | |
// @author RonSpawnson, Cyanide, Seconskin, Cam, Acid Rap | |
// @reference https://www.reddit.com/r/TagPro/wiki/api |
This file contains hidden or 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
import java.awt.AWTException; | |
import java.awt.Robot; | |
import java.awt.event.KeyEvent; | |
import java.io.BufferedReader; | |
import java.io.FileReader; | |
public class FastTyping | |
{ | |
public static void main(String[] args) throws Exception | |
{ |
This file contains hidden or 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 Data Collection from PandaBomber | |
// @namespace https://pandabomber.gg/ | |
// @version 0.1 | |
// @description Demo on how to collect data from a PandaBomber game for AI research purposes. | |
// @author Kunal Mehta | |
// @match https://pandabomber.gg/ | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=pandabomber.gg | |
// @grant none | |
// ==/UserScript== |