├── .github └── workflows │ └── Continuous Integration.yml ├── .travis.yml ├── README.md ├── addons └── sourcemod │ ├── configs │ └── saxton_hale │ │ ├── boss_cfgs │ │ ├── cbs.cfg │ │ ├── christian_brutal_sniper.cfg │ │ ├── easter_bunny.cfg │ │ ├── hhh_jr.cfg │ │ ├── plague_doctor.cfg │ │ ├── saxton_hale.cfg │ │ ├── template_boss.cfg │ │ └── vagineer.cfg │ │ ├── saxton_hale_doors.cfg │ │ ├── saxton_hale_maps.cfg │ │ ├── saxton_spawn_teleport.cfg │ │ └── vsh2.cfg │ ├── plugins │ ├── freak_fortress_2.smx │ ├── freak_fortress_2_old.smx │ ├── saxtonhale.smx │ ├── vsh2.smx │ └── vsh2boss_plaguedoctor.smx │ ├── scripting │ ├── freak_fortress_2.sp │ ├── freak_fortress_2_old.sp │ ├── freaks │ │ ├── ff2_vsh2defaults.sp │ │ └── vsh2ff2_sample.cfg │ ├── include │ │ ├── cfgmap.inc │ │ ├── ecs_helper.inc │ │ ├── freak_fortress_2.inc │ │ ├── morecolors.inc │ │ ├── steamtools.inc │ │ ├── tf2items_stocks.inc │ │ └── vsh2.inc │ ├── modules │ │ ├── base.sp │ │ ├── bosses.sp │ │ ├── bosses │ │ │ ├── bunny.sp │ │ │ ├── cbs.sp │ │ │ ├── hale.sp │ │ │ ├── hhh.sp │ │ │ ├── plague.sp │ │ │ └── vagineer.sp │ │ ├── commands.sp │ │ ├── events.sp │ │ ├── ff2 │ │ │ ├── backwards_compatibility.sp │ │ │ ├── character.sp │ │ │ ├── console.sp │ │ │ ├── extras │ │ │ │ ├── multilives.sp │ │ │ │ └── nopack_pickup.sp │ │ │ ├── formula_parser.sp │ │ │ ├── forwards.sp │ │ │ ├── gamemode.sp │ │ │ ├── handler.sp │ │ │ ├── natives.sp │ │ │ ├── player.sp │ │ │ ├── sound_list.sp │ │ │ ├── subplugins.sp │ │ │ ├── utils.sp │ │ │ └── vsh2_bridge.sp │ │ ├── forwards.sp │ │ ├── gamemode.sp │ │ ├── handler.sp │ │ ├── natives.sp │ │ └── stocks.inc │ ├── saxtonhale.sp │ ├── vsh2.sp │ ├── vsh2_nativestest.sp │ ├── vsh2boss_plaguedoctor.sp │ ├── vsh2boss_template.sp │ └── vsh2bosses_default.sp │ └── translations │ ├── chi │ └── vsh2.phrases.txt │ └── vsh2.phrases.txt ├── docs ├── API-internal.md ├── API.md ├── VSH2-System-Diagram.png ├── VSH2_SystemBlockDiagram_1.jpg ├── adding-music-to-bosses-tut.md ├── cfgmap-tut.md ├── creating-or-adding-bosses-tut.md ├── modifying-boss-health-tut.md ├── system-design.md ├── vsh2-arch.svg ├── vsh2-architecture.png ├── vsh2-file-structure.png └── vsh2-file-structure.svg ├── materials └── models │ ├── player │ ├── easter_demo │ │ ├── demoman_head_red.vmt │ │ ├── easter_body.vmt │ │ ├── easter_body.vtf │ │ ├── easter_rabbit.vmt │ │ ├── easter_rabbit.vtf │ │ ├── easter_rabbit_normal.vtf │ │ └── eyeball_r.vmt │ ├── hwm_saxton_hale │ │ ├── hwm │ │ │ ├── saxton_head.vmt │ │ │ ├── saxton_head.vtf │ │ │ ├── saxton_head_exponent.vtf │ │ │ ├── saxton_head_normal.vtf │ │ │ ├── saxton_head_saxxy.vmt │ │ │ ├── saxton_head_saxxy.vtf │ │ │ ├── tongue.vmt │ │ │ └── tongue.vtf │ │ ├── saxton_belt.vmt │ │ ├── saxton_belt_high.vmt │ │ ├── saxton_belt_high.vtf │ │ ├── saxton_belt_high_normal.vtf │ │ ├── saxton_body.vmt │ │ ├── saxton_body.vtf │ │ ├── saxton_body_alt.vmt │ │ ├── saxton_body_exp.vtf │ │ ├── saxton_body_normal.vtf │ │ ├── saxton_body_saxxy.vmt │ │ ├── saxton_body_saxxy.vtf │ │ ├── saxton_hat_color.vmt │ │ ├── saxton_hat_color.vtf │ │ ├── saxton_hat_saxxy.vmt │ │ ├── saxton_hat_saxxy.vtf │ │ ├── shades │ │ │ ├── eye-extra.vtf │ │ │ ├── eye-saxxy.vtf │ │ │ ├── eye.vtf │ │ │ ├── eyeball_l.vmt │ │ │ ├── eyeball_r.vmt │ │ │ ├── eyeball_saxxy.vmt │ │ │ ├── inv.vmt │ │ │ └── null.vtf │ │ └── tongue_saxxy.vmt │ ├── saxton_hale │ │ ├── eye.vmt │ │ ├── eye.vtf │ │ ├── eyeball_l.vmt │ │ ├── eyeball_r.vmt │ │ ├── hale_body.vmt │ │ ├── hale_body.vtf │ │ ├── hale_body_normal.vtf │ │ ├── hale_egg.vmt │ │ ├── hale_egg.vtf │ │ ├── hale_head.vmt │ │ ├── hale_head.vtf │ │ ├── hale_misc.vmt │ │ ├── hale_misc.vtf │ │ ├── hale_misc_normal.vtf │ │ ├── sniper_head.vtf │ │ ├── sniper_head_red.vmt │ │ ├── sniper_lens.vmt │ │ ├── sniper_lens.vtf │ │ ├── sniper_red.vmt │ │ └── sniper_red.vtf │ └── saxton_test4 │ │ ├── eyeball_l.vmt │ │ ├── eyeball_r.vmt │ │ ├── halebody.vmt │ │ ├── halebody.vtf │ │ ├── halebodyexponent.vtf │ │ ├── halegibs.vmt │ │ ├── halegibs.vtf │ │ ├── halehead.vmt │ │ ├── halehead.vtf │ │ ├── haleheadexponent.vtf │ │ ├── halenormal.vtf │ │ └── halephongmask.vtf │ └── props_easteregg │ ├── c_easteregg.vmt │ ├── c_easteregg.vtf │ └── c_easteregg_gold.vmt ├── models └── player │ ├── saxton_hale │ ├── cbs_v4.dx80.vtx │ ├── cbs_v4.dx90.vtx │ ├── cbs_v4.mdl │ ├── cbs_v4.phy │ ├── cbs_v4.sw.vtx │ ├── cbs_v4.vvd │ ├── easter_demo.dx80.vtx │ ├── easter_demo.dx90.vtx │ ├── easter_demo.mdl │ ├── easter_demo.phy │ ├── easter_demo.sw.vtx │ ├── easter_demo.vvd │ ├── hhh_jr_mk3.dx80.vtx │ ├── hhh_jr_mk3.dx90.vtx │ ├── hhh_jr_mk3.mdl │ ├── hhh_jr_mk3.sw.vtx │ ├── hhh_jr_mk3.vvd │ ├── saxton_hale.dx80.vtx │ ├── saxton_hale.dx90.vtx │ ├── saxton_hale.mdl │ ├── saxton_hale.sw.vtx │ ├── saxton_hale.vvd │ ├── vagineer_v134.dx80.vtx │ ├── vagineer_v134.dx90.vtx │ ├── vagineer_v134.mdl │ ├── vagineer_v134.sw.vtx │ ├── vagineer_v134.vvd │ ├── vagineer_v150.dx80.vtx │ ├── vagineer_v150.dx90.vtx │ ├── vagineer_v150.mdl │ ├── vagineer_v150.phy │ ├── vagineer_v150.sw.vtx │ ├── vagineer_v150.vvd │ ├── w_easteregg.dx80.vtx │ ├── w_easteregg.dx90.vtx │ ├── w_easteregg.mdl │ ├── w_easteregg.phy │ ├── w_easteregg.sw.vtx │ └── w_easteregg.vvd │ ├── saxton_hale_jungle_inferno │ ├── saxton_hale.dx80.vtx │ ├── saxton_hale.dx90.vtx │ ├── saxton_hale.mdl │ ├── saxton_hale.phy │ ├── saxton_hale.sw.vtx │ └── saxton_hale.vvd │ └── saxton_test4 │ ├── saxton_hale_test4.dx80.vtx │ ├── saxton_hale_test4.dx90.vtx │ ├── saxton_hale_test4.mdl │ ├── saxton_hale_test4.phy │ ├── saxton_hale_test4.sw.vtx │ └── saxton_hale_test4.vvd ├── sound └── saxton_hale │ ├── 9000.wav │ ├── lolwut_0.wav │ ├── lolwut_1.wav │ ├── lolwut_2.wav │ ├── lolwut_3.wav │ ├── lolwut_4.wav │ ├── lolwut_5.wav │ ├── saxton_hale_132_jump_1.wav │ ├── saxton_hale_132_jump_2.wav │ ├── saxton_hale_132_kill_demo.wav │ ├── saxton_hale_132_kill_engie_1.wav │ ├── saxton_hale_132_kill_engie_2.wav │ ├── saxton_hale_132_kill_heavy.wav │ ├── saxton_hale_132_kill_scout.wav │ ├── saxton_hale_132_kill_spie.wav │ ├── saxton_hale_132_kill_toy.wav │ ├── saxton_hale_132_kill_w_and_m1.wav │ ├── saxton_hale_132_kspree_1.wav │ ├── saxton_hale_132_kspree_2.wav │ ├── saxton_hale_132_last.wav │ ├── saxton_hale_132_start_1.wav │ ├── saxton_hale_132_start_2.wav │ ├── saxton_hale_132_start_3.wav │ ├── saxton_hale_132_start_4.wav │ ├── saxton_hale_132_start_5.wav │ ├── saxton_hale_132_stub_1.wav │ ├── saxton_hale_132_stub_2.wav │ ├── saxton_hale_132_stub_3.wav │ ├── saxton_hale_132_stub_4.wav │ ├── saxton_hale_responce_2.wav │ ├── saxton_hale_responce_3.wav │ ├── saxton_hale_responce_fail1.wav │ ├── saxton_hale_responce_fail2.wav │ ├── saxton_hale_responce_fail3.wav │ ├── saxton_hale_responce_jump1.wav │ ├── saxton_hale_responce_jump2.wav │ ├── saxton_hale_responce_kill_eggineer1.wav │ ├── saxton_hale_responce_kill_eggineer2.wav │ ├── saxton_hale_responce_kill_medic.wav │ ├── saxton_hale_responce_kill_sniper1.wav │ ├── saxton_hale_responce_kill_sniper2.wav │ ├── saxton_hale_responce_kill_spy1.wav │ ├── saxton_hale_responce_kill_spy2.wav │ ├── saxton_hale_responce_lastman1.wav │ ├── saxton_hale_responce_lastman2.wav │ ├── saxton_hale_responce_lastman3.wav │ ├── saxton_hale_responce_lastman4.wav │ ├── saxton_hale_responce_lastman5.wav │ ├── saxton_hale_responce_rage1.wav │ ├── saxton_hale_responce_rage2.wav │ ├── saxton_hale_responce_rage3.wav │ ├── saxton_hale_responce_rage4.wav │ ├── saxton_hale_responce_spree1.wav │ ├── saxton_hale_responce_spree2.wav │ ├── saxton_hale_responce_spree3.wav │ ├── saxton_hale_responce_spree4.wav │ ├── saxton_hale_responce_spree5.wav │ ├── saxton_hale_responce_start1.wav │ ├── saxton_hale_responce_start2.wav │ ├── saxton_hale_responce_start3.wav │ ├── saxton_hale_responce_start4.wav │ ├── saxton_hale_responce_start5.wav │ ├── saxton_hale_responce_win1.wav │ ├── saxton_hale_responce_win2.wav │ ├── the_millionaires_holiday.mp3 │ ├── vagineer_responce_fail_1.wav │ ├── vagineer_responce_fail_2.wav │ ├── vagineer_responce_intro.wav │ ├── vagineer_responce_jump_1.wav │ ├── vagineer_responce_jump_2.wav │ ├── vagineer_responce_rage_1.wav │ ├── vagineer_responce_rage_2.wav │ ├── vagineer_responce_taunt_1.wav │ ├── vagineer_responce_taunt_2.wav │ ├── vagineer_responce_taunt_3.wav │ ├── vagineer_responce_taunt_4.wav │ └── vagineer_responce_taunt_5.wav └── updater.txt /.github/workflows/Continuous Integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/.github/workflows/Continuous Integration.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/README.md -------------------------------------------------------------------------------- /addons/sourcemod/configs/saxton_hale/boss_cfgs/cbs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/configs/saxton_hale/boss_cfgs/cbs.cfg -------------------------------------------------------------------------------- /addons/sourcemod/configs/saxton_hale/boss_cfgs/christian_brutal_sniper.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/configs/saxton_hale/boss_cfgs/christian_brutal_sniper.cfg -------------------------------------------------------------------------------- /addons/sourcemod/configs/saxton_hale/boss_cfgs/easter_bunny.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/configs/saxton_hale/boss_cfgs/easter_bunny.cfg -------------------------------------------------------------------------------- /addons/sourcemod/configs/saxton_hale/boss_cfgs/hhh_jr.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/configs/saxton_hale/boss_cfgs/hhh_jr.cfg -------------------------------------------------------------------------------- /addons/sourcemod/configs/saxton_hale/boss_cfgs/plague_doctor.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/configs/saxton_hale/boss_cfgs/plague_doctor.cfg -------------------------------------------------------------------------------- /addons/sourcemod/configs/saxton_hale/boss_cfgs/saxton_hale.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/configs/saxton_hale/boss_cfgs/saxton_hale.cfg -------------------------------------------------------------------------------- /addons/sourcemod/configs/saxton_hale/boss_cfgs/template_boss.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/configs/saxton_hale/boss_cfgs/template_boss.cfg -------------------------------------------------------------------------------- /addons/sourcemod/configs/saxton_hale/boss_cfgs/vagineer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/configs/saxton_hale/boss_cfgs/vagineer.cfg -------------------------------------------------------------------------------- /addons/sourcemod/configs/saxton_hale/saxton_hale_doors.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/configs/saxton_hale/saxton_hale_doors.cfg -------------------------------------------------------------------------------- /addons/sourcemod/configs/saxton_hale/saxton_hale_maps.cfg: -------------------------------------------------------------------------------- 1 | arena_ 2 | vsh_ 3 | dr_ 4 | -------------------------------------------------------------------------------- /addons/sourcemod/configs/saxton_hale/saxton_spawn_teleport.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/configs/saxton_hale/saxton_spawn_teleport.cfg -------------------------------------------------------------------------------- /addons/sourcemod/configs/saxton_hale/vsh2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/configs/saxton_hale/vsh2.cfg -------------------------------------------------------------------------------- /addons/sourcemod/plugins/freak_fortress_2.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/plugins/freak_fortress_2.smx -------------------------------------------------------------------------------- /addons/sourcemod/plugins/freak_fortress_2_old.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/plugins/freak_fortress_2_old.smx -------------------------------------------------------------------------------- /addons/sourcemod/plugins/saxtonhale.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/plugins/saxtonhale.smx -------------------------------------------------------------------------------- /addons/sourcemod/plugins/vsh2.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/plugins/vsh2.smx -------------------------------------------------------------------------------- /addons/sourcemod/plugins/vsh2boss_plaguedoctor.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/plugins/vsh2boss_plaguedoctor.smx -------------------------------------------------------------------------------- /addons/sourcemod/scripting/freak_fortress_2.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/freak_fortress_2.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/freak_fortress_2_old.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/freak_fortress_2_old.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/freaks/ff2_vsh2defaults.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/freaks/ff2_vsh2defaults.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/freaks/vsh2ff2_sample.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/freaks/vsh2ff2_sample.cfg -------------------------------------------------------------------------------- /addons/sourcemod/scripting/include/cfgmap.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/include/cfgmap.inc -------------------------------------------------------------------------------- /addons/sourcemod/scripting/include/ecs_helper.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/include/ecs_helper.inc -------------------------------------------------------------------------------- /addons/sourcemod/scripting/include/freak_fortress_2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/include/freak_fortress_2.inc -------------------------------------------------------------------------------- /addons/sourcemod/scripting/include/morecolors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/include/morecolors.inc -------------------------------------------------------------------------------- /addons/sourcemod/scripting/include/steamtools.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/include/steamtools.inc -------------------------------------------------------------------------------- /addons/sourcemod/scripting/include/tf2items_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/include/tf2items_stocks.inc -------------------------------------------------------------------------------- /addons/sourcemod/scripting/include/vsh2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/include/vsh2.inc -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/base.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/base.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/bosses.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/bosses.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/bosses/bunny.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/bosses/bunny.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/bosses/cbs.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/bosses/cbs.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/bosses/hale.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/bosses/hale.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/bosses/hhh.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/bosses/hhh.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/bosses/plague.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/bosses/plague.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/bosses/vagineer.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/bosses/vagineer.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/commands.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/commands.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/events.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/events.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/ff2/backwards_compatibility.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/ff2/backwards_compatibility.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/ff2/character.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/ff2/character.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/ff2/console.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/ff2/console.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/ff2/extras/multilives.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/ff2/extras/multilives.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/ff2/extras/nopack_pickup.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/ff2/extras/nopack_pickup.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/ff2/formula_parser.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/ff2/formula_parser.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/ff2/forwards.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/ff2/forwards.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/ff2/gamemode.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/ff2/gamemode.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/ff2/handler.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/ff2/handler.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/ff2/natives.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/ff2/natives.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/ff2/player.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/ff2/player.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/ff2/sound_list.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/ff2/sound_list.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/ff2/subplugins.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/ff2/subplugins.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/ff2/utils.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/ff2/utils.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/ff2/vsh2_bridge.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/ff2/vsh2_bridge.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/forwards.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/forwards.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/gamemode.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/gamemode.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/handler.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/handler.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/natives.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/natives.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/modules/stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/modules/stocks.inc -------------------------------------------------------------------------------- /addons/sourcemod/scripting/saxtonhale.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/saxtonhale.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/vsh2.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/vsh2.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/vsh2_nativestest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/vsh2_nativestest.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/vsh2boss_plaguedoctor.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/vsh2boss_plaguedoctor.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/vsh2boss_template.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/vsh2boss_template.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/vsh2bosses_default.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/scripting/vsh2bosses_default.sp -------------------------------------------------------------------------------- /addons/sourcemod/translations/chi/vsh2.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/translations/chi/vsh2.phrases.txt -------------------------------------------------------------------------------- /addons/sourcemod/translations/vsh2.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/addons/sourcemod/translations/vsh2.phrases.txt -------------------------------------------------------------------------------- /docs/API-internal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/docs/API-internal.md -------------------------------------------------------------------------------- /docs/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/docs/API.md -------------------------------------------------------------------------------- /docs/VSH2-System-Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/docs/VSH2-System-Diagram.png -------------------------------------------------------------------------------- /docs/VSH2_SystemBlockDiagram_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/docs/VSH2_SystemBlockDiagram_1.jpg -------------------------------------------------------------------------------- /docs/adding-music-to-bosses-tut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/docs/adding-music-to-bosses-tut.md -------------------------------------------------------------------------------- /docs/cfgmap-tut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/docs/cfgmap-tut.md -------------------------------------------------------------------------------- /docs/creating-or-adding-bosses-tut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/docs/creating-or-adding-bosses-tut.md -------------------------------------------------------------------------------- /docs/modifying-boss-health-tut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/docs/modifying-boss-health-tut.md -------------------------------------------------------------------------------- /docs/system-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/docs/system-design.md -------------------------------------------------------------------------------- /docs/vsh2-arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/docs/vsh2-arch.svg -------------------------------------------------------------------------------- /docs/vsh2-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/docs/vsh2-architecture.png -------------------------------------------------------------------------------- /docs/vsh2-file-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/docs/vsh2-file-structure.png -------------------------------------------------------------------------------- /docs/vsh2-file-structure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/docs/vsh2-file-structure.svg -------------------------------------------------------------------------------- /materials/models/player/easter_demo/demoman_head_red.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/easter_demo/demoman_head_red.vmt -------------------------------------------------------------------------------- /materials/models/player/easter_demo/easter_body.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/easter_demo/easter_body.vmt -------------------------------------------------------------------------------- /materials/models/player/easter_demo/easter_body.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/easter_demo/easter_body.vtf -------------------------------------------------------------------------------- /materials/models/player/easter_demo/easter_rabbit.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/easter_demo/easter_rabbit.vmt -------------------------------------------------------------------------------- /materials/models/player/easter_demo/easter_rabbit.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/easter_demo/easter_rabbit.vtf -------------------------------------------------------------------------------- /materials/models/player/easter_demo/easter_rabbit_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/easter_demo/easter_rabbit_normal.vtf -------------------------------------------------------------------------------- /materials/models/player/easter_demo/eyeball_r.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/easter_demo/eyeball_r.vmt -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/hwm/saxton_head.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/hwm/saxton_head.vmt -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/hwm/saxton_head.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/hwm/saxton_head.vtf -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/hwm/saxton_head_exponent.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/hwm/saxton_head_exponent.vtf -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/hwm/saxton_head_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/hwm/saxton_head_normal.vtf -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/hwm/saxton_head_saxxy.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/hwm/saxton_head_saxxy.vmt -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/hwm/saxton_head_saxxy.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/hwm/saxton_head_saxxy.vtf -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/hwm/tongue.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/hwm/tongue.vmt -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/hwm/tongue.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/hwm/tongue.vtf -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/saxton_belt.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/saxton_belt.vmt -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/saxton_belt_high.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/saxton_belt_high.vmt -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/saxton_belt_high.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/saxton_belt_high.vtf -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/saxton_belt_high_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/saxton_belt_high_normal.vtf -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/saxton_body.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/saxton_body.vmt -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/saxton_body.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/saxton_body.vtf -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/saxton_body_alt.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/saxton_body_alt.vmt -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/saxton_body_exp.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/saxton_body_exp.vtf -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/saxton_body_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/saxton_body_normal.vtf -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/saxton_body_saxxy.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/saxton_body_saxxy.vmt -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/saxton_body_saxxy.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/saxton_body_saxxy.vtf -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/saxton_hat_color.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/saxton_hat_color.vmt -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/saxton_hat_color.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/saxton_hat_color.vtf -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/saxton_hat_saxxy.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/saxton_hat_saxxy.vmt -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/saxton_hat_saxxy.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/saxton_hat_saxxy.vtf -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/shades/eye-extra.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/shades/eye-extra.vtf -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/shades/eye-saxxy.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/shades/eye-saxxy.vtf -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/shades/eye.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/shades/eye.vtf -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/shades/eyeball_l.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/shades/eyeball_l.vmt -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/shades/eyeball_r.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/shades/eyeball_r.vmt -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/shades/eyeball_saxxy.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/shades/eyeball_saxxy.vmt -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/shades/inv.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/shades/inv.vmt -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/shades/null.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/shades/null.vtf -------------------------------------------------------------------------------- /materials/models/player/hwm_saxton_hale/tongue_saxxy.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/hwm_saxton_hale/tongue_saxxy.vmt -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/eye.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/eye.vmt -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/eye.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/eye.vtf -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/eyeball_l.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/eyeball_l.vmt -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/eyeball_r.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/eyeball_r.vmt -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/hale_body.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/hale_body.vmt -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/hale_body.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/hale_body.vtf -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/hale_body_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/hale_body_normal.vtf -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/hale_egg.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/hale_egg.vmt -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/hale_egg.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/hale_egg.vtf -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/hale_head.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/hale_head.vmt -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/hale_head.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/hale_head.vtf -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/hale_misc.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/hale_misc.vmt -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/hale_misc.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/hale_misc.vtf -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/hale_misc_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/hale_misc_normal.vtf -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/sniper_head.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/sniper_head.vtf -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/sniper_head_red.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/sniper_head_red.vmt -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/sniper_lens.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/sniper_lens.vmt -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/sniper_lens.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/sniper_lens.vtf -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/sniper_red.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/sniper_red.vmt -------------------------------------------------------------------------------- /materials/models/player/saxton_hale/sniper_red.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_hale/sniper_red.vtf -------------------------------------------------------------------------------- /materials/models/player/saxton_test4/eyeball_l.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_test4/eyeball_l.vmt -------------------------------------------------------------------------------- /materials/models/player/saxton_test4/eyeball_r.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_test4/eyeball_r.vmt -------------------------------------------------------------------------------- /materials/models/player/saxton_test4/halebody.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_test4/halebody.vmt -------------------------------------------------------------------------------- /materials/models/player/saxton_test4/halebody.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_test4/halebody.vtf -------------------------------------------------------------------------------- /materials/models/player/saxton_test4/halebodyexponent.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_test4/halebodyexponent.vtf -------------------------------------------------------------------------------- /materials/models/player/saxton_test4/halegibs.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_test4/halegibs.vmt -------------------------------------------------------------------------------- /materials/models/player/saxton_test4/halegibs.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_test4/halegibs.vtf -------------------------------------------------------------------------------- /materials/models/player/saxton_test4/halehead.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_test4/halehead.vmt -------------------------------------------------------------------------------- /materials/models/player/saxton_test4/halehead.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_test4/halehead.vtf -------------------------------------------------------------------------------- /materials/models/player/saxton_test4/haleheadexponent.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_test4/haleheadexponent.vtf -------------------------------------------------------------------------------- /materials/models/player/saxton_test4/halenormal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_test4/halenormal.vtf -------------------------------------------------------------------------------- /materials/models/player/saxton_test4/halephongmask.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/player/saxton_test4/halephongmask.vtf -------------------------------------------------------------------------------- /materials/models/props_easteregg/c_easteregg.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/props_easteregg/c_easteregg.vmt -------------------------------------------------------------------------------- /materials/models/props_easteregg/c_easteregg.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/props_easteregg/c_easteregg.vtf -------------------------------------------------------------------------------- /materials/models/props_easteregg/c_easteregg_gold.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/materials/models/props_easteregg/c_easteregg_gold.vmt -------------------------------------------------------------------------------- /models/player/saxton_hale/cbs_v4.dx80.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/cbs_v4.dx80.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/cbs_v4.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/cbs_v4.dx90.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/cbs_v4.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/cbs_v4.mdl -------------------------------------------------------------------------------- /models/player/saxton_hale/cbs_v4.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/cbs_v4.phy -------------------------------------------------------------------------------- /models/player/saxton_hale/cbs_v4.sw.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/cbs_v4.sw.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/cbs_v4.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/cbs_v4.vvd -------------------------------------------------------------------------------- /models/player/saxton_hale/easter_demo.dx80.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/easter_demo.dx80.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/easter_demo.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/easter_demo.dx90.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/easter_demo.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/easter_demo.mdl -------------------------------------------------------------------------------- /models/player/saxton_hale/easter_demo.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/easter_demo.phy -------------------------------------------------------------------------------- /models/player/saxton_hale/easter_demo.sw.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/easter_demo.sw.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/easter_demo.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/easter_demo.vvd -------------------------------------------------------------------------------- /models/player/saxton_hale/hhh_jr_mk3.dx80.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/hhh_jr_mk3.dx80.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/hhh_jr_mk3.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/hhh_jr_mk3.dx90.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/hhh_jr_mk3.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/hhh_jr_mk3.mdl -------------------------------------------------------------------------------- /models/player/saxton_hale/hhh_jr_mk3.sw.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/hhh_jr_mk3.sw.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/hhh_jr_mk3.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/hhh_jr_mk3.vvd -------------------------------------------------------------------------------- /models/player/saxton_hale/saxton_hale.dx80.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/saxton_hale.dx80.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/saxton_hale.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/saxton_hale.dx90.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/saxton_hale.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/saxton_hale.mdl -------------------------------------------------------------------------------- /models/player/saxton_hale/saxton_hale.sw.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/saxton_hale.sw.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/saxton_hale.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/saxton_hale.vvd -------------------------------------------------------------------------------- /models/player/saxton_hale/vagineer_v134.dx80.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/vagineer_v134.dx80.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/vagineer_v134.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/vagineer_v134.dx90.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/vagineer_v134.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/vagineer_v134.mdl -------------------------------------------------------------------------------- /models/player/saxton_hale/vagineer_v134.sw.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/vagineer_v134.sw.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/vagineer_v134.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/vagineer_v134.vvd -------------------------------------------------------------------------------- /models/player/saxton_hale/vagineer_v150.dx80.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/vagineer_v150.dx80.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/vagineer_v150.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/vagineer_v150.dx90.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/vagineer_v150.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/vagineer_v150.mdl -------------------------------------------------------------------------------- /models/player/saxton_hale/vagineer_v150.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/vagineer_v150.phy -------------------------------------------------------------------------------- /models/player/saxton_hale/vagineer_v150.sw.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/vagineer_v150.sw.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/vagineer_v150.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/vagineer_v150.vvd -------------------------------------------------------------------------------- /models/player/saxton_hale/w_easteregg.dx80.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/w_easteregg.dx80.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/w_easteregg.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/w_easteregg.dx90.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/w_easteregg.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/w_easteregg.mdl -------------------------------------------------------------------------------- /models/player/saxton_hale/w_easteregg.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/w_easteregg.phy -------------------------------------------------------------------------------- /models/player/saxton_hale/w_easteregg.sw.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/w_easteregg.sw.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale/w_easteregg.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale/w_easteregg.vvd -------------------------------------------------------------------------------- /models/player/saxton_hale_jungle_inferno/saxton_hale.dx80.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale_jungle_inferno/saxton_hale.dx80.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale_jungle_inferno/saxton_hale.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale_jungle_inferno/saxton_hale.dx90.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale_jungle_inferno/saxton_hale.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale_jungle_inferno/saxton_hale.mdl -------------------------------------------------------------------------------- /models/player/saxton_hale_jungle_inferno/saxton_hale.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale_jungle_inferno/saxton_hale.phy -------------------------------------------------------------------------------- /models/player/saxton_hale_jungle_inferno/saxton_hale.sw.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale_jungle_inferno/saxton_hale.sw.vtx -------------------------------------------------------------------------------- /models/player/saxton_hale_jungle_inferno/saxton_hale.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_hale_jungle_inferno/saxton_hale.vvd -------------------------------------------------------------------------------- /models/player/saxton_test4/saxton_hale_test4.dx80.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_test4/saxton_hale_test4.dx80.vtx -------------------------------------------------------------------------------- /models/player/saxton_test4/saxton_hale_test4.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_test4/saxton_hale_test4.dx90.vtx -------------------------------------------------------------------------------- /models/player/saxton_test4/saxton_hale_test4.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_test4/saxton_hale_test4.mdl -------------------------------------------------------------------------------- /models/player/saxton_test4/saxton_hale_test4.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_test4/saxton_hale_test4.phy -------------------------------------------------------------------------------- /models/player/saxton_test4/saxton_hale_test4.sw.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_test4/saxton_hale_test4.sw.vtx -------------------------------------------------------------------------------- /models/player/saxton_test4/saxton_hale_test4.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/models/player/saxton_test4/saxton_hale_test4.vvd -------------------------------------------------------------------------------- /sound/saxton_hale/9000.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/9000.wav -------------------------------------------------------------------------------- /sound/saxton_hale/lolwut_0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/lolwut_0.wav -------------------------------------------------------------------------------- /sound/saxton_hale/lolwut_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/lolwut_1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/lolwut_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/lolwut_2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/lolwut_3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/lolwut_3.wav -------------------------------------------------------------------------------- /sound/saxton_hale/lolwut_4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/lolwut_4.wav -------------------------------------------------------------------------------- /sound/saxton_hale/lolwut_5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/lolwut_5.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_jump_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_jump_1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_jump_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_jump_2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_kill_demo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_kill_demo.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_kill_engie_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_kill_engie_1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_kill_engie_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_kill_engie_2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_kill_heavy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_kill_heavy.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_kill_scout.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_kill_scout.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_kill_spie.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_kill_spie.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_kill_toy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_kill_toy.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_kill_w_and_m1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_kill_w_and_m1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_kspree_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_kspree_1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_kspree_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_kspree_2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_last.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_last.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_start_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_start_1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_start_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_start_2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_start_3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_start_3.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_start_4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_start_4.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_start_5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_start_5.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_stub_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_stub_1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_stub_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_stub_2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_stub_3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_stub_3.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_132_stub_4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_132_stub_4.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_3.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_fail1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_fail1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_fail2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_fail2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_fail3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_fail3.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_jump1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_jump1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_jump2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_jump2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_kill_eggineer1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_kill_eggineer1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_kill_eggineer2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_kill_eggineer2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_kill_medic.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_kill_medic.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_kill_sniper1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_kill_sniper1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_kill_sniper2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_kill_sniper2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_kill_spy1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_kill_spy1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_kill_spy2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_kill_spy2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_lastman1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_lastman1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_lastman2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_lastman2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_lastman3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_lastman3.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_lastman4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_lastman4.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_lastman5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_lastman5.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_rage1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_rage1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_rage2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_rage2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_rage3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_rage3.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_rage4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_rage4.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_spree1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_spree1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_spree2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_spree2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_spree3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_spree3.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_spree4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_spree4.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_spree5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_spree5.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_start1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_start1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_start2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_start2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_start3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_start3.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_start4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_start4.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_start5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_start5.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_win1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_win1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/saxton_hale_responce_win2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/saxton_hale_responce_win2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/the_millionaires_holiday.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/the_millionaires_holiday.mp3 -------------------------------------------------------------------------------- /sound/saxton_hale/vagineer_responce_fail_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/vagineer_responce_fail_1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/vagineer_responce_fail_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/vagineer_responce_fail_2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/vagineer_responce_intro.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/vagineer_responce_intro.wav -------------------------------------------------------------------------------- /sound/saxton_hale/vagineer_responce_jump_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/vagineer_responce_jump_1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/vagineer_responce_jump_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/vagineer_responce_jump_2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/vagineer_responce_rage_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/vagineer_responce_rage_1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/vagineer_responce_rage_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/vagineer_responce_rage_2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/vagineer_responce_taunt_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/vagineer_responce_taunt_1.wav -------------------------------------------------------------------------------- /sound/saxton_hale/vagineer_responce_taunt_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/vagineer_responce_taunt_2.wav -------------------------------------------------------------------------------- /sound/saxton_hale/vagineer_responce_taunt_3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/vagineer_responce_taunt_3.wav -------------------------------------------------------------------------------- /sound/saxton_hale/vagineer_responce_taunt_4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/vagineer_responce_taunt_4.wav -------------------------------------------------------------------------------- /sound/saxton_hale/vagineer_responce_taunt_5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/sound/saxton_hale/vagineer_responce_taunt_5.wav -------------------------------------------------------------------------------- /updater.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VSH2-Devs/Vs-Saxton-Hale-2/HEAD/updater.txt --------------------------------------------------------------------------------