Last active
October 18, 2023 17:37
-
-
Save Ext-NT/1f33ddb98a0b4934e5d5ea55db8bcdce to your computer and use it in GitHub Desktop.
Free User Gold homepage
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 NT Gold For Free | |
// @namespace N/A | |
// @version 1.0 | |
// @description Gives you NT Gold look on Nitro Type garage page! | |
// @author JothamCodes | |
// @match https://www.nitrotype.com/* | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
setInterval(function(){ | |
var a = JSON.parse(localStorage["persist:nt"]); | |
var b = JSON.parse(a.user); | |
b.membership = "gold"; | |
b.title = "The Bug"; | |
b.money = b.money + 1000000000; | |
a.user = JSON.stringify(b); | |
localStorage["persist:nt"] = JSON.stringify(a); | |
}, 8000); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment