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 ptsMap = { | |
["csgo_bayonet"] = 10, | |
others = 5 | |
} | |
hook.Add( "PlayerDeath", "ExtraPointsForKnifeKill", function( victim, inflictor, attacker ) | |
if not IsValid( inflictor ) or not IsValid( attacker ) or not attacker:IsPlayer( ) then | |
return | |
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
@Injectable() | |
export class UserService { | |
constructor(private db: AngularFireDatabase, private zone: NgZone) {} | |
getUser(id: string | number): Observable<User> { | |
const user$ = this.database.object('profiles/' + id); | |
this.universalBlockUntilFirst(user$); | |
return user$; | |
} |
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("PS2_GetPreviewModel", "ForMurder", function() | |
if GAMEMODE.Spectating then | |
return { | |
model = player_manager.TranslatePlayerModel("male03"), | |
bodygroups = "0", | |
skin = 0 | |
} | |
end | |
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
FROM node:6.11-slim | |
RUN yarn global add firebase-tools | |
RUN mkdir app | |
WORKDIR /app | |
RUN mkdir functions | |
COPY functions/package.json functions/package.json | |
RUN cd functions && yarn | |
COPY . . |
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 function generateStattrakItemInfo( itemClass, itemChance ) | |
local info = { | |
chance = itemChance * 0.1, -- 10% chance of original item = get stattrak item | |
itemOrInfo = { | |
isInfoTable = true, | |
item = itemClass, | |
getIcon = function() | |
local icon = vgui.Create("DCsgoItemIcon") | |
icon:SetItemClass(itemClass) | |
-- Force border to red |
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
# Setup minikube | |
mkdir ~/kube | |
cd ~/kube | |
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && chmod +x minikube | |
curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl && chmod +x kubectl | |
export MINIKUBE_WANTUPDATENOTIFICATION=false | |
export MINIKUBE_WANTREPORTERRORPROMPT=false | |
export MINIKUBE_HOME=$HOME |
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
AddCSLuaFile() | |
--[[ | |
Follow this template to add playermodels to the picker and make the hands work. | |
You need to make sure that the playermodels are downloaded on the client as well (i.e. FastDL or Workshop Download). | |
This is the template: | |
player_manager.AddValidModel( "<name>", "<player model path>" ) | |
player_manager.AddValidHands( "<name>", "models/weapons/c_arms_cstrike.mdl", 0, "10000000" ) | |
]]-- |
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
import * as request from 'request'; | |
import * as shx from 'shelljs'; | |
import * as fs from 'fs'; | |
import * as unzip from 'unzipper'; | |
import * as through from 'through2'; | |
import * as Vinyl from 'vinyl'; | |
function downloadLatestArtifact(gitlabToken: string, tokenType: 'PRIVATE-TOKEN' | 'JOB-TOKEN') { | |
// Download and unzip | |
const files = []; |
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
sed -E -n 's/[^#]+/export &/ p' .env | while read line ; do echo $(printf %q "$line") | eval ; done |
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
if SERVER then | |
AddCSLuaFile() | |
return | |
end | |
local lastDown = 0 | |
local function hkKey() | |
if input.IsKeyDown( KEY_F6 ) and CurTime() > lastDown + 1 then | |
lastDown = CurTime() | |
RunConsoleCommand("pointshop2_toggle") |