Skip to content

Instantly share code, notes, and snippets.

@theVDude
Created April 9, 2016 04:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theVDude/b4f34600960c1479811e0f82b223fc57 to your computer and use it in GitHub Desktop.
Save theVDude/b4f34600960c1479811e0f82b223fc57 to your computer and use it in GitHub Desktop.
use a different texture pack in tagpro
// ==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