├── CHANGELOG.md ├── LICENSE ├── README.md ├── client ├── cl_bridgegates.lua ├── cl_bridgesequence.lua ├── cl_exports.lua ├── cl_movebridge.lua ├── cl_notifications.lua ├── cl_spawnbridge.lua └── cl_trafficlights.lua ├── config.lua ├── fxmanifest.lua ├── server ├── sv_exports.lua ├── sv_main.lua └── sv_state.lua └── stream ├── [addon] ├── [path] │ └── nodes368.ynd ├── [ymaps] │ ├── _manifest.ymf │ ├── drawbridge_cams.ymap │ ├── drawbridge_distantlights.ymap │ ├── drawbridge_lodlights.ymap │ ├── drawbridge_traffic_props.ymap │ └── drawbridge_trafficlights_new.ymap ├── car_drawbridge.ydr ├── drawbridge.ytyp ├── prop_bridge_barrier_gate_01.yft ├── prop_bridge_barrier_gate_01x.yft ├── prop_sign_drawbridge.yft ├── prop_traffic_light_block.yft ├── prop_traffic_light_small_left.yft ├── prop_traffic_light_small_right.yft ├── prop_traffic_warning_light_a.yft ├── prop_traffic_warning_light_b.yft └── train_drawbridge.ydr └── [removed] ├── [ymap] ├── [ymap2] │ ├── distlodlights_medium011.ymap │ ├── distlodlights_medium018.ymap │ ├── distlodlights_small010.ymap │ ├── lodlights_medium011.ymap │ ├── lodlights_medium018.ymap │ ├── lodlights_small010.ymap │ ├── po1_04.ymap │ ├── po1_04_long_0.ymap │ ├── po1_04_strm_2.ymap │ ├── po1_09.ymap │ ├── po1_09_strm_0.ymap │ ├── po1_09_strm_5.ymap │ ├── po1_rd_strm_0.ymap │ ├── sc1_rd_critical_2.ymap │ └── sc1_rd_strm_8.ymap ├── hei_po1_04.ymap ├── hei_po1_04_critical_0.ymap ├── hei_po1_04_long_0.ymap ├── hei_po1_04_strm_2.ymap ├── hei_po1_09.ymap ├── hei_po1_09_strm_0.ymap ├── hei_po1_09_strm_5.ymap ├── hei_po1_rd_strm_0.ymap ├── lr_sc1_rd_critical_2.ymap ├── lr_sc1_rd_strm_8.ymap ├── vw_distlodlights_medium011.ymap ├── vw_distlodlights_medium018.ymap ├── vw_distlodlights_small011.ymap ├── vw_lodlights_medium011.ymap ├── vw_lodlights_medium018.ymap └── vw_lodlights_small011.ymap ├── po1_04_0.ybn ├── po1_04_bridge_m.ydr ├── po1_09_00_slod1_children.ydd ├── po1_09_10.ybn ├── po1_09_8.ybn ├── po1_09_brig_m.ydr ├── po1_09_brig_m_glue.ydr ├── po1_09_decalb03.ydr ├── po1_09_structure+hi.ytd ├── po1_09_structure.ytd ├── po1_rd_gg2+hidr.ytd ├── po1_rd_gg2.ydr ├── po1_rd_road25+hidr.ytd └── po1_rd_road25.ydr /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/README.md -------------------------------------------------------------------------------- /client/cl_bridgegates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/client/cl_bridgegates.lua -------------------------------------------------------------------------------- /client/cl_bridgesequence.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/client/cl_bridgesequence.lua -------------------------------------------------------------------------------- /client/cl_exports.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/client/cl_exports.lua -------------------------------------------------------------------------------- /client/cl_movebridge.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/client/cl_movebridge.lua -------------------------------------------------------------------------------- /client/cl_notifications.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/client/cl_notifications.lua -------------------------------------------------------------------------------- /client/cl_spawnbridge.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/client/cl_spawnbridge.lua -------------------------------------------------------------------------------- /client/cl_trafficlights.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/client/cl_trafficlights.lua -------------------------------------------------------------------------------- /config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/config.lua -------------------------------------------------------------------------------- /fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/fxmanifest.lua -------------------------------------------------------------------------------- /server/sv_exports.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/server/sv_exports.lua -------------------------------------------------------------------------------- /server/sv_main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/server/sv_main.lua -------------------------------------------------------------------------------- /server/sv_state.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/server/sv_state.lua -------------------------------------------------------------------------------- /stream/[addon]/[path]/nodes368.ynd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[addon]/[path]/nodes368.ynd -------------------------------------------------------------------------------- /stream/[addon]/[ymaps]/_manifest.ymf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[addon]/[ymaps]/_manifest.ymf -------------------------------------------------------------------------------- /stream/[addon]/[ymaps]/drawbridge_cams.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[addon]/[ymaps]/drawbridge_cams.ymap -------------------------------------------------------------------------------- /stream/[addon]/[ymaps]/drawbridge_distantlights.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[addon]/[ymaps]/drawbridge_distantlights.ymap -------------------------------------------------------------------------------- /stream/[addon]/[ymaps]/drawbridge_lodlights.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[addon]/[ymaps]/drawbridge_lodlights.ymap -------------------------------------------------------------------------------- /stream/[addon]/[ymaps]/drawbridge_traffic_props.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[addon]/[ymaps]/drawbridge_traffic_props.ymap -------------------------------------------------------------------------------- /stream/[addon]/[ymaps]/drawbridge_trafficlights_new.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[addon]/[ymaps]/drawbridge_trafficlights_new.ymap -------------------------------------------------------------------------------- /stream/[addon]/car_drawbridge.ydr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[addon]/car_drawbridge.ydr -------------------------------------------------------------------------------- /stream/[addon]/drawbridge.ytyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[addon]/drawbridge.ytyp -------------------------------------------------------------------------------- /stream/[addon]/prop_bridge_barrier_gate_01.yft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[addon]/prop_bridge_barrier_gate_01.yft -------------------------------------------------------------------------------- /stream/[addon]/prop_bridge_barrier_gate_01x.yft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[addon]/prop_bridge_barrier_gate_01x.yft -------------------------------------------------------------------------------- /stream/[addon]/prop_sign_drawbridge.yft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[addon]/prop_sign_drawbridge.yft -------------------------------------------------------------------------------- /stream/[addon]/prop_traffic_light_block.yft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[addon]/prop_traffic_light_block.yft -------------------------------------------------------------------------------- /stream/[addon]/prop_traffic_light_small_left.yft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[addon]/prop_traffic_light_small_left.yft -------------------------------------------------------------------------------- /stream/[addon]/prop_traffic_light_small_right.yft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[addon]/prop_traffic_light_small_right.yft -------------------------------------------------------------------------------- /stream/[addon]/prop_traffic_warning_light_a.yft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[addon]/prop_traffic_warning_light_a.yft -------------------------------------------------------------------------------- /stream/[addon]/prop_traffic_warning_light_b.yft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[addon]/prop_traffic_warning_light_b.yft -------------------------------------------------------------------------------- /stream/[addon]/train_drawbridge.ydr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[addon]/train_drawbridge.ydr -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/[ymap2]/distlodlights_medium011.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/[ymap2]/distlodlights_medium011.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/[ymap2]/distlodlights_medium018.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/[ymap2]/distlodlights_medium018.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/[ymap2]/distlodlights_small010.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/[ymap2]/distlodlights_small010.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/[ymap2]/lodlights_medium011.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/[ymap2]/lodlights_medium011.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/[ymap2]/lodlights_medium018.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/[ymap2]/lodlights_medium018.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/[ymap2]/lodlights_small010.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/[ymap2]/lodlights_small010.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/[ymap2]/po1_04.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/[ymap2]/po1_04.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/[ymap2]/po1_04_long_0.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/[ymap2]/po1_04_long_0.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/[ymap2]/po1_04_strm_2.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/[ymap2]/po1_04_strm_2.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/[ymap2]/po1_09.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/[ymap2]/po1_09.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/[ymap2]/po1_09_strm_0.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/[ymap2]/po1_09_strm_0.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/[ymap2]/po1_09_strm_5.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/[ymap2]/po1_09_strm_5.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/[ymap2]/po1_rd_strm_0.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/[ymap2]/po1_rd_strm_0.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/[ymap2]/sc1_rd_critical_2.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/[ymap2]/sc1_rd_critical_2.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/[ymap2]/sc1_rd_strm_8.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/[ymap2]/sc1_rd_strm_8.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/hei_po1_04.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/hei_po1_04.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/hei_po1_04_critical_0.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/hei_po1_04_critical_0.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/hei_po1_04_long_0.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/hei_po1_04_long_0.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/hei_po1_04_strm_2.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/hei_po1_04_strm_2.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/hei_po1_09.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/hei_po1_09.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/hei_po1_09_strm_0.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/hei_po1_09_strm_0.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/hei_po1_09_strm_5.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/hei_po1_09_strm_5.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/hei_po1_rd_strm_0.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/hei_po1_rd_strm_0.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/lr_sc1_rd_critical_2.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/lr_sc1_rd_critical_2.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/lr_sc1_rd_strm_8.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/lr_sc1_rd_strm_8.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/vw_distlodlights_medium011.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/vw_distlodlights_medium011.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/vw_distlodlights_medium018.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/vw_distlodlights_medium018.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/vw_distlodlights_small011.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/vw_distlodlights_small011.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/vw_lodlights_medium011.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/vw_lodlights_medium011.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/vw_lodlights_medium018.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/vw_lodlights_medium018.ymap -------------------------------------------------------------------------------- /stream/[removed]/[ymap]/vw_lodlights_small011.ymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/[ymap]/vw_lodlights_small011.ymap -------------------------------------------------------------------------------- /stream/[removed]/po1_04_0.ybn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/po1_04_0.ybn -------------------------------------------------------------------------------- /stream/[removed]/po1_04_bridge_m.ydr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/po1_04_bridge_m.ydr -------------------------------------------------------------------------------- /stream/[removed]/po1_09_00_slod1_children.ydd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/po1_09_00_slod1_children.ydd -------------------------------------------------------------------------------- /stream/[removed]/po1_09_10.ybn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/po1_09_10.ybn -------------------------------------------------------------------------------- /stream/[removed]/po1_09_8.ybn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/po1_09_8.ybn -------------------------------------------------------------------------------- /stream/[removed]/po1_09_brig_m.ydr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/po1_09_brig_m.ydr -------------------------------------------------------------------------------- /stream/[removed]/po1_09_brig_m_glue.ydr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/po1_09_brig_m_glue.ydr -------------------------------------------------------------------------------- /stream/[removed]/po1_09_decalb03.ydr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/po1_09_decalb03.ydr -------------------------------------------------------------------------------- /stream/[removed]/po1_09_structure+hi.ytd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/po1_09_structure+hi.ytd -------------------------------------------------------------------------------- /stream/[removed]/po1_09_structure.ytd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/po1_09_structure.ytd -------------------------------------------------------------------------------- /stream/[removed]/po1_rd_gg2+hidr.ytd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/po1_rd_gg2+hidr.ytd -------------------------------------------------------------------------------- /stream/[removed]/po1_rd_gg2.ydr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/po1_rd_gg2.ydr -------------------------------------------------------------------------------- /stream/[removed]/po1_rd_road25+hidr.ytd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/po1_rd_road25+hidr.ytd -------------------------------------------------------------------------------- /stream/[removed]/po1_rd_road25.ydr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaysigx/Drawbridge/HEAD/stream/[removed]/po1_rd_road25.ydr --------------------------------------------------------------------------------