-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathnewGarage.user.js
52 lines (48 loc) · 2.09 KB
/
newGarage.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// ==UserScript==
// @name Nitro Type Garage Hack 2020
// @namespace https://theprabhakar.in/
// @version 3.0
// @description Garage Mod for adding cars - only visual
// @author Prabhakar Rai
// @match https://www.nitrotype.com/garage
// @icon https://raw.githubusercontent.com/PrabhakarRai/Nitro-type-car-hack/master/icon.jpg
// @updateURL https://raw.githubusercontent.com/PrabhakarRai/Nitro-type-car-hack/master/newGarage.user.js
// @downloadURL https://raw.githubusercontent.com/PrabhakarRai/Nitro-type-car-hack/master/newGarage.user.js
// @require https://raw.githubusercontent.com/PrabhakarRai/Nitro-type-car-hack/master/data.js
// @grant unsafeWindow
// @grant GM_addStyle
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_xmlhttpRequest
// @grant GM_xmlhttpRequest
// @grant GM_registerMenuCommand
// @grant GM_deleteValue
// @grant GM_listValues
// @grant GM_getResourceText
// @grant GM_getResourceURL
// @grant GM_log
// @grant GM_openInTab
// @grant GM_setClipboard
// @grant GM_info
// @grant GM_getMetadata
// ==/UserScript==
window.onload = function() {
/*Updated Version 2.0: Space for extra 30 cars will be added to your garage. To remove this feature, delete these two lines.*/
for(var i = 0; i < 30; i++){
document.getElementsByClassName('garage')[0].appendChild(document.getElementsByClassName('garage-spot is-empty')[0].cloneNode(true));}
/*****************************************
*In order to change or rearrange the cars,
*use the hack_ID of the needed car in below,
*given variable. hack_ID is available on my,
*blog. www.theprabhakar.in****************/
var needed_cars = [215, 219, 163, 118, 173,
169, 106, 47, 94, 68, 98,
164, 160, 198, 208, 104, 92,
49,202, 201, 197, 196, 174,
138, 188, 192, 175, 176, 177,
181, 73, 72, 58, 103, 180, 114,
115, 116, 207, 119, 120, 121];
hackcars(needed_cars);
/*Updated Version 1.1: Changes money visually.*/
hackmoney("$528,905,837");
}