🏳️🌈
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
Module Module1 | |
Function GetString(ByVal InputS As String) As String | |
Dim TempS As String = "" | |
Dim TempC As ConsoleKeyInfo | |
Do | |
TempC = Console.ReadKey() | |
If TempC.Key = ConsoleKey.Escape Or TempC.Key = ConsoleKey.Enter Then | |
Console.Write(vbNewLine) | |
Return False | |
Else |
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
local n=0 hook.Add("Tick", "TickFinder", function() n=n+1 end) timer.Simple(1,function() hook.Remove("Tick", "TickFinder") print("Tickrate: " .. n) end) |
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
local e,n e=player.GetAll()[1]:GetEyeTraceNoCursor().Entity n=0 hook.Add("Think", "test", function() n=n+0.01 if n>=1 then n=0 end e:SetPoseParameter("switch", n) end) |
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
local rank="trustedrespected" local p="" local n=0 for k,v in pairs(evolve.PlayerInfo) do if v.Rank==rank and v.PlayTime>n then p=v.Nick n=v.PlayTime end end evolve:Notify(evolve.colors.white, "The "..evolve.ranks[rank].Title.." with the highest playtime is ", evolve.colors.blue, p, evolve.colors.white, " with ", evolve.colors.red, math.floor(n/60/60/24).." days", evolve.colors.white, ".") |
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
hook.Add("PlayerSay", "kick", function(ply,text) | |
if ply:IsAdmin() or ply:IsSuperAdmin() then | |
local t=string.Explode(" ", text) | |
if t and t[1] and t[1]:lower()=="!kick" then | |
if t[2] and string.len(t[2])>0 then | |
local n=t[2] | |
local pl={} | |
for k,v in pairs(player.GetAll()) do | |
if string.find(v:Nick():lower(), n:lower()) then | |
table.insert(pl,v) |
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 Steam linkfilter bypass | |
// @namespace http://www.mattjeanes.com/ | |
// @description Automatically bypasses the steam linkfilter. | |
// @include http*://steamcommunity.com/linkfilter/?url=* | |
// @run-at document-start | |
// ==/UserScript== | |
var str = window.location.href | |
var search = "?url=" |
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
-- Purge. Written by Dr. Matt, initial version/idea by Paft. | |
AddCSLuaFile() | |
if SERVER then | |
util.AddNetworkString("purge") | |
local purge=false | |
local cooldown=false | |
local cooldowntime=15 | |
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
local thing="" | |
for k,v in pairs(evolve.privileges) do | |
if string.sub(v,0,thing:len())==thing then | |
local privilege = v | |
for k,v in pairs(evolve.ranks) do | |
local rank = k | |
if v.Immunity>=15 and v.Immunity < 99 then | |
if ( !table.HasValue( evolve.ranks[ rank ].Privileges, privilege ) ) then | |
table.insert( evolve.ranks[ rank ].Privileges, privilege ) | |
end |
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
for k,v in pairs(ents.FindByClass("gmod_wire_expression2")) do print(v.name,math.Round(v.context.prfbench).." ops",math.Round(v.context.timebench*1000000).." us", v.context.player:Nick(), v.context.player:SteamID()) end |
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
/// <binding BeforeBuild='build' Clean='clean' ProjectOpened='watch' /> | |
var gulp = require('gulp'); | |
var sass = require('gulp-sass'); | |
var changed = require('gulp-changed'); | |
var rename = require('gulp-rename'); | |
var uglify = require('gulp-uglify'); | |
var sourcemaps = require('gulp-sourcemaps'); | |
var plumber = require('gulp-plumber'); | |
var path = require('path'); | |
var del = require('del'); |
OlderNewer