View source for User:Lumpy HTF/AutoTurn.js
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
// ==UserScript==
// @name Auto-Turn
// @namespace http://computernewb.com/
// @version 1.2.0
// @description A turn spam script with a efficent auto turn method, graphical dropdown, easy-to-use interface, GUI with metro theme support, auto start options, you name it. While your typical turn spam script would just be a plain dev console script or a single button, this userscript version is loaded with features, and the ones I mentioned aren't the only ones. See for yourself by checking the about page in the script today.
// @author swordlink1/Lumpy HTF
// @match https://computernewb.com/collab-vm/*
// @match http://computernewb.com/collab-vm/*
// @match localhost
// @icon https://www.google.com/s2/favicons?sz=64&domain=computernewb.com
// @grant none
// ==/UserScript==
(function() {
'use strict'; // WELCOME TO THE (long ago) RTM RELEASE! This userscript will be receiving more features in future updates. Stay tuned! The updates are in this script's changelog.
// This userscript was designed for Chromium-based browsers, at least when swordlink1 is developing it. This userscript, when developed by swordlink1, is developed on Edge.
// defining some variables
const bgcolor = $(".navbar").css("background-color"); // detect cvm red and black theme
var crab = false; // variable for cvm red and black theme detection (crab is cvm red and black theme)
var bt4 = false; // variable for cvm bootstrap 4 theme detection
var bt5 = false; // variable for cvm bootstrap 5 theme detection
var betatheme = false; // variable for cvm beta theme detection
000
1:0
Return to User:Lumpy HTF/AutoTurn.js.