mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +03:00
75 lines
1.5 KiB
Lua
75 lines
1.5 KiB
Lua
|
|
--[[
|
||
|
|
| This file was obtained through the combined efforts
|
||
|
|
| of Madbluntz & Plymouth Antiquarian Society.
|
||
|
|
|
|
||
|
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||
|
|
| Maloy, DrPepper10 @ RIP, Atle!
|
||
|
|
|
|
||
|
|
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||
|
|
--]]
|
||
|
|
|
||
|
|
include("util.lua")
|
||
|
|
|
||
|
|
include("footsteps_fix.lua")
|
||
|
|
include("http.lua")
|
||
|
|
include("movement.lua")
|
||
|
|
include("entity_mutator.lua")
|
||
|
|
include("hash.lua")
|
||
|
|
|
||
|
|
pac.StringStream = include("pac3/libraries/string_stream.lua")
|
||
|
|
|
||
|
|
CreateConVar("pac_sv_draw_distance", 0, CLIENT and FCVAR_REPLICATED or bit.bor(FCVAR_REPLICATED, FCVAR_ARCHIVE))
|
||
|
|
|
||
|
|
do
|
||
|
|
local tohash = {
|
||
|
|
-- Crash
|
||
|
|
'weapon_unusual_isotope.pcf',
|
||
|
|
|
||
|
|
-- Invalid
|
||
|
|
'blood_fx.pcf',
|
||
|
|
'boomer_fx.pcf',
|
||
|
|
'charger_fx.pcf',
|
||
|
|
'default.pcf',
|
||
|
|
'electrical_fx.pcf',
|
||
|
|
'environmental_fx.pcf',
|
||
|
|
'fire_01l4d.pcf',
|
||
|
|
'fire_fx.pcf',
|
||
|
|
'fire_infected_fx.pcf',
|
||
|
|
'firework_crate_fx.pcf',
|
||
|
|
'fireworks_fx.pcf',
|
||
|
|
'footstep_fx.pcf',
|
||
|
|
'gen_dest_fx.pcf',
|
||
|
|
'hunter_fx.pcf',
|
||
|
|
'infected_fx.pcf',
|
||
|
|
'insect_fx.pcf',
|
||
|
|
'item_fx.pcf',
|
||
|
|
'locator_fx.pcf',
|
||
|
|
'military_artillery_impacts.pcf',
|
||
|
|
'rain_fx.pcf',
|
||
|
|
'rain_storm_fx.pcf',
|
||
|
|
'rope_fx.pcf',
|
||
|
|
'screen_fx.pcf',
|
||
|
|
'smoker_fx.pcf',
|
||
|
|
'speechbubbles.pcf',
|
||
|
|
'spitter_fx.pcf',
|
||
|
|
'steam_fx.pcf',
|
||
|
|
'steamworks.pcf',
|
||
|
|
'survivor_fx.pcf',
|
||
|
|
'tank_fx.pcf',
|
||
|
|
'tanker_explosion.pcf',
|
||
|
|
'test_collision.pcf',
|
||
|
|
'test_distancealpha.pcf',
|
||
|
|
'ui_fx.pcf',
|
||
|
|
'vehicle_fx.pcf',
|
||
|
|
'water_fx.pcf',
|
||
|
|
'weapon_fx.pcf',
|
||
|
|
'witch_fx.pcf'
|
||
|
|
}
|
||
|
|
|
||
|
|
pac.BlacklistedParticleSystems = {}
|
||
|
|
|
||
|
|
for i, val in ipairs(tohash) do
|
||
|
|
pac.BlacklistedParticleSystems[val] = true
|
||
|
|
end
|
||
|
|
end
|