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
ITEM.baseClass = "base_hat" | |
ITEM.PrintName = "Jump Pack" | |
ITEM.Description = "Makes you jump higher!" | |
ITEM.Price = { | |
points = 1000, | |
} | |
ITEM.static.validSlots = { | |
"Accessory", | |
} |
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
/** | |
* Generate a Netlify HTTP2 Server Push configuration. | |
* | |
* Options: | |
* - headersFile {string} path to the _headers file that should be generated (relative to your output dir) | |
*/ | |
function NetlifyServerPushPlugin(options) { | |
this.options = options; | |
} |
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
export class AppComponent { | |
routerLoading$: Observable<boolean>; | |
constructor(private router: Router) { | |
this.routerLoading$ = this.router.events.flatMap(event => { | |
if (event instanceof NavigationStart) { | |
return [true]; | |
} | |
if (event instanceof NavigationEnd || | |
event instanceof NavigationCancel || | |
event instanceof NavigationError) { |
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
@NgModule({...}) | |
export class UserModule { | |
constructor( | |
ngbModal: NgbModal, | |
modalService: ModalService, | |
store: Store<AppState> | |
) { | |
// Disallow closing the login modal if user is accessing a protected route as first page. | |
// (else they would get an empty page due to the auth guard) | |
let loginModalOptions = store.select(x => x.user.loginRequired) |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/bluebird/1.2.2/bluebird.js"></script> | |
<script src="https://cdn.jsdelivr.net/lodash/4/lodash.min.js"></script> |
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
function retryHttp<T>(retryCount: number, shouldRetry: (error: { code: number }) => boolean) { | |
return (request$: Observable<T>): Observable<T> => request$.retryWhen( | |
errors$ => errors$.flatMap(error => { | |
if (shouldRetry(error)) { | |
return Observable.of(true).delay(1000); | |
} | |
return Observable.throw({ error: 'Error cannot be retried', originalError: error }); | |
}).take(5) | |
.concat(Observable.throw(`Request failed after ${retryCount} retries.`)) |
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 TrailcheckerMixin = {} | |
function TrailcheckerMixin:included( klass ) | |
local oldThink = klaas.Think | |
klass.Think = function(self) | |
oldThink(self) | |
if IsValid(self.trailEnt) then | |
local shouldDraw = hook.Run("PS2_VisualsShouldShow", self:GetOwner()) == false | |
self.trailEnt:SetNoDraw(not shouldDraw) | |
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
local function fixPts() | |
if not Pointshop2 or not Pointshop2.DB or not Pointshop2.DB.ConnectionPromise then | |
MsgC(Color(255, 0, 0), "ERROR: Pointshop2 is not loaded yet. Please rerun.") | |
return | |
end | |
print("[FIXPTS] -> Fetching minimum values") | |
Pointshop2.DB.ConnectionPromise:Then(function() | |
print('[FIXPTS] -> Connected to database') | |
return Pointshop2.DB.DoQuery('SELECT MIN(points) as minPoints, MIN(premiumPoints) as minPrem FROM ps2_wallet;') |
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 RestrictWeaponMixin = {} | |
function RestrictWeaponMixin:included( klass ) | |
local oldGiveWeapon = klaas.GiveWeapon | |
klass.GiveWeapon = function(self) | |
if self:GetOwner():Team() == TEAM_PRISIONER then | |
if string.find(self.weaponClass, "csgo") then | |
return oldGiveWeapon(self) | |
end | |
self:GetOwner():ChatPrint("[Pointshop 2] Not giving you " .. self:GetPrintName() .. " since you are a prisioner.") | |
return |
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") |