Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Azarael committed Oct 28, 2019
0 parents commit ff708db
Show file tree
Hide file tree
Showing 2,749 changed files with 320,990 additions and 0 deletions.
451 changes: 451 additions & 0 deletions 3SPNv3141BW/Classes/AM_HUD.uc

Large diffs are not rendered by default.

498 changes: 498 additions & 0 deletions 3SPNv3141BW/Classes/AM_Scoreboard.uc

Large diffs are not rendered by default.

2,028 changes: 2,028 additions & 0 deletions 3SPNv3141BW/Classes/ArenaMaster.uc

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions 3SPNv3141BW/Classes/DamType_Camping.uc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
class DamType_Camping extends DamageType
abstract;

defaultproperties
{
DeathString="%o's tent collapsed."
FemaleSuicide="%o's tent collapsed."
MaleSuicide="%o's tent collapsed."
bCausesBlood=False
bExtraMomentumZ=False
}
11 changes: 11 additions & 0 deletions 3SPNv3141BW/Classes/DamType_Git.uc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
class DamType_Git extends DamageType
abstract;

defaultproperties
{
DeathString="%o tried to Git %k."
FemaleSuicide="%o somehow Gitted herself."
MaleSuicide="%o somehow Gitted himself."
bCausesBlood=False
bExtraMomentumZ=False
}
22 changes: 22 additions & 0 deletions 3SPNv3141BW/Classes/DamType_Headshot.uc
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
class DamType_HeadShot extends DamTypeSniperHeadShot;

static function IncrementKills(Controller Killer)
{
local xPlayerReplicationInfo xPRI;

if ( PlayerController(Killer) == None )
return;

PlayerController(Killer).ReceiveLocalizedMessage( Default.KillerMessage, 0, Killer.PlayerReplicationInfo, None, None );
xPRI = xPlayerReplicationInfo(Killer.PlayerReplicationInfo);
if ( xPRI != None )
{
xPRI.headcount++;
if ( (xPRI.headcount == 3) && (UnrealPlayer(Killer) != None) )
UnrealPlayer(Killer).ClientDelayedAnnouncementNamed('HeadHunter',15);
}
}

defaultproperties
{
}
11 changes: 11 additions & 0 deletions 3SPNv3141BW/Classes/DamType_Overtime.uc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
class DamType_Overtime extends DamageType
abstract;

defaultproperties
{
DeathString="%o spent too much time exploring."
FemaleSuicide="%o spent too much time exploring."
MaleSuicide="%o spent too much time exploring."
bCausesBlood=False
bExtraMomentumZ=False
}
11 changes: 11 additions & 0 deletions 3SPNv3141BW/Classes/DamType_SwitchedTeam.uc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
class DamType_SwitchedTeam extends DamageType
abstract;

defaultproperties
{
DeathString="%o switched team."
FemaleSuicide="%o switched team."
MaleSuicide="%o switched team."
bCausesBlood=False
bExtraMomentumZ=False
}
34 changes: 34 additions & 0 deletions 3SPNv3141BW/Classes/Emitter_SeeInvis.uc
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
class Emitter_SeeInvis extends xEmitter;

defaultproperties
{
mParticleType=PT_Line
mSpawningType=ST_Explode
mStartParticles=0
mLifeRange(0)=0.250000
mLifeRange(1)=0.500000
mRegenRange(0)=100.000000
mRegenRange(1)=200.000000
mPosDev=(X=12.500000,Y=12.500000,Z=12.500000)
mSpawnVecB=(X=10.000000,Y=10.000000,Z=0.100000)
mSpeedRange(0)=-25.000000
mSpeedRange(1)=-50.000000
mPosRelative=True
mAirResistance=0.000000
mSizeRange(0)=0.125000
mSizeRange(1)=0.250000
mColorRange(0)=(B=0,A=200)
mColorRange(1)=(B=128)
bTrailerSameRotation=True
bNetTemporary=False
bReplicateMovement=False
Physics=PHYS_Trailer
RemoteRole=ROLE_SimulatedProxy
LifeSpan=60.000000
DrawScale=5.000000
Skins(0)=Texture'XEffects.FlakTrailTex'
Style=STY_Additive
bOwnerNoSee=True
bFixedRotationDir=True
RotationRate=(Pitch=20000,Yaw=16000,Roll=18000)
}
Loading

0 comments on commit ff708db

Please sign in to comment.