A bot is a downgrade and should not grant an advantage to the team. Source
Detected | Banned | Name |
---|---|---|
2019-12-13 00:16 | 2019-12-16 21:00 | shroudtfz |
2019-12-13 00:51 | 2019-12-16 21:00 | shroudbze |
2019-12-13 23:54 | 2019-12-16 21:00 | anomalydec |
2019-12-13 23:59 | 2019-12-16 21:00 | shoedix |
2019-12-14 01:00 | 2019-12-16 21:00 | shroudnzd |
2019-12-14 21:04 | 2019-12-16 21:00 | faceit_xp |
This file contains hidden or 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
// Copy and paste into console on the following URL: | |
// https://steamcommunity.com/my/inventoryhistory/?app%5B%5D=730 | |
(async _ => { | |
const loadMoreBtnSelector = '#load_more_button:not([style*="display:none"])'; | |
let pagesLoaded = 0; | |
console.time('loadall'); | |
console.log(g_historyCursor); | |
while (g_historyCursor !== null) { | |
pagesLoaded++; | |
await waitForSelector(loadMoreBtnSelector); |
- ⭐ Virus Outbreak
Recover a sample of the Danger Zone virus from the Phoenix laboratory. - ⭐ Face Time
Get 10 kills with the Nova in Casual: Defusal Group Sigma. - ⭐ Charge
Get 5 kills with any Heavy Weapon in Danger Zone. - ⭐⭐ Smoke Screen
Throw 5 strategic smoke grenades in Casual: Mirage. - ⭐⭐ Closing the Distance
Get 10 kills from Banana or Apartments in Deathmatch: Inferno.
This file contains hidden or 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
/** | |
* Returns the time string as Number in seconds. | |
* @param {string} str - String with human readable time for example "15m 45s" | |
* @returns {number} Seconds as Number | |
*/ | |
function humanReadableTimeStringToSeconds(str) { | |
const units = ['d', 'h', 'm', 's']; | |
const regex = RegExp('^(\\d+)(['+units.join('')+'])$', 'i'); | |
const unitConversions = [86400, 3600, 60, 1]; | |
const parts = str.split(/\s+/) || [str]; |
- sb.ltn.fi.lastupdate.user.js
Show the last update time on top center - sb.ltn.fi.similarsegments.user.js
Color highlights segments that are similar on sb.ltn.fi (Only works on video page sorted by starttime) - sb.ltn.fi.coloredcategories.user.js
Color highlights categories - sb.ltn.fi.clickablestarttime.user.js
Makes the startTime clickable
This file contains hidden or 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 PictureInPicture | |
// @namespace pip | |
// @version 1.0.0 | |
// @description PiP everywhere | |
// @author You | |
// @include * | |
// @grant GM_registerMenuCommand | |
// ==/UserScript== |
Proof of concept!
Blocks/Blurs social media bar in the following video over the full video length
https://www.youtube.com/watch?v=SKSY1juX2ao
Prevent getting kicked from server if server lags long time:
cl_timeout -1;cl_fullupdate 1
cvar.cl_timeout:set_raw_float(-1) -- Prevents you getting kicked from the game while server is down
cvar.cl_fullupdate:invoke_callback(1) -- Forces a full update on key press so u can move while the server is down