Created
April 9, 2016 04:04
-
-
Save theVDude/b4f34600960c1479811e0f82b223fc57 to your computer and use it in GitHub Desktop.
use a different texture pack in tagpro
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 Texture Replacer | |
// @description Replace textures in tagpro | |
// @version 1 | |
// @grant none | |
// @include http://tagpro-*.koalabeast.com:* | |
// @include http://tangent.jukejuice.com:* | |
// @include http://*.newcompte.fr:* | |
// @license 2014 | |
// @author whatever | |
// ==/UserScript== | |
/* | |
Terminal PX PRO! | |
tagpro.loadAssets({ | |
"tiles": "http://i.imgur.com/EZZduzZ.png", | |
"speedpad": "http://i.imgur.com/2TcCAxP.png", | |
"speedpadRed": "http://i.imgur.com/n9XX8rB.png", | |
"speedpadBlue": "http://i.imgur.com/vt7YiCa.png", | |
"portal": "http://i.imgur.com/tWg1TmU.png", | |
"splats": "http://i.imgur.com/MsHtqOP.png" | |
}); | |
*/ | |
tagpro.loadAssets({ | |
"tiles": "http://i.imgur.com/N9uSHlZ.png", | |
"speedpad": "http://i.imgur.com/OPGcByx.png", | |
"speedpadRed": "http://i.imgur.com/Fgvtm25.png", | |
"speedpadBlue": "http://i.imgur.com/68p1J32.png", | |
"portal": "http://i.imgur.com/orbgyRS.png", | |
"splats": "http://i.imgur.com/qOZWtYP.png" | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment