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
// classic sniper rifle | |
set ClassicSniperSmoke bHidden True | |
// remove smoke | |
set BioSmoke bHidden True | |
set RocketTrailSmoke bHidden True | |
set GrenadeSmokeTrail bHidden True | |
set GoopSmoke bHidden True | |
set GoopSparks bHidden True | |
set FlakShellTrail bHidden True | |
//set FlakTrail bHidden True |
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
set BloodExplosion DrawScale 5 | |
set BloodJet DrawScale 5 | |
set BloodSpurt DrawScale 5 | |
set BloodSmallHit DrawScale 8 | |
set BotSmallHit DrawScale 8 | |
set BotBloodExplosion DrawScale 5 | |
set BloodJet mMaxParticles 500 | |
set BloodExplosion mMaxParticles 500 | |
set BloodSpurt mMaxParticles 500 |
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
set HudCDeathMatch TimerBackgroundDisc (WidgetTexture=None) | |
set HudCDeathMatch TimerIcon (WidgetTexture=None) | |
set HudCDeathMatch AdrenalineBackgroundDisc (WidgetTexture=None) | |
set HudCDeathMatch TimerBackgroundDisc (WidgetTexture=None) | |
set HudCDeathMatch AdrenalineIcon (WidgetTexture=None) | |
set HudCDeathMatch AdrenalineAlert (WidgetTexture=None) | |
set HudCDeathMatch FadeTime 0 | |
set HUD bShowPoints False | |
set HudCDeathMatch TimerDigitSpacer (WidgetTexture=None) |
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 include(files) { | |
if (typeof(files) == 'string') files = [files]; | |
var onload; | |
var script = document.createElement('script'); | |
var file = files.shift(); | |
script.setAttribute('type', 'text/javascript'); | |
script.setAttribute('src', file); | |
document.body.appendChild(script); | |
if (files.length > 0) { | |
onload = function() { include(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
var GetExtension = function(Path) { | |
var S = Path + ''; | |
return S.substr( S.lastIndexOf('.') + 1 ); | |
}; |
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
// Detect CSS3 Support | |
// http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-detect-css-support-in-browsers-with-javascript/ | |
var IsSupportCssProperty = (function() { | |
var Dummy = document.createElement('dummy'); | |
var Vendors = 'Khtml O Ms Webkit Moz '.split(' '); | |
var Length = Vendors.length; | |
var Px, CssProperty; | |
return function(PropertyName) { | |
for (var Index = Vendors.length - 1; Index >= 0; --Index) { |
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
// jQuery HTML5 Uploader 1.0 (2 Nov 2011) | |
// Requires XMLHttpRequest 2 | |
// Supports: IE 10+, Firefox 4+, Chrome 12+, Safari 5+, Opera 12+ | |
new function($) { | |
var UploadedFilesIndex; | |
var UploadedFilesLength; | |
var UploadSession = function(Length) { |
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
#include <stdio.h> | |
#include <stdarg.h> | |
#include <conio.h> | |
#include <math.h> | |
#include <stdlib.h> | |
int main(int argc, char const *argv[]) | |
{ | |
printf("Fibonacci numbers\n"); | |
int f, i, prev, beforePrev; |
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
#include <stdio.h> | |
#include <conio.h> | |
#include <string.h> | |
int main() | |
{ | |
char String[255]; | |
char* Words[50]; | |
char* Pchar; | |
char Delimeter[] = " .,!"; |
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
$Directory = new RecursiveDirectoryIterator('/tmp'); | |
foreach(new RecursiveIteratorIterator($Directory) as $File) { | |
$Filepath = $File->GetPathName(); | |
unlink($Filepath); | |
} |
OlderNewer