-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from fluffy-servers/1.3.9
1.3.9 Update
- Loading branch information
Showing
72 changed files
with
843 additions
and
853 deletions.
There are no files selected for viewing
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
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
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
16 changes: 16 additions & 0 deletions
16
fluffy_incoming/entities/entities/inc_checkpoint_activator.lua
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
ENT.Type = "brush" | ||
|
||
function ENT:StartTouch(ent) | ||
if not ent:IsPlayer() then return end | ||
if not GAMEMODE:InRound() then return end | ||
|
||
GAMEMODE:CheckpointTriggered(ent, self.CheckpointStage, self.CheckpointMessage) | ||
end | ||
|
||
function ENT:KeyValue(key, value) | ||
if key == "stage" then | ||
self.CheckpointStage = tonumber(value) | ||
elseif key == "message" then | ||
self.CheckpointMessage = value | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
ENT.Type = "point" | ||
|
||
function ENT:KeyValue(key, value) | ||
if key == "stage" then | ||
self.CheckpointStage = tonumber(value) | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
ENT.Type = "point" | ||
|
||
ENT.CustomPreset = {} | ||
|
||
function ENT:KeyValue(key, value) | ||
if key == "preset" then | ||
if value == "Custom" then value = "Custom" .. self:EntIndex() end | ||
self.Preset = value | ||
elseif key == "delay" then | ||
self.CustomPreset.delay = tonumber(value) | ||
elseif key == "material" then | ||
self.CustomPreset.material = value | ||
elseif string.StartWith(key, "model") then | ||
if not self.CustomPreset.models then self.CustomPreset.models = {} end | ||
table.insert(self.CustomPreset.models, value) | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
ENT.Type = "brush" | ||
|
||
function ENT:Touch(ent) | ||
if ent:IsPlayer() then return end | ||
if ent:GetClass() == "prop_ragdoll" then return end | ||
ent:Remove() | ||
end |
60 changes: 0 additions & 60 deletions
60
fluffy_incoming/entities/entities/inc_prop_remover/init.lua
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ENT.Type = "point" |
7 changes: 0 additions & 7 deletions
7
fluffy_incoming/entities/entities/inc_prop_spawner/cl_init.lua
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
fluffy_incoming/entities/entities/inc_prop_spawner/shared.lua
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
ENT.Type = "brush" | ||
|
||
function ENT:StartTouch(ent) | ||
if not ent:IsPlayer() then return end | ||
if not GAMEMODE:InRound() then return end | ||
|
||
self:Remove() | ||
GAMEMODE:IncomingVictory(ent) | ||
end |
47 changes: 0 additions & 47 deletions
47
fluffy_incoming/entities/entities/inc_winners_area/init.lua
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ENT.Base = "inc_prop_remover" |
60 changes: 0 additions & 60 deletions
60
fluffy_incoming/entities/entities/slope_prop_remover/init.lua
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ENT.Base = "inc_prop_spawner" |
7 changes: 0 additions & 7 deletions
7
fluffy_incoming/entities/entities/slope_prop_spawner/cl_init.lua
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
fluffy_incoming/entities/entities/slope_prop_spawner/init.lua
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
fluffy_incoming/entities/entities/slope_prop_spawner/shared.lua
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ENT.Base = "inc_winners_area" |
47 changes: 0 additions & 47 deletions
47
fluffy_incoming/entities/entities/slope_winners_area/init.lua
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.