mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-07 13:49:33 -05:00
Make separate .zone for each zm map
Rewrite build.bat to load .ff's separately Set build.bat vars as environment variables Remove unused assets from weapon files
This commit is contained in:
parent
f899df3c31
commit
c31c2b190a
100
build.bat
100
build.bat
@ -1,19 +1,91 @@
|
||||
@echo off
|
||||
|
||||
set GAME_BASE=D:\Games\Steam\steamapps\common\Call of Duty Black Ops II
|
||||
set OAT_BASE=C:\OpenAssetTools
|
||||
set MOD_BASE=%cd%
|
||||
"%OAT_BASE%\Linker.exe" ^
|
||||
--load "%GAME_BASE%\zone\all\zm_tomb.ff" ^
|
||||
--load "%GAME_BASE%\zone\all\zm_buried.ff" ^
|
||||
--load "%GAME_BASE%\zone\all\zm_prison.ff" ^
|
||||
--load "%GAME_BASE%\zone\all\zm_nuked.ff" ^
|
||||
--load "%GAME_BASE%\zone\all\common_patch_mp.ff" ^
|
||||
--load "%GAME_BASE%\zone\all\common_mp.ff" ^
|
||||
--load "%GAME_BASE%\zone\all\frontend.ff" ^
|
||||
--load "%OAT_GAME%\zone\english\en_code_post_gfx_mp.ff" ^
|
||||
--load "%OAT_GAME%\zone\all\common_patch_mp.ff" ^
|
||||
--load "%OAT_GAME%\zone\all\common_mp.ff" ^
|
||||
--load "%OAT_GAME%\zone\all\frontend_patch.ff" ^
|
||||
--load "%OAT_GAME%\zone\all\frontend.ff" ^
|
||||
--base-folder "%OAT_BASE%" ^
|
||||
--asset-search-path "%MOD_BASE%" ^
|
||||
--source-search-path "%MOD_BASE%\zone_source" ^
|
||||
--output-folder "%MOD_BASE%" mod
|
||||
--asset-search-path "%cd%" ^
|
||||
--source-search-path "%cd%\zone_source" ^
|
||||
--output-folder "%cd%\zone_source" common_mp
|
||||
|
||||
if %ERRORLEVEL% NEQ 0 pause
|
||||
if %ERRORLEVEL% NEQ 0 pause
|
||||
|
||||
"%OAT_BASE%\Linker.exe" ^
|
||||
--load "%OAT_GAME%\zone\all\zm_transit_patch.ff" ^
|
||||
--load "%OAT_GAME%\zone\all\zm_transit.ff" ^
|
||||
--base-folder "%OAT_BASE%" ^
|
||||
--asset-search-path "%cd%" ^
|
||||
--source-search-path "%cd%\zone_source" ^
|
||||
--output-folder "%cd%\zone_source" zm_transit
|
||||
|
||||
if %ERRORLEVEL% NEQ 0 pause
|
||||
|
||||
"%OAT_BASE%\Linker.exe" ^
|
||||
--load "%OAT_GAME%\zone\all\zm_nuked_patch.ff" ^
|
||||
--load "%OAT_GAME%\zone\all\zm_nuked.ff" ^
|
||||
--base-folder "%OAT_BASE%" ^
|
||||
--asset-search-path "%cd%" ^
|
||||
--source-search-path "%cd%\zone_source" ^
|
||||
--output-folder "%cd%\zone_source" zm_nuked
|
||||
|
||||
if %ERRORLEVEL% NEQ 0 pause
|
||||
|
||||
"%OAT_BASE%\Linker.exe" ^
|
||||
--load "%OAT_GAME%\zone\all\zm_highrise_patch.ff" ^
|
||||
--load "%OAT_GAME%\zone\all\zm_highrise.ff" ^
|
||||
--base-folder "%OAT_BASE%" ^
|
||||
--asset-search-path "%cd%" ^
|
||||
--source-search-path "%cd%\zone_source" ^
|
||||
--output-folder "%cd%\zone_source" zm_highrise
|
||||
|
||||
if %ERRORLEVEL% NEQ 0 pause
|
||||
|
||||
"%OAT_BASE%\Linker.exe" ^
|
||||
--load "%OAT_GAME%\zone\all\zm_prison_patch.ff" ^
|
||||
--load "%OAT_GAME%\zone\all\zm_prison.ff" ^
|
||||
--base-folder "%OAT_BASE%" ^
|
||||
--asset-search-path "%cd%" ^
|
||||
--source-search-path "%cd%\zone_source" ^
|
||||
--output-folder "%cd%\zone_source" zm_prison
|
||||
|
||||
if %ERRORLEVEL% NEQ 0 pause
|
||||
|
||||
"%OAT_BASE%\Linker.exe" ^
|
||||
--load "%OAT_GAME%\zone\all\zm_buried_patch.ff" ^
|
||||
--load "%OAT_GAME%\zone\all\zm_buried.ff" ^
|
||||
--base-folder "%OAT_BASE%" ^
|
||||
--asset-search-path "%cd%" ^
|
||||
--source-search-path "%cd%\zone_source" ^
|
||||
--output-folder "%cd%\zone_source" zm_buried
|
||||
|
||||
if %ERRORLEVEL% NEQ 0 pause
|
||||
|
||||
"%OAT_BASE%\Linker.exe" ^
|
||||
--load "%OAT_GAME%\zone\all\zm_tomb_patch.ff" ^
|
||||
--load "%OAT_GAME%\zone\all\zm_tomb.ff" ^
|
||||
--base-folder "%OAT_BASE%" ^
|
||||
--asset-search-path "%cd%" ^
|
||||
--source-search-path "%cd%\zone_source" ^
|
||||
--output-folder "%cd%\zone_source" zm_tomb
|
||||
|
||||
if %ERRORLEVEL% NEQ 0 pause
|
||||
|
||||
"%OAT_BASE%\Linker.exe" ^
|
||||
--load "%cd%\zone_source\common_mp.ff" ^
|
||||
--load "%cd%\zone_source\zm_transit.ff" ^
|
||||
--load "%cd%\zone_source\zm_nuked.ff" ^
|
||||
--load "%cd%\zone_source\zm_highrise.ff" ^
|
||||
--load "%cd%\zone_source\zm_prison.ff" ^
|
||||
--load "%cd%\zone_source\zm_buried.ff" ^
|
||||
--load "%cd%\zone_source\zm_tomb.ff" ^
|
||||
--base-folder "%OAT_BASE%" ^
|
||||
--asset-search-path "%cd%" ^
|
||||
--source-search-path "%cd%\zone_source" ^
|
||||
--output-folder "%cd%" mod
|
||||
|
||||
if %ERRORLEVEL% NEQ 0 pause
|
||||
|
||||
del %cd%\zone_source\*.ff
|
@ -35,7 +35,7 @@ init()
|
||||
precacheshader("waypoint_flag_capture");
|
||||
precacheshader("waypoint_return");
|
||||
precacheshader("waypoint_recon_artillery_strike");
|
||||
precacheshader("waypoint_time_bomb");
|
||||
precacheshader("waypoint_capture");
|
||||
precacheshader("waypoint_dogtags");
|
||||
precacheshader("compass_waypoint_contested");
|
||||
|
||||
@ -2732,7 +2732,7 @@ containment_think()
|
||||
else
|
||||
{
|
||||
player.obj_waypoint.color = (1, 0, 0);
|
||||
player containment_set_obj_waypoint_icon("waypoint_time_bomb");
|
||||
player containment_set_obj_waypoint_icon("waypoint_capture");
|
||||
}
|
||||
}
|
||||
|
||||
@ -2758,7 +2758,7 @@ containment_think()
|
||||
if (player.team == "axis")
|
||||
{
|
||||
player.obj_waypoint.color = (1, 0, 0);
|
||||
player containment_set_obj_waypoint_icon("waypoint_time_bomb");
|
||||
player containment_set_obj_waypoint_icon("waypoint_capture");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
15
zone_source/common_mp.zone
Normal file
15
zone_source/common_mp.zone
Normal file
@ -0,0 +1,15 @@
|
||||
>game,T6
|
||||
>type,fastfile
|
||||
>name,common_mp
|
||||
|
||||
include,includes/knife_zm
|
||||
include,includes/knife_ballistic_zm
|
||||
|
||||
include,includes/fnp45_zm
|
||||
include,includes/insas_zm
|
||||
include,includes/vector_zm
|
||||
include,includes/sig556_zm
|
||||
include,includes/sa58_zm
|
||||
|
||||
include,includes/attachment
|
||||
include,includes/materials
|
3
zone_source/includes/attachment.zone
Normal file
3
zone_source/includes/attachment.zone
Normal file
@ -0,0 +1,3 @@
|
||||
attachment,gl
|
||||
attachment,sf
|
||||
attachment,steadyaim_smg
|
6
zone_source/includes/attachmentunique.zone
Normal file
6
zone_source/includes/attachmentunique.zone
Normal file
@ -0,0 +1,6 @@
|
||||
attachmentunique,au_vector_none
|
||||
attachmentunique,au_vector_steadyaim
|
||||
attachmentunique,au_sig556_none
|
||||
attachmentunique,au_sig556_gl
|
||||
attachmentunique,au_sa58_none
|
||||
attachmentunique,au_sa58_sf
|
@ -71,7 +71,6 @@ material,menu_mp_weapons_ballista
|
||||
weapon,ballista_zm
|
||||
fx,weapon/muzzleflashes_zmb_ug/fx_zmb_muz_xlg_gas_flash_1p
|
||||
fx,weapon/muzzleflashes_zmb_ug/fx_zmb_muz_xlg_gas_flash_3p
|
||||
attachment,is
|
||||
image,scope_overlay_ballista_1024
|
||||
material,scope_overlay_ballista
|
||||
attachmentunique,au_ballista_none
|
||||
|
@ -1,6 +1,3 @@
|
||||
weapon,zm/fnp45_zm
|
||||
weapon,zm/fnp45_upgraded_zm
|
||||
weapon,zm/fnp45lh_upgraded_zm
|
||||
xmodel,t6_wpn_pistol_fnp45_view
|
||||
xmodel,t6_wpn_pistol_fnp45_world
|
||||
xmodel,t6_wpn_pistol_fnp45_view_lh
|
||||
@ -9,8 +6,10 @@ material,mc/mtl_t6_wpn_pistol_fnp45
|
||||
material,mc/mtl_t6_wpn_pistol_fnp45_camo2
|
||||
material,mc/mtl_t6_wpn_pistol_fnp45_camo3
|
||||
material,menu_mp_weapons_fnp45
|
||||
material,hud_mp_firerate_single
|
||||
image,~-gmtl_t6_wpn_pistol_fnp45_col
|
||||
image,menu_mp_weapons_fnp45
|
||||
image,hud_mp_firerate_single
|
||||
xanim,viewmodel_fnp45_idle
|
||||
xanim,viewmodel_fnp45_idle_empty
|
||||
xanim,viewmodel_fnp45_fire
|
||||
@ -85,4 +84,12 @@ xanim,viewmodel_fnp45_dw_left_fire
|
||||
xanim,viewmodel_fnp45_dw_left_lastshot
|
||||
xanim,viewmodel_fnp45_dw_left_reload
|
||||
xanim,viewmodel_fnp45_dw_left_reload_empty
|
||||
xanim,viewmodel_m1911_dw_putaway_empty
|
||||
fx,weapon/muzzleflashes/fx_muz_smg_flash_1p
|
||||
fx,weapon/muzzleflashes/fx_muz_smg_flash_3p
|
||||
fx,weapon/shellejects/fx_pistol
|
||||
tracer,pistol
|
||||
tracer,pistol_enemy
|
||||
camo,camo_fnp45
|
||||
xmodel,projectile_m203grenade
|
||||
fx,weapon/grenade/fx_trail_grenade
|
||||
fx,temp_effects/fx_tmp_m203_flash
|
@ -1,39 +0,0 @@
|
||||
weapon,zm/held_one_inch_punch_zm
|
||||
weapon,zm/held_one_inch_punch_upgraded_zm
|
||||
weapon,zm/held_one_inch_punch_air_zm
|
||||
weapon,zm/held_one_inch_punch_fire_zm
|
||||
weapon,zm/held_one_inch_punch_ice_zm
|
||||
weapon,zm/held_one_inch_punch_lightning_zm
|
||||
xanim,viewmodel_ballistic_knife_t6_idle
|
||||
xanim,viewmodel_ballistic_knife_t6_fire
|
||||
xanim,viewmodel_ballistic_knife_t6_melee_charge
|
||||
xanim,viewmodel_ballistic_knife_t6_reload_empty
|
||||
xanim,viewmodel_ballistic_knife_t6_pullout
|
||||
xanim,viewmodel_ballistic_knife_t6_putaway
|
||||
xanim,viewmodel_ballistic_knife_t6_first_raise
|
||||
xanim,viewmodel_ballistic_knife_t6_sprint_in
|
||||
xanim,viewmodel_ballistic_knife_t6_sprint_loop
|
||||
xanim,viewmodel_ballistic_knife_t6_sprint_out
|
||||
xanim,viewmodel_ballistic_knife_t6_crawl_in
|
||||
xanim,viewmodel_ballistic_knife_t6_crawl_forward
|
||||
xanim,viewmodel_ballistic_knife_t6_crawl_back
|
||||
xanim,viewmodel_ballistic_knife_t6_crawl_right
|
||||
xanim,viewmodel_ballistic_knife_t6_crawl_left
|
||||
xanim,viewmodel_ballistic_knife_t6_crawl_out
|
||||
xanim,viewmodel_ballistic_knife_t6_ads_up
|
||||
xanim,viewmodel_ballistic_knife_t6_ads_down
|
||||
xanim,viewmodel_ballistic_knife_t6_d2p_in
|
||||
xanim,viewmodel_ballistic_knife_t6_d2p_loop
|
||||
xanim,viewmodel_ballistic_knife_t6_d2p_out
|
||||
material,hud_obit_pegasus
|
||||
material,hud_obit_warthog
|
||||
material,hud_obit_talon
|
||||
material,hud_obit_thawk
|
||||
material,hud_obit_crate
|
||||
material,hud_obit_cobra
|
||||
image,hud_obit_pegasus
|
||||
image,hud_obit_warthog
|
||||
image,hud_obit_talon
|
||||
image,hud_obit_thawk
|
||||
image,hud_obit_crate
|
||||
image,hud_obit_cobra
|
@ -34,7 +34,6 @@ xanim,viewmodel_msmc_d2p_out
|
||||
xanim,viewmodel_msmc_ads_up
|
||||
xanim,viewmodel_msmc_ads_down
|
||||
material,menu_mp_weapons_insas
|
||||
attachment,dualclip_fastadd
|
||||
attachmentunique,au_insas_none
|
||||
xmodel,t6_attach_fastmag_msmc_view
|
||||
xmodel,t6_attach_fastmag_msmc_world
|
||||
@ -52,8 +51,6 @@ attachmentunique,au_insas_dualclip+grip
|
||||
attachmentunique,au_insas_holo+grip
|
||||
attachmentunique,au_insas_rangefinder+grip
|
||||
attachmentunique,au_insas_grip+sf
|
||||
weapon,zm/insas_zm
|
||||
weapon,zm/insas_upgraded_zm
|
||||
xanim,viewmodel_msmc_reflex_ads_up
|
||||
xanim,viewmodel_msmc_reflex_ads_down
|
||||
xanim,viewmodel_msmc_dbal_first_raise
|
||||
@ -96,4 +93,6 @@ xanim,viewmodel_msmc_mms_ads_up
|
||||
xanim,viewmodel_msmc_mms_ads_down
|
||||
xanim,viewmodel_msmc_grip_fastmag
|
||||
xanim,viewmodel_msmc_grip_fastmag_empty
|
||||
xanim,viewmodel_msmc_grip_rangefinder_ads_fire
|
||||
xanim,viewmodel_msmc_grip_rangefinder_ads_fire
|
||||
tracer,smg
|
||||
tracer,smg_enemy
|
@ -1,4 +0,0 @@
|
||||
material,hud_obit_case
|
||||
material,hud_obit_dogs
|
||||
image,hud_obit_case
|
||||
image,hud_obit_dogs
|
@ -10,10 +10,12 @@ material,mc/mtl_t6_wpn_ballistic_knife_camo2
|
||||
material,mc/mtl_t6_wpn_knife_base_camo2
|
||||
material,mc/mtl_t6_wpn_ballistic_knife_retrieve
|
||||
material,menu_mp_weapons_ballistic_knife
|
||||
material,hud_mp_firerate_free
|
||||
image,~-gmtl_t6_wpn_knife_base_col
|
||||
image,~-gmtl_t6_wpn_ballistic_knife_col
|
||||
image,mtl_t6_wpn_ballistic_knife_blade_col
|
||||
image,menu_mp_weapons_ballistic_knife
|
||||
image,hud_mp_firerate_free
|
||||
xanim,viewmodel_ballistic_knife_t6_idle
|
||||
xanim,viewmodel_ballistic_knife_t6_fire
|
||||
xanim,viewmodel_ballistic_knife_t6_melee_charge
|
||||
|
@ -1,26 +1,8 @@
|
||||
weapon,zm/held_knife_zm
|
||||
weapon,zm/held_bowie_knife_zm
|
||||
weapon,zm/held_tazer_knuckles_zm
|
||||
weapon,zm/held_knife_zm_alcatraz
|
||||
weapon,zm/held_spoon_zm_alcatraz
|
||||
weapon,zm/held_spork_zm_alcatraz
|
||||
xmodel,t6_wpn_knife_base_view
|
||||
xmodel,t6_wpn_knife_base_world
|
||||
material,mc/mtl_t6_wpn_knife_base
|
||||
material,mc/mtl_t6_wpn_knife_base_camo2
|
||||
material,cac_mods_tact_knife
|
||||
material,menu_zm_weapons_bowie
|
||||
material,menu_zm_weapons_taser
|
||||
material,hud_obit_turret
|
||||
material,hud_obit_hk_drone
|
||||
material,hud_obit_rcbomb
|
||||
image,~-gmtl_t6_wpn_knife_base_col
|
||||
image,cac_mods_tact_knife
|
||||
image,menu_zm_weapons_bowie
|
||||
image,menu_zm_weapons_taser
|
||||
image,hud_obit_turret
|
||||
image,hud_obit_hk_drone
|
||||
image,hud_obit_rcbomb
|
||||
xanim,viewmodel_strider_idle
|
||||
xanim,viewmodel_strider_melee_swipe
|
||||
xanim,viewmodel_strider_melee_charge
|
||||
@ -40,4 +22,7 @@ xanim,viewmodel_strider_ads_up
|
||||
xanim,viewmodel_strider_ads_down
|
||||
xanim,viewmodel_strider_d2p_in
|
||||
xanim,viewmodel_strider_d2p_loop
|
||||
xanim,viewmodel_strider_d2p_out
|
||||
xanim,viewmodel_strider_d2p_out
|
||||
fx,impacts/fx_flesh_hit_knife_mp
|
||||
fx,impacts/fx_flesh_hit_knife_noblood
|
||||
camo,camo_knife
|
1
zone_source/includes/m1911_zm.zone
Normal file
1
zone_source/includes/m1911_zm.zone
Normal file
@ -0,0 +1 @@
|
||||
xanim,viewmodel_m1911_dw_putaway_empty
|
47
zone_source/includes/materials.zone
Normal file
47
zone_source/includes/materials.zone
Normal file
@ -0,0 +1,47 @@
|
||||
material,cac_mods_tact_knife
|
||||
material,hud_obit_turret
|
||||
material,hud_obit_hk_drone
|
||||
material,hud_obit_rcbomb
|
||||
material,hud_obit_pegasus
|
||||
material,hud_obit_warthog
|
||||
material,hud_obit_talon
|
||||
material,hud_obit_thawk
|
||||
material,hud_obit_crate
|
||||
material,hud_obit_cobra
|
||||
material,hud_obit_case
|
||||
material,hud_obit_dogs
|
||||
material,hud_obit_hind
|
||||
material,tactical_gren_reticle
|
||||
|
||||
material,hud_ctf_flag_icon_green
|
||||
material,waypoint_flag_grab
|
||||
material,waypoint_flag_capture
|
||||
material,waypoint_return
|
||||
material,waypoint_recon_artillery_strike
|
||||
material,waypoint_capture
|
||||
material,waypoint_dogtags
|
||||
material,compass_waypoint_contested
|
||||
|
||||
image,cac_mods_tact_knife
|
||||
image,hud_obit_turret
|
||||
image,hud_obit_hk_drone
|
||||
image,hud_obit_rcbomb
|
||||
image,hud_obit_pegasus
|
||||
image,hud_obit_warthog
|
||||
image,hud_obit_talon
|
||||
image,hud_obit_thawk
|
||||
image,hud_obit_crate
|
||||
image,hud_obit_cobra
|
||||
image,hud_obit_case
|
||||
image,hud_obit_dogs
|
||||
image,hud_obit_hind
|
||||
image,tactical_gren_reticle
|
||||
|
||||
image,hud_ctf_flag_icon_green
|
||||
image,waypoint_flag_grab
|
||||
image,waypoint_flag_capture
|
||||
image,waypoint_return
|
||||
image,waypoint_recon_artillery_strike
|
||||
image,waypoint_capture
|
||||
image,waypoint_dogtags
|
||||
image,compass_waypoint_contested
|
2
zone_source/includes/muzzleflashes_zmb_ug.zone
Normal file
2
zone_source/includes/muzzleflashes_zmb_ug.zone
Normal file
@ -0,0 +1,2 @@
|
||||
fx,weapon/muzzleflashes_zmb_ug/fx_zmb_muz_sm_gas_flash_1p
|
||||
fx,weapon/muzzleflashes_zmb_ug/fx_zmb_muz_smg_flash_3p
|
14
zone_source/includes/one_inch_punch_zm.zone
Normal file
14
zone_source/includes/one_inch_punch_zm.zone
Normal file
@ -0,0 +1,14 @@
|
||||
xmodel,t6_wpn_none_view
|
||||
xmodel,t6_wpn_none_world
|
||||
fx,maps/zombie_tomb/fx_tomb_perk_one_inch_punch
|
||||
fx,maps/zombie_tomb/fx_tomb_perk_one_inch_punch_impact
|
||||
fx,maps/zombie_tomb/fx_tomb_perk_one_inch_punch_ug
|
||||
fx,maps/zombie_tomb/fx_tomb_perk_one_inch_punch_impact_ug
|
||||
fx,maps/zombie_tomb/fx_tomb_perk_one_inch_punch_air
|
||||
fx,maps/zombie_tomb/fx_tomb_perk_one_inch_punch_impact_air
|
||||
fx,maps/zombie_tomb/fx_tomb_perk_one_inch_punch_fire
|
||||
fx,maps/zombie_tomb/fx_tomb_perk_one_inch_punch_impact_fire
|
||||
fx,maps/zombie_tomb/fx_tomb_perk_one_inch_punch_ice
|
||||
fx,maps/zombie_tomb/fx_tomb_perk_one_inch_punch_impact_ice
|
||||
fx,maps/zombie_tomb/fx_tomb_perk_one_inch_punch_elec
|
||||
fx,maps/zombie_tomb/fx_tomb_perk_one_inch_punch_impact_elec
|
@ -1,2 +0,0 @@
|
||||
material,hud_obit_hind
|
||||
image,hud_obit_hind
|
@ -38,7 +38,6 @@ xanim,viewmodel_sa58_d2p_out
|
||||
xanim,viewmodel_sa58_ads_up
|
||||
xanim,viewmodel_sa58_ads_down
|
||||
material,menu_mp_weapons_sa58
|
||||
attachmentunique,au_sa58_none
|
||||
attachmentunique,au_sa58_acog
|
||||
xmodel,t6_attach_fastmag_sa58_view
|
||||
xmodel,t6_attach_fastmag_sa58_world
|
||||
@ -51,7 +50,6 @@ attachmentunique,au_sa58_holo
|
||||
attachmentunique,au_sa58_mms
|
||||
attachmentunique,au_sa58_rangefinder
|
||||
attachmentunique,au_sa58_reflex
|
||||
attachmentunique,au_sa58_sf
|
||||
xmodel,t6_attach_ar_silencer3_world
|
||||
attachmentunique,au_sa58_silencer
|
||||
attachmentunique,au_sa58_steadyaim
|
||||
@ -64,8 +62,6 @@ attachmentunique,au_sa58_rangefinder+gl
|
||||
attachmentunique,au_sa58_holo+grip
|
||||
attachmentunique,au_sa58_rangefinder+grip
|
||||
attachmentunique,au_sa58_grip+sf
|
||||
weapon,zm/sa58_zm
|
||||
weapon,zm/sa58_upgraded_zm
|
||||
xanim,viewmodel_sa58_reflex_ads_up
|
||||
xanim,viewmodel_sa58_reflex_ads_down
|
||||
xanim,viewmodel_sa58_fastmag
|
||||
@ -104,7 +100,6 @@ xanim,viewmodel_sa58_rangefinder_ads_down
|
||||
xanim,viewmodel_sa58_dbal_first_raise
|
||||
xanim,viewmodel_sa58_select_fire_in
|
||||
xanim,viewmodel_sa58_select_fire_out
|
||||
weapon,zm/sf_sa58_upgraded_zm
|
||||
xanim,viewmodel_sa58_eotech_ads_up
|
||||
xanim,viewmodel_sa58_eotech_ads_down
|
||||
xanim,viewmodel_sa58_rmr_alt_raise_up
|
||||
|
@ -45,7 +45,6 @@ xanim,viewmodel_saritch_acog_ads_fire
|
||||
xanim,viewmodel_saritch_rmr_top_ads_up
|
||||
xanim,viewmodel_saritch_rmr_top_ads_down
|
||||
xanim,viewmodel_saritch_rmr_bottom_ads_up
|
||||
attachment,dualoptic
|
||||
attachmentunique,au_saritch_none
|
||||
image,mtl_t6_attach_optic_combo_reddot
|
||||
material,mc/mtl_t6_attach_optic_combo_reticle_up
|
||||
|
@ -61,8 +61,6 @@ xanim,viewmodel_scar_h_ads_down
|
||||
image,menu_mp_weapons_scar
|
||||
material,menu_mp_weapons_scar
|
||||
weapon,scar_zm
|
||||
attachment,dualclip
|
||||
attachment,rangefinder
|
||||
attachmentunique,au_scar_none
|
||||
attachmentunique,au_scar_acog
|
||||
xmodel,t6_attach_fastmag_scar_view
|
||||
|
@ -49,14 +49,12 @@ xanim,viewmodel_sig556_d2p_out_empty
|
||||
xanim,viewmodel_sig556_ads_up
|
||||
xanim,viewmodel_sig556_ads_down
|
||||
material,menu_mp_weapons_sig556
|
||||
attachmentunique,au_sig556_none
|
||||
attachmentunique,au_sig556_acog
|
||||
xmodel,t6_attach_fastmag_sig556_view
|
||||
xmodel,t6_attach_fastmag_sig556_world
|
||||
attachmentunique,au_sig556_dualclip
|
||||
attachmentunique,au_sig556_dualoptic
|
||||
attachmentunique,au_sig556_extclip
|
||||
attachmentunique,au_sig556_gl
|
||||
attachmentunique,au_sig556_grip
|
||||
attachmentunique,au_sig556_holo
|
||||
attachmentunique,au_sig556_mms
|
||||
@ -75,9 +73,6 @@ attachmentunique,au_sig556_rangefinder+gl
|
||||
attachmentunique,au_sig556_holo+grip
|
||||
attachmentunique,au_sig556_rangefinder+grip
|
||||
attachmentunique,au_sig556_grip+sf
|
||||
weapon,zm/sig556_zm
|
||||
weapon,zm/sig556_upgraded_zm
|
||||
weapon,zm/gl_sig556_zm
|
||||
xanim,viewmodel_sig556_reflex_ads_up
|
||||
xanim,viewmodel_sig556_reflex_ads_down
|
||||
xanim,viewmodel_sig556_fastmag
|
||||
@ -219,4 +214,11 @@ xanim,viewmodel_sig556_grip_fastmag_empty_quick
|
||||
xanim,viewmodel_sig556_gl_rangefinder_ads_last_shot
|
||||
xanim,viewmodel_sig556_grip_rangefinder_ads_last_shot
|
||||
xanim,viewmodel_sig556_grip_select_fire_in
|
||||
xanim,viewmodel_sig556_grip_select_fire_out
|
||||
xanim,viewmodel_sig556_grip_select_fire_out
|
||||
fx,weapon/muzzleflashes/fx_muz_ar_flash_1p
|
||||
fx,weapon/muzzleflashes/fx_heavy_flash_base
|
||||
material,reticle_m203
|
||||
image,m203_reticle
|
||||
material,hud_obit_grenade_launcher_attach
|
||||
image,hud_obit_grenade_launcher_attach
|
||||
fx,impacts/fx_dud_m203
|
@ -33,7 +33,6 @@ xanim,viewmodel_vector_d2p_loop
|
||||
xanim,viewmodel_vector_d2p_out
|
||||
xanim,viewmodel_vector_ads_up
|
||||
xanim,viewmodel_vector_ads_down
|
||||
attachmentunique,au_vector_none
|
||||
xmodel,t6_attach_fastmag_vector_view
|
||||
xmodel,t6_attach_fastmag_vector_world
|
||||
attachmentunique,au_vector_dualclip
|
||||
@ -72,15 +71,10 @@ fx,weapon/muzzleflashes/fx_muz_silencer_md_3p
|
||||
attachmentunique,au_vector_silencer
|
||||
xmodel,t6_attach_dbal_view
|
||||
xmodel,t6_attach_dbal_world
|
||||
attachmentunique,au_vector_steadyaim
|
||||
attachmentunique,au_vector_dualclip+grip
|
||||
attachmentunique,au_vector_holo+grip
|
||||
attachmentunique,au_vector_rangefinder+grip
|
||||
attachmentunique,au_vector_grip+sf
|
||||
weapon,zm/vector_zm
|
||||
weapon,zm/vector_upgraded_zm
|
||||
weapon,zm/vector_extclip_zm
|
||||
weapon,zm/vector_extclip_upgraded_zm
|
||||
techniqueset,mc_sw4_3d_reticle_dynamic_9820jqfj
|
||||
techniqueset,mc_sw4_3d_optic_lens_4w47028j
|
||||
xanim,viewmodel_vector_reflex_ads_up
|
||||
@ -134,5 +128,6 @@ xanim,viewmodel_vector_mms_ads_down
|
||||
xanim,viewmodel_vector_grip_fastmag_empty
|
||||
xanim,viewmodel_vector_grip_fastmag
|
||||
xanim,viewmodel_vector_grip_rangefinder_ads_fire
|
||||
attachment,steadyaim
|
||||
attachment,steadyaim_smg
|
||||
fx,weapon/muzzleflashes/fx_muz_smg_flash_1p_5_star_mb
|
||||
material,menu_mp_weapons_kriss
|
||||
image,menu_mp_weapons_kriss
|
@ -1,16 +0,0 @@
|
||||
material,hud_ctf_flag_icon_green
|
||||
material,waypoint_flag_grab
|
||||
material,waypoint_flag_capture
|
||||
material,waypoint_return
|
||||
material,waypoint_recon_artillery_strike
|
||||
material,waypoint_time_bomb
|
||||
material,waypoint_dogtags
|
||||
material,compass_waypoint_contested
|
||||
image,hud_ctf_flag_icon_green
|
||||
image,waypoint_flag_grab
|
||||
image,waypoint_flag_capture
|
||||
image,waypoint_return
|
||||
image,waypoint_recon_artillery_strike
|
||||
image,waypoint_time_bomb
|
||||
image,waypoint_dogtags
|
||||
image,compass_waypoint_contested
|
34
zone_source/includes/weapons.zone
Normal file
34
zone_source/includes/weapons.zone
Normal file
@ -0,0 +1,34 @@
|
||||
weapon,zm/held_knife_zm
|
||||
weapon,zm/held_bowie_knife_zm
|
||||
weapon,zm/held_tazer_knuckles_zm
|
||||
|
||||
weapon,zm/held_knife_zm_alcatraz
|
||||
weapon,zm/held_spoon_zm_alcatraz
|
||||
weapon,zm/held_spork_zm_alcatraz
|
||||
|
||||
weapon,zm/held_one_inch_punch_zm
|
||||
weapon,zm/held_one_inch_punch_upgraded_zm
|
||||
weapon,zm/held_one_inch_punch_air_zm
|
||||
weapon,zm/held_one_inch_punch_fire_zm
|
||||
weapon,zm/held_one_inch_punch_ice_zm
|
||||
weapon,zm/held_one_inch_punch_lightning_zm
|
||||
|
||||
weapon,zm/fnp45_zm
|
||||
weapon,zm/fnp45_upgraded_zm
|
||||
weapon,zm/fnp45lh_upgraded_zm
|
||||
|
||||
weapon,zm/insas_zm
|
||||
weapon,zm/insas_upgraded_zm
|
||||
|
||||
weapon,zm/vector_zm
|
||||
weapon,zm/vector_upgraded_zm
|
||||
weapon,zm/vector_extclip_zm
|
||||
weapon,zm/vector_extclip_upgraded_zm
|
||||
|
||||
weapon,zm/sig556_zm
|
||||
weapon,zm/sig556_upgraded_zm
|
||||
weapon,zm/gl_sig556_zm
|
||||
|
||||
weapon,zm/sa58_zm
|
||||
weapon,zm/sa58_upgraded_zm
|
||||
weapon,zm/sf_sa58_upgraded_zm
|
@ -1,2 +0,0 @@
|
||||
material,tactical_gren_reticle
|
||||
image,tactical_gren_reticle
|
@ -2,39 +2,18 @@
|
||||
>type,fastfile
|
||||
>name,mod
|
||||
|
||||
include,common_mp
|
||||
include,zm_transit
|
||||
include,zm_nuked
|
||||
include,zm_highrise
|
||||
include,zm_prison
|
||||
include,zm_buried
|
||||
include,zm_tomb
|
||||
|
||||
include,includes/clientscripts
|
||||
|
||||
include,includes/saritch_zm
|
||||
include,includes/ballista_zm
|
||||
include,includes/hk416_zm
|
||||
include,includes/scar_zm
|
||||
include,includes/knife_ballistic_zm
|
||||
include,includes/ray_gun_zm
|
||||
include,includes/raygun_mark2_zm
|
||||
include,includes/jetgun_zm
|
||||
include,includes/cymbal_monkey_zm
|
||||
include,includes/willy_pete_zm
|
||||
include,includes/item_meat_zm
|
||||
include,includes/falling_hands_zm
|
||||
|
||||
include,includes/held_knife_zm
|
||||
include,includes/held_one_inch_punch_zm
|
||||
include,includes/fnp45_zm
|
||||
include,includes/insas_zm
|
||||
include,includes/vector_zm
|
||||
include,includes/sig556_zm
|
||||
include,includes/sa58_zm
|
||||
|
||||
include,includes/specialty_juggernaut
|
||||
include,includes/specialty_quickrevive
|
||||
include,includes/specialty_fastreload
|
||||
include,includes/specialty_doubletap
|
||||
include,includes/specialty_marathon
|
||||
include,includes/specialty_divetonuke
|
||||
include,includes/specialty_mulekick
|
||||
|
||||
include,includes/fx_zmb_wall_buy
|
||||
include,includes/waypoint
|
||||
include,includes/images
|
||||
include,includes/attachmentunique
|
||||
include,includes/weapons
|
||||
|
||||
stringtable,zm/pap_attach.csv
|
||||
|
||||
|
10
zone_source/zm_buried.zone
Normal file
10
zone_source/zm_buried.zone
Normal file
@ -0,0 +1,10 @@
|
||||
>game,T6
|
||||
>type,fastfile
|
||||
>name,zm_buried
|
||||
|
||||
include,includes/saritch_zm
|
||||
include,includes/ray_gun_zm
|
||||
include,includes/cymbal_monkey_zm
|
||||
|
||||
weapon,bowie_knife_zm
|
||||
weapon,tazer_knuckles_zm
|
3
zone_source/zm_highrise.zone
Normal file
3
zone_source/zm_highrise.zone
Normal file
@ -0,0 +1,3 @@
|
||||
>game,T6
|
||||
>type,fastfile
|
||||
>name,zm_highrise
|
5
zone_source/zm_nuked.zone
Normal file
5
zone_source/zm_nuked.zone
Normal file
@ -0,0 +1,5 @@
|
||||
>game,T6
|
||||
>type,fastfile
|
||||
>name,zm_nuked
|
||||
|
||||
include,includes/hk416_zm
|
9
zone_source/zm_prison.zone
Normal file
9
zone_source/zm_prison.zone
Normal file
@ -0,0 +1,9 @@
|
||||
>game,T6
|
||||
>type,fastfile
|
||||
>name,zm_prison
|
||||
|
||||
include,includes/m1911_zm
|
||||
|
||||
weapon,knife_zm_alcatraz
|
||||
weapon,spoon_zm_alcatraz
|
||||
weapon,spork_zm_alcatraz
|
16
zone_source/zm_tomb.zone
Normal file
16
zone_source/zm_tomb.zone
Normal file
@ -0,0 +1,16 @@
|
||||
>game,T6
|
||||
>type,fastfile
|
||||
>name,zm_tomb
|
||||
|
||||
include,includes/ballista_zm
|
||||
include,includes/scar_zm
|
||||
include,includes/falling_hands_zm
|
||||
include,includes/one_inch_punch_zm
|
||||
|
||||
include,includes/specialty_juggernaut
|
||||
include,includes/specialty_quickrevive
|
||||
include,includes/specialty_fastreload
|
||||
include,includes/specialty_doubletap
|
||||
include,includes/specialty_marathon
|
||||
include,includes/specialty_divetonuke
|
||||
include,includes/specialty_mulekick
|
12
zone_source/zm_transit.zone
Normal file
12
zone_source/zm_transit.zone
Normal file
@ -0,0 +1,12 @@
|
||||
>game,T6
|
||||
>type,fastfile
|
||||
>name,zm_transit
|
||||
|
||||
include,includes/jetgun_zm
|
||||
|
||||
include,includes/muzzleflashes_zmb_ug
|
||||
|
||||
material,hud_icon_40mm_grenade_mp
|
||||
image,hud_40mmgrenade
|
||||
material,hud_select_fire_bullet_stack_big
|
||||
image,hud_select_fire_bullet_stack01
|
Loading…
x
Reference in New Issue
Block a user