Difference between revisions of "Lua:Flags"

From Fortress Forever Wiki
Jump to navigationJump to search
 
(10 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
{{Infobox manual/Header}}
 +
{{Infobox mapping}}
 +
{{Lua:FlagType
 +
|prefix=Class
 +
|usage=Returns a specific class ID
 +
|flags=
 +
{{Lua:Flag|Player.kScout | Scout Class }}
 +
{{Lua:Flag|Player.kSniper | Sniper Class}}
 +
{{Lua:Flag|Player.kSoldier | Soldier Class}}
 +
{{Lua:Flag|Player.kDemoman | Demoman Class}}
 +
{{Lua:Flag|Player.kMedic | Medic Class}}
 +
{{Lua:Flag|Player.kHwGuy | Heavy Weapons Class}}
 +
{{Lua:Flag|Player.kPyro | Pyro Class}}
 +
{{Lua:Flag|Player.kSpy | Spy Class}}
 +
{{Lua:Flag|Player.kEngineer | Engineer Class}}
 +
|example=
 +
<code><pre>
 +
local player = CastToPlayer( touch_entity )
 +
if player:GetClass() == Player.kSniper then
 +
  ...
 +
end
 +
</pre></code>
 +
}}
 
{{Lua:FlagType
 
{{Lua:FlagType
 
|prefix=Team
 
|prefix=Team
Line 25: Line 48:
 
{{Lua:Flag|Grenade.kCaltrop|Caltrop grenades are no longer in the game}}
 
{{Lua:Flag|Grenade.kCaltrop|Caltrop grenades are no longer in the game}}
 
{{Lua:Flag|Grenade.kNail|Nail Grenade (Soldier)}}
 
{{Lua:Flag|Grenade.kNail|Nail Grenade (Soldier)}}
{{Lua:Flag|Grenade.kMirv|Mirv grenade (HWGuy and Demoman)}}
+
{{Lua:Flag|Grenade.kMirv|Mirv grenade (Demoman)}}
{{Lua:Flag|Grenade.kMirvlet|The four mini-grenades that come out of the Mirv grenade (HWGuy and Demoman)}}
+
{{Lua:Flag|Grenade.kMirvlet|The four mini-grenades that come out of the Mirv grenade (Demoman)}}
 
{{Lua:Flag|Grenade.kConc|Concussion grenade (Scout and Medic)}}
 
{{Lua:Flag|Grenade.kConc|Concussion grenade (Scout and Medic)}}
 
{{Lua:Flag|Grenade.kNapalm|Napalm grenade (Pyro)}}
 
{{Lua:Flag|Grenade.kNapalm|Napalm grenade (Pyro)}}
Line 51: Line 74:
 
{{Lua:Flag|Damage.kVehicle|Vehicle damage}}
 
{{Lua:Flag|Damage.kVehicle|Vehicle damage}}
 
{{Lua:Flag|Damage.kFall|Fall damage}}
 
{{Lua:Flag|Damage.kFall|Fall damage}}
{{Lua:Flag|Damage.kBlast|Blast damage}}
+
{{Lua:Flag|Damage.kBlast|Blast damage, DamageID 64}}
 
{{Lua:Flag|Damage.kClub|Unknown}}
 
{{Lua:Flag|Damage.kClub|Unknown}}
 
{{Lua:Flag|Damage.kShock|Shock damage}}
 
{{Lua:Flag|Damage.kShock|Shock damage}}
Line 146: Line 169:
 
}}
 
}}
  
 +
{{Lua:FlagType
 +
|prefix=AT
 +
|usage=Returns a specific "apply to" ID; Applies various commands to players, or to the entire server. Use with [[ApplyToAll]](ApplyToFlags), [[ApplyToTeam]](team, ApplyToFlags), or [[ApplyToPlayer]](player, ApplyToFlags) (not all flags are suitable for all functions).
 +
|flags=
 +
{{Lua:Flag|AT.kKillPlayers|}}
 +
{{Lua:Flag|AT.kRespawnPlayers|}}
 +
{{Lua:Flag|AT.kDropItems|}}
 +
{{Lua:Flag|AT.kForceDropItems|}}
 +
{{Lua:Flag|AT.kThrowItems|}}
 +
{{Lua:Flag|AT.kForceThrowItems|}}
 +
{{Lua:Flag|AT.kReturnCarriedItems|}}
 +
{{Lua:Flag|AT.kReturnDroppedItems|ApplyToAll only?}}
 +
{{Lua:Flag|AT.kRemoveRagdolls|ApplyToAll only?}}
 +
{{Lua:Flag|AT.kRemovePacks|ApplyToAll only?}}
 +
{{Lua:Flag|AT.kRemoveProjectiles|}}
 +
{{Lua:Flag|AT.kRemoveBuildables|}}
 +
{{Lua:Flag|AT.kRemoveDecals|ApplyToAll only?}}
 +
{{Lua:Flag|AT.kEndMap|ApplyToAll only}}
 +
{{Lua:Flag|AT.kReloadClips|}}
 +
{{Lua:Flag|AT.kAllowRespawn|}}
 +
{{Lua:Flag|AT.kDisallowRespawn|}}
 +
 +
{{Lua:Flag|AT.kChangeClassScout|}} 
 +
{{Lua:Flag|AT.kChangeClassSniper|}}
 +
{{Lua:Flag|AT.kChangeClassSoldier|}}
 +
{{Lua:Flag|AT.kChangeClassDemoman|}}
 +
{{Lua:Flag|AT.kChangeClassMedic|}} 
 +
{{Lua:Flag|AT.kChangeClassHWGuy|}}
 +
{{Lua:Flag|AT.kChangeClassPyro|}} 
 +
{{Lua:Flag|AT.kChangeClassSpy|}}
 +
{{Lua:Flag|AT.kChangeClassEngineer|}}
 +
{{Lua:Flag|AT.kChangeClassCivilian|}}
 +
{{Lua:Flag|AT.kChangeClassRandom|}}
 +
 +
{{Lua:Flag|AT.kChangeTeamBlue|}}
 +
{{Lua:Flag|AT.kChangeTeamRed|}}
 +
{{Lua:Flag|AT.kChangeTeamYellow|}}
 +
{{Lua:Flag|AT.kChangeTeamGreen|}}
 +
{{Lua:Flag|AT.kChangeTeamSpectator|}}
 +
 +
{{Lua:Flag|AT.kStopPrimedGrens|}}
 +
 +
|example=
 +
<code><pre>
 +
ApplyToAll({ AT.kRemovePacks, AT.kRemoveProjectiles, AT.kRespawnPlayers, AT.kRemoveBuildables, AT.kRemoveRagdolls, AT.kStopPrimedGrens, AT.kReloadClips })
 +
</pre></code>
 +
}}
 +
 +
{{Lua:FlagType
 +
|prefix=ClipFlags
 +
|usage=Used with [[Lua:trigger_ff_clip]] to determine what types of entities are allowed to pass through the trigger.
 +
|flags=
 +
{{Lua:Flag|ClipFlags.kClipTeamBlue|Use in conjunction with "ByTeam" flags.}} 
 +
{{Lua:Flag|ClipFlags.kClipTeamRed|Use in conjunction with "ByTeam" flags.}} 
 +
{{Lua:Flag|ClipFlags.kClipTeamYellow|Use in conjunction with "ByTeam" flags.}} 
 +
{{Lua:Flag|ClipFlags.kClipTeamGreen|Use in conjunction with "ByTeam" flags.}} 
 +
{{Lua:Flag|ClipFlags.kClipAllPlayers|}} 
 +
{{Lua:Flag|ClipFlags.kClipAllGrenades|}}
 +
{{Lua:Flag|ClipFlags.kClipAllProjectiles|projectiles such as nails and rockets.}}
 +
{{Lua:Flag|ClipFlags.kClipAllBullets|hitscan weapons such as shotguns.}}
 +
{{Lua:Flag|ClipFlags.kClipAllBuildables|Can buildables be placed?}}
 +
{{Lua:Flag|ClipFlags.kClipAllBuildableWeapons|Can sentries fire through?}}
 +
{{Lua:Flag|ClipFlags.kClipAllBackpacks|Thrown/dropped ammo.}}
 +
{{Lua:Flag|ClipFlags.kClipAllInfoScripts|Flags, balls, etc. These currently cannot be filtered by team.}}
 +
{{Lua:Flag|ClipFlags.kClipAllSpawnTurrets|}}
 +
{{Lua:Flag|ClipFlags.kClipAllNonPlayers|}}
 +
{{Lua:Flag|ClipFlags.kClipPlayersByTeam or ClipFlags.kClipPlayers|The following pairs behave identically; the first form is preferred, but the second form is for backwards-compatibility.}}
 +
{{Lua:Flag|ClipFlags.kClipGrenadesByTeam or ClipFlags.kClipGrenades|}}
 +
{{Lua:Flag|ClipFlags.kClipProjectilesByTeam or ClipFlags.kClipProjectiles|}}
 +
{{Lua:Flag|ClipFlags.kClipBulletsByTeam or ClipFlags.kClipBullets|}}
 +
{{Lua:Flag|ClipFlags.kClipBuildablesByTeam or ClipFlags.kClipBuildables|}}
 +
{{Lua:Flag|ClipFlags.kClipBuildableWeaponsByTeam or ClipFlags.kClipBuildableWeapons|}}
 +
{{Lua:Flag|ClipFlags.kClipBackpacksByTeam or ClipFlags.kClipBackpacks|}}
 +
{{Lua:Flag|ClipFlags.kClipSpawnTurretsByTeam or ClipFlags.kClipSpawnTurrets|}}
 +
{{Lua:Flag|ClipFlags.kClipNonPlayersByTeam or ClipFlags.kClipNonPlayers|}}
 +
 +
|example=
 +
This clip brush will be solid to everything except blue players.
 +
<code><pre>
 +
clip_example = trigger_ff_clip:new({ clipflags = {
 +
ClipFlags.kClipPlayersByTeam, ClipFlags.kClipTeamRed,
 +
ClipFlags.kClipTeamYellow, ClipFlags.kClipTeamGreen,
 +
ClipFlags.kClipAllNonPlayers} })
 +
</pre></code>
 +
}}
 +
 +
{{Lua:FlagType
 +
|prefix=CF
 +
|usage=Returns a specific "collection filter" ID;. Use with [[Lua:Collection|Collection()]] functions to add certain entities to a list.
 +
|flags=
 +
 +
{{Lua:Flag|CF.kNone|No filter}}
 +
 +
{{Lua:Flag|CF.kPlayers|}}
 +
{{Lua:Flag|CF.kHumanPlayers|Meaning bots are excluded.}}
 +
{{Lua:Flag|CF.kBotPlayers|FF does not support bots at this time.}}
 +
{{Lua:Flag|CF.kPlayerScout|}}
 +
{{Lua:Flag|CF.kPlayerSniper|}}
 +
{{Lua:Flag|CF.kPlayerSoldier|}}
 +
{{Lua:Flag|CF.kPlayerDemoman|}}
 +
{{Lua:Flag|CF.kPlayerMedic|}}
 +
{{Lua:Flag|CF.kPlayerHWGuy|}}
 +
{{Lua:Flag|CF.kPlayerPyro|}}
 +
{{Lua:Flag|CF.kPlayerSpy|}}
 +
{{Lua:Flag|CF.kPlayerEngineer|}}
 +
{{Lua:Flag|CF.kPlayerCivilian|}}
 +
 +
{{Lua:Flag|CF.kTeams|Not sure if the team filters work on just players or on any team-aligned object.}}
 +
{{Lua:Flag|CF.kTeamSpec|Spectators}}
 +
{{Lua:Flag|CF.kTeamBlue|}}
 +
{{Lua:Flag|CF.kTeamRed|}}
 +
{{Lua:Flag|CF.kTeamYellow|}}
 +
{{Lua:Flag|CF.kTeamGreen|}}
 +
 +
{{Lua:Flag|CF.kProjectiles|Applies to non-hitscan projectile weapons like rockets.}}
 +
{{Lua:Flag|CF.kGrenades|}}
 +
{{Lua:Flag|CF.kInfoScipts|Applies to any info_ff_script}}
 +
 +
{{Lua:Flag|CF.kInfoScript_Carried| Use the following on info_ff_scripts to determine their status}}
 +
{{Lua:Flag|CF.kInfoScript_Dropped|}}
 +
{{Lua:Flag|CF.kInfoScript_Returned|}}
 +
{{Lua:Flag|CF.kInfoScript_Active|}}
 +
{{Lua:Flag|CF.kInfoScript_Inactive|}}
 +
{{Lua:Flag|CF.kInfoScript_Removed|}}
 +
 +
{{Lua:Flag|CF.kTraceBlockWalls|This flag must be used if you are using the [[Lua:Collection#GetInSphere|Collection:GetInSphere]] function.}}
 +
 +
{{Lua:Flag|CF.kBuildables|}}
 +
{{Lua:Flag|CF.kDispenser|}}
 +
{{Lua:Flag|CF.kSentrygun|}}
 +
{{Lua:Flag|CF.kDetpack|}}
 +
 +
 +
|example=
 +
<code><pre>
 +
local col = Collection()
 +
 +
-- get all blue snipers
 +
col:GetByFilter( { CF.kPlayers, CF.kPlayerSniper, CF.kTeamBlue } )
 +
</pre></code>
 +
}}
 +
{{Lua:FlagType
 +
|prefix=Color
 +
|usage=Shorthand for some common colors
 +
|flags=
 +
 +
{{Lua:Flag|Color.kInvalid|}}
 +
{{Lua:Flag|Color.kDefault|}}
 +
{{Lua:Flag|Color.kBlue|}}
 +
{{Lua:Flag|Color.kRed|}}
 +
{{Lua:Flag|Color.kYellow|}}
 +
{{Lua:Flag|Color.kGreen|}}
 +
{{Lua:Flag|Color.kWhite|}}
 +
{{Lua:Flag|Color.kBlack|}}
 +
{{Lua:Flag|Color.kOrange|}}
 +
{{Lua:Flag|Color.kPink|}}
 +
{{Lua:Flag|Color.kPurple|}}
 +
{{Lua:Flag|Color.kGrey|}}
 +
|example=
 +
<code><pre>
 +
BroadCastMessage( "Goal!", 5, Color.kBlue )
 +
</pre></code>
 +
}}
 
[[Category:Lua]]
 
[[Category:Lua]]
 +
{{Infobox manual/Footer}}

Latest revision as of 20:13, 23 April 2015


Mapping for FF
The Basics

Setting up Hammer
Getting Started With Lua
Releasing a map

FF-specific Entities

Lua location system

Map Templates
FF Lua Documentation

Entity Typing
Entity Collections

Commands
Callbacks

Class

Returns a specific class ID

Flag Description
Player.kScout Scout Class
Player.kSniper Sniper Class
Player.kSoldier Soldier Class
Player.kDemoman Demoman Class
Player.kMedic Medic Class
Player.kHwGuy Heavy Weapons Class
Player.kPyro Pyro Class
Player.kSpy Spy Class
Player.kEngineer Engineer Class

Example

local player = CastToPlayer( touch_entity ) 
if player:GetClass() == Player.kSniper then
  ...
end

Team

Returns a specific team's ID

Flag Description
Team.kUnassigned The Unassigned team consists of players that have not picked a team)
Team.kSpectator Spectators
Team.kRed The Red team
Team.kBlue The Blue team
Team.kYellow The Yellow team
Team.kGreen The Green team

Example

local player = CastToPlayer( touch_entity ) 
if player:GetTeamId() == Team.kRed then
  ...
end

Grenade

Returns a specific grenade's ID

Flag Description
Grenade.kNormal Frag grenade (All classes except Scout and Civilian)
Grenade.kCaltrop Caltrop grenades are no longer in the game
Grenade.kNail Nail Grenade (Soldier)
Grenade.kMirv Mirv grenade (Demoman)
Grenade.kMirvlet The four mini-grenades that come out of the Mirv grenade (Demoman)
Grenade.kConc Concussion grenade (Scout and Medic)
Grenade.kNapalm Napalm grenade (Pyro)
Grenade.kGas Gas grenade (Spy)
Grenade.kEmp EMP grenade (Engineer)

Example

local grenade = CastToGrenade( explode_entity ) 
if grenade:Type() == Grenade.kNormal then
  ...
end

Damage

Returns a specific damage type's ID; predominately used to detect fall damage

Flag Description
Damage.kGeneric Generic damage
Damage.kCrush Crushing damage (as in by an elevator or door)
Damage.kBullet Bullet damage
Damage.kSlash Unknown
Damage.kBurn Burn damage (maybe by pyro, maybe by trigger_hurt)
Damage.kVehicle Vehicle damage
Damage.kFall Fall damage
Damage.kBlast Blast damage, DamageID 64
Damage.kClub Unknown
Damage.kShock Shock damage
Damage.kSonic Unknown
Damage.kEnergyBeam Unknown
Damage.kPreventPhysForce Unknown
Damage.kNeverGib Unknown
Damage.kAlwaysGib Unknown
Damage.kDrown Drowning damage
Damage.kTimeBased Unknown
Damage.kParalyze Unknown
Damage.kNerveGas Unknown
Damage.kPoison Unknown
Damage.kRadiation Unknown
Damage.kDrownRecover Unknown
Damage.kAcid Unknown
Damage.kSlowBurn Unknown
Damage.kRemoveNoRagdoll Unknown
Damage.kPhysgun Unknown; likely not applicable
Damage.kPlasma Unknown
Damage.kAirboat Likely not applicable
Damage.kDissolve Can be dealt by a trigger_hurt
Damage.kBlastSurface Unknown
Damage.kDirect Unknown
Damage.kBuckshot Unknown
Damage.kGibCorpse Unknown
Damage.kShownHud Unknown
Damage.kNoPhysForce Unknown

Example

local damagetype = damageinfo:GetDamageType()
if damagetype == Damage.kFall then
  ...
end

Ammo

Returns a specific ammo type's ID; predominately used to add or remove ammo from a player

Flag Description
Ammo.kShells Shell ammo type
Ammo.kCells Cell ammo type
Ammo.kNails Nail ammo type
Ammo.kRockets Rocket ammo type
Ammo.kDetpack Detpack ammo type
Ammo.kManCannon Jump Pad ammo type
Ammo.kGren1 Primary grenade ammo type
Ammo.kGren2 Secondary grenade ammo type
Ammo.kInvalid Unknown

Example

local player = CastToPlayer( player_entity )

player:AddAmmo( Ammo.kNails, 400 )
player:AddAmmo( Ammo.kShells, 400 )
player:AddAmmo( Ammo.kRockets, 400 )
player:AddAmmo( Ammo.kCells, 400 )
player:AddAmmo( Ammo.kDetpack, 1 )
player:AddAmmo( Ammo.kManCannon, 1 )

EF

Returns a specific status effect's ID

Flag Description
EF.kOnfire On Fire status effect
EF.kConc Concussed status effect
EF.kGas Hallucinati ons status effect
EF.kInfect Infected status effect
EF.kRadiotag Transmitting status effect
EF.kHeadshot Headshot status effect
EF.kLegshot Crippled status effect
EF.kTranq Tranquilized status effect
EF.kCaltrop Defunct
EF.kACSpinup Assault Cannon spinup status effect
EF.kSniperrifle Unknown
EF.kSpeedlua1 Custom speed effect 1
EF.kSpeedlua2 Custom speed effect 2
EF.kSpeedlua3 Custom speed effect 3
... ...
EF.kSpeedlua10 Custom speed effect 10

Example

local player = CastToPlayer( player_entity )

SPEED_MULTIPLIER = 2.0
EFFECT_DURATION = -1 -- Infinite duration
ICON_DURATION = 0

player:AddEffect( EF.kSpeedlua1, EFFECT_DURATION, ICON_DURATION, SPEED_MULTIPLIER )

AT

Returns a specific "apply to" ID; Applies various commands to players, or to the entire server. Use with ApplyToAll(ApplyToFlags), ApplyToTeam(team, ApplyToFlags), or ApplyToPlayer(player, ApplyToFlags) (not all flags are suitable for all functions).

Flag Description
AT.kKillPlayers
AT.kRespawnPlayers
AT.kDropItems
AT.kForceDropItems
AT.kThrowItems
AT.kForceThrowItems
AT.kReturnCarriedItems
AT.kReturnDroppedItems ApplyToAll only?
AT.kRemoveRagdolls ApplyToAll only?
AT.kRemovePacks ApplyToAll only?
AT.kRemoveProjectiles
AT.kRemoveBuildables
AT.kRemoveDecals ApplyToAll only?
AT.kEndMap ApplyToAll only
AT.kReloadClips
AT.kAllowRespawn
AT.kDisallowRespawn
AT.kChangeClassScout
AT.kChangeClassSniper
AT.kChangeClassSoldier
AT.kChangeClassDemoman
AT.kChangeClassMedic
AT.kChangeClassHWGuy
AT.kChangeClassPyro
AT.kChangeClassSpy
AT.kChangeClassEngineer
AT.kChangeClassCivilian
AT.kChangeClassRandom
AT.kChangeTeamBlue
AT.kChangeTeamRed
AT.kChangeTeamYellow
AT.kChangeTeamGreen
AT.kChangeTeamSpectator
AT.kStopPrimedGrens

Example

ApplyToAll({ AT.kRemovePacks, AT.kRemoveProjectiles, AT.kRespawnPlayers, AT.kRemoveBuildables, AT.kRemoveRagdolls, AT.kStopPrimedGrens, AT.kReloadClips })

ClipFlags

Used with Lua:trigger_ff_clip to determine what types of entities are allowed to pass through the trigger.

Flag Description
ClipFlags.kClipTeamBlue Use in conjunction with "ByTeam" flags.
ClipFlags.kClipTeamRed Use in conjunction with "ByTeam" flags.
ClipFlags.kClipTeamYellow Use in conjunction with "ByTeam" flags.
ClipFlags.kClipTeamGreen Use in conjunction with "ByTeam" flags.
ClipFlags.kClipAllPlayers
ClipFlags.kClipAllGrenades
ClipFlags.kClipAllProjectiles projectiles such as nails and rockets.
ClipFlags.kClipAllBullets hitscan weapons such as shotguns.
ClipFlags.kClipAllBuildables Can buildables be placed?
ClipFlags.kClipAllBuildableWeapons Can sentries fire through?
ClipFlags.kClipAllBackpacks Thrown/dropped ammo.
ClipFlags.kClipAllInfoScripts Flags, balls, etc. These currently cannot be filtered by team.
ClipFlags.kClipAllSpawnTurrets
ClipFlags.kClipAllNonPlayers
ClipFlags.kClipPlayersByTeam or ClipFlags.kClipPlayers The following pairs behave identically; the first form is preferred, but the second form is for backwards-compatibility.
ClipFlags.kClipGrenadesByTeam or ClipFlags.kClipGrenades
ClipFlags.kClipProjectilesByTeam or ClipFlags.kClipProjectiles
ClipFlags.kClipBulletsByTeam or ClipFlags.kClipBullets
ClipFlags.kClipBuildablesByTeam or ClipFlags.kClipBuildables
ClipFlags.kClipBuildableWeaponsByTeam or ClipFlags.kClipBuildableWeapons
ClipFlags.kClipBackpacksByTeam or ClipFlags.kClipBackpacks
ClipFlags.kClipSpawnTurretsByTeam or ClipFlags.kClipSpawnTurrets
ClipFlags.kClipNonPlayersByTeam or ClipFlags.kClipNonPlayers

Example

This clip brush will be solid to everything except blue players.

clip_example = trigger_ff_clip:new({ clipflags = {
ClipFlags.kClipPlayersByTeam, ClipFlags.kClipTeamRed, 
ClipFlags.kClipTeamYellow, ClipFlags.kClipTeamGreen, 
ClipFlags.kClipAllNonPlayers} })

CF

Returns a specific "collection filter" ID;. Use with Collection() functions to add certain entities to a list.

Flag Description
CF.kNone No filter
CF.kPlayers
CF.kHumanPlayers Meaning bots are excluded.
CF.kBotPlayers FF does not support bots at this time.
CF.kPlayerScout
CF.kPlayerSniper
CF.kPlayerSoldier
CF.kPlayerDemoman
CF.kPlayerMedic
CF.kPlayerHWGuy
CF.kPlayerPyro
CF.kPlayerSpy
CF.kPlayerEngineer
CF.kPlayerCivilian
CF.kTeams Not sure if the team filters work on just players or on any team-aligned object.
CF.kTeamSpec Spectators
CF.kTeamBlue
CF.kTeamRed
CF.kTeamYellow
CF.kTeamGreen
CF.kProjectiles Applies to non-hitscan projectile weapons like rockets.
CF.kGrenades
CF.kInfoScipts Applies to any info_ff_script
CF.kInfoScript_Carried Use the following on info_ff_scripts to determine their status
CF.kInfoScript_Dropped
CF.kInfoScript_Returned
CF.kInfoScript_Active
CF.kInfoScript_Inactive
CF.kInfoScript_Removed
CF.kTraceBlockWalls This flag must be used if you are using the Collection:GetInSphere function.
CF.kBuildables
CF.kDispenser
CF.kSentrygun
CF.kDetpack

Example

local col = Collection()

-- get all blue snipers
col:GetByFilter( { CF.kPlayers, CF.kPlayerSniper, CF.kTeamBlue } )

Color

Shorthand for some common colors

Flag Description
Color.kInvalid
Color.kDefault
Color.kBlue
Color.kRed
Color.kYellow
Color.kGreen
Color.kWhite
Color.kBlack
Color.kOrange
Color.kPink
Color.kPurple
Color.kGrey

Example

BroadCastMessage( "Goal!", 5, Color.kBlue )