init: public release
All checks were successful
link / Link assets on Linux (push) Successful in 36s
All checks were successful
link / Link assets on Linux (push) Successful in 36s
This commit is contained in:
commit
0edddc3ad8
52
.gitea/scripts/ci.sh
Executable file
52
.gitea/scripts/ci.sh
Executable file
@ -0,0 +1,52 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
if [[ -z "$OAT_VERSION" ]]; then
|
||||
echo "No OAT version was specified, please set the OAT_VERSION environment variable."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ -z "$PRIVATE_FASTFILE_1" ]]; then
|
||||
echo "No required fastfile name was specified, please set the PRIVATE_FASTFILE_1 environment variable."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ -z "$PRIVATE_FASTFILE_2" ]]; then
|
||||
echo "No required fastfile name was specified, please set the PRIVATE_FASTFILE_2 environment variable."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Make sure we have cURL (and file for debugging)
|
||||
echo "Downloading dependencies"
|
||||
dpkg --add-architecture i386
|
||||
apt-get update > /dev/null 2>&1
|
||||
apt-get install -y curl file libstdc++-13-dev:i386 > /dev/null 2>&1
|
||||
|
||||
# Construct the download URL
|
||||
DOWNLOAD_URL="https://github.com/Laupetin/OpenAssetTools/releases/download/v${OAT_VERSION}/oat-linux.tar.gz"
|
||||
|
||||
echo "Downloading OAT from: $DOWNLOAD_URL"
|
||||
|
||||
# Define temporary directory
|
||||
TEMP_DIR="/tmp/oat_download"
|
||||
|
||||
# Create temporary directory if it doesn't exist
|
||||
mkdir -p "$TEMP_DIR"
|
||||
|
||||
# Download the tar.gz file to the temporary directory
|
||||
curl -L -o "${TEMP_DIR}/oat-linux.tar.gz" "$DOWNLOAD_URL"
|
||||
|
||||
# Extract the contents of the tar.gz file
|
||||
tar -xzf "${TEMP_DIR}/oat-linux.tar.gz" -C "${TEMP_DIR}"
|
||||
|
||||
# Copy the executables to /usr/local/bin and make them executable
|
||||
cp "${TEMP_DIR}/Linker" "${TEMP_DIR}/Unlinker" /usr/local/bin/
|
||||
chmod +x /usr/local/bin/Linker /usr/local/bin/Unlinker
|
||||
|
||||
# Clean up temporary directory
|
||||
rm -rf "$TEMP_DIR"
|
||||
|
||||
echo "OpenAssetTools version $OAT_VERSION has been installed."
|
||||
|
||||
Linker -v --load "./deps/iw5-zones/zone/english/${PRIVATE_FASTFILE_1}.ff" --load "./deps/iw5-zones/zone/english/${PRIVATE_FASTFILE_2}.ff" guns
|
40
.gitea/workflows/link.yml
Normal file
40
.gitea/workflows/link.yml
Normal file
@ -0,0 +1,40 @@
|
||||
name: link
|
||||
|
||||
on: [push]
|
||||
|
||||
env:
|
||||
OAT_VERSION: "0.14.1"
|
||||
|
||||
jobs:
|
||||
link-linux:
|
||||
name: Link assets on Linux
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Check out files
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: true
|
||||
fetch-depth: 0
|
||||
# NOTE - If LFS ever starts getting used for storing zones, switch this to true!
|
||||
lfs: false
|
||||
token: ${{ secrets.SUBMODULE_PAT }}
|
||||
|
||||
- name: Link assets
|
||||
uses: addnab/docker-run-action@v3
|
||||
with:
|
||||
image: ubuntu:noble
|
||||
options: --volumes-from=${{ env.JOB_CONTAINER_NAME }}
|
||||
run: |
|
||||
cd ${{ github.workspace }}
|
||||
export OAT_VERSION=${{ env.OAT_VERSION }}
|
||||
export PRIVATE_FASTFILE_1=${{ secrets.PRIVATE_FASTFILE_1 }}
|
||||
export PRIVATE_FASTFILE_2=${{ secrets.PRIVATE_FASTFILE_2 }}
|
||||
./.gitea/scripts/ci.sh
|
||||
|
||||
- name: Upload assets
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: assets
|
||||
path: |
|
||||
zone_out/guns/mod.ff
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
[submodule "deps/iw5-zones"]
|
||||
path = deps/iw5-zones
|
||||
url = https://git.alterware.dev/Future/iw5-zones.git
|
29
LICENSE
Normal file
29
LICENSE
Normal file
@ -0,0 +1,29 @@
|
||||
BSD 3-Clause License
|
||||
|
||||
Copyright (c) 2024, AlterWare
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
|
||||
3. Neither the name of the copyright holder nor the names of its
|
||||
contributors may be used to endorse or promote products derived from
|
||||
this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
3
README.md
Normal file
3
README.md
Normal file
@ -0,0 +1,3 @@
|
||||
# Guns
|
||||
|
||||
A mod that adds the AK-74 and Intervention Sniper Rifle to IW5
|
1
deps/iw5-zones
vendored
Submodule
1
deps/iw5-zones
vendored
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 1eb4217a1e6f9c2ba8f3064e1540a9cad656840c
|
98
zone_raw/guns/attachment/acog.json
Normal file
98
zone_raw/guns/attachment/acog.json
Normal file
@ -0,0 +1,98 @@
|
||||
{
|
||||
"_type": "attachment",
|
||||
"_version": 1,
|
||||
"adsOverlay": {
|
||||
"height": 240.0,
|
||||
"heightSplitscreen": 480.0,
|
||||
"reticle": "none",
|
||||
"thermalScope": false,
|
||||
"width": 320.0,
|
||||
"widthSplitscreen": 480.0
|
||||
},
|
||||
"adsSettings": {
|
||||
"adsAimPitch": 0.0,
|
||||
"adsBobFactor": 2.0,
|
||||
"adsCrosshairInFrac": 1.0,
|
||||
"adsCrosshairOutFrac": 0.20000000298023224,
|
||||
"adsReloadTransTime": 449,
|
||||
"adsSpread": 0.0,
|
||||
"adsTransInTime": 0.3799999952316284,
|
||||
"adsTransOutTime": 0.3799999952316284,
|
||||
"adsViewBobMult": 0.20000000298023224,
|
||||
"adsViewErrorMax": 0.0,
|
||||
"adsViewErrorMin": 0.0,
|
||||
"adsZoomFov": 30.0,
|
||||
"adsZoomInFrac": 0.5,
|
||||
"adsZoomOutFrac": 0.4000000059604645
|
||||
},
|
||||
"adsSettingsScale": 0.0,
|
||||
"adsSettingsScaleMain": 0.0,
|
||||
"ammunitionScale": 0.0,
|
||||
"damageScale": 0.0,
|
||||
"damageScaleMin": 0.0,
|
||||
"displayName": "WEAPON_ACOG_ATTACHMENT",
|
||||
"fireTimersScale": 1.0,
|
||||
"gunKickScale": 0.0,
|
||||
"hideIronSightsWithThisAttachment": false,
|
||||
"hipSpreadScale": 0.0,
|
||||
"idleSettingsScale": 0.0,
|
||||
"loadIndex": 0,
|
||||
"reticleViewModels": [
|
||||
"viewmodel_reticle_acog",
|
||||
"viewmodel_reticle_custom1",
|
||||
"viewmodel_reticle_custom2",
|
||||
"viewmodel_reticle_custom3",
|
||||
"viewmodel_reticle_custom4",
|
||||
"viewmodel_reticle_custom5",
|
||||
"viewmodel_reticle_custom6",
|
||||
"viewmodel_reticle_custom7"
|
||||
],
|
||||
"shareAmmoWithAlt": false,
|
||||
"sight": {
|
||||
"adsFire": false,
|
||||
"aimDownSight": true,
|
||||
"canHoldBreath": false,
|
||||
"canVariableZoom": false,
|
||||
"hideRailWithThisScope": false,
|
||||
"noAdsWhenMagEmpty": false,
|
||||
"rechamberWhileAds": true
|
||||
},
|
||||
"stateTimersScale": 1.0,
|
||||
"type": "scope",
|
||||
"viewCenterScale": 0.0,
|
||||
"viewKickScale": 0.0,
|
||||
"viewModels": [
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog"
|
||||
],
|
||||
"weapClass": "rifle",
|
||||
"weaponType": "none",
|
||||
"worldModels": [
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog"
|
||||
]
|
||||
}
|
98
zone_raw/guns/attachment/acogsmg.json
Normal file
98
zone_raw/guns/attachment/acogsmg.json
Normal file
@ -0,0 +1,98 @@
|
||||
{
|
||||
"_type": "attachment",
|
||||
"_version": 1,
|
||||
"adsOverlay": {
|
||||
"height": 240.0,
|
||||
"heightSplitscreen": 480.0,
|
||||
"reticle": "none",
|
||||
"thermalScope": false,
|
||||
"width": 320.0,
|
||||
"widthSplitscreen": 480.0
|
||||
},
|
||||
"adsSettings": {
|
||||
"adsAimPitch": 0.0,
|
||||
"adsBobFactor": 2.0,
|
||||
"adsCrosshairInFrac": 1.0,
|
||||
"adsCrosshairOutFrac": 0.20000000298023224,
|
||||
"adsReloadTransTime": 300,
|
||||
"adsSpread": 0.0,
|
||||
"adsTransInTime": 0.25,
|
||||
"adsTransOutTime": 0.25,
|
||||
"adsViewBobMult": 0.20000000298023224,
|
||||
"adsViewErrorMax": 0.0,
|
||||
"adsViewErrorMin": 0.0,
|
||||
"adsZoomFov": 30.0,
|
||||
"adsZoomInFrac": 0.5,
|
||||
"adsZoomOutFrac": 0.4000000059604645
|
||||
},
|
||||
"adsSettingsScale": 0.0,
|
||||
"adsSettingsScaleMain": 0.0,
|
||||
"ammunitionScale": 0.0,
|
||||
"damageScale": 0.0,
|
||||
"damageScaleMin": 0.0,
|
||||
"displayName": "WEAPON_ACOG_ATTACHMENT",
|
||||
"fireTimersScale": 1.0,
|
||||
"gunKickScale": 0.0,
|
||||
"hideIronSightsWithThisAttachment": false,
|
||||
"hipSpreadScale": 0.0,
|
||||
"idleSettingsScale": 0.0,
|
||||
"loadIndex": 0,
|
||||
"reticleViewModels": [
|
||||
"viewmodel_reticle_acog",
|
||||
"viewmodel_reticle_custom1",
|
||||
"viewmodel_reticle_custom2",
|
||||
"viewmodel_reticle_custom3",
|
||||
"viewmodel_reticle_custom4",
|
||||
"viewmodel_reticle_custom5",
|
||||
"viewmodel_reticle_custom6",
|
||||
"viewmodel_reticle_custom7"
|
||||
],
|
||||
"shareAmmoWithAlt": false,
|
||||
"sight": {
|
||||
"adsFire": false,
|
||||
"aimDownSight": true,
|
||||
"canHoldBreath": false,
|
||||
"canVariableZoom": false,
|
||||
"hideRailWithThisScope": false,
|
||||
"noAdsWhenMagEmpty": false,
|
||||
"rechamberWhileAds": true
|
||||
},
|
||||
"stateTimersScale": 1.0,
|
||||
"type": "scope",
|
||||
"viewCenterScale": 0.0,
|
||||
"viewKickScale": 0.0,
|
||||
"viewModels": [
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog",
|
||||
"viewmodel_acog"
|
||||
],
|
||||
"weapClass": "rifle",
|
||||
"weaponType": "none",
|
||||
"worldModels": [
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog",
|
||||
"weapon_acog"
|
||||
]
|
||||
}
|
67
zone_raw/guns/attachment/cheytacscope.json
Normal file
67
zone_raw/guns/attachment/cheytacscope.json
Normal file
@ -0,0 +1,67 @@
|
||||
{
|
||||
"_type": "attachment",
|
||||
"_version": 1,
|
||||
"adsOverlay": {
|
||||
"height": 480.0,
|
||||
"heightSplitscreen": 700.0,
|
||||
"reticle": "crosshair",
|
||||
"shader": "scope_overlay_us_iw5",
|
||||
"shaderEMP": "scope_overlay_us_iw5",
|
||||
"shaderEMPLowRes": "scope_overlay_us_iw5_low_res",
|
||||
"shaderLowRes": "scope_overlay_us_iw5_low_res",
|
||||
"thermalScope": false,
|
||||
"width": 480.0,
|
||||
"widthSplitscreen": 700.0
|
||||
},
|
||||
"adsSettings": {
|
||||
"adsAimPitch": 0.0,
|
||||
"adsBobFactor": 0.5,
|
||||
"adsCrosshairInFrac": 1.0,
|
||||
"adsCrosshairOutFrac": 0.20000000298023224,
|
||||
"adsReloadTransTime": 600,
|
||||
"adsSpread": 0.0,
|
||||
"adsTransInTime": 0.4000000059604645,
|
||||
"adsTransOutTime": 0.4000000059604645,
|
||||
"adsViewBobMult": 0.5,
|
||||
"adsViewErrorMax": 0.0,
|
||||
"adsViewErrorMin": 0.0,
|
||||
"adsZoomFov": 15.0,
|
||||
"adsZoomInFrac": 0.0,
|
||||
"adsZoomOutFrac": 0.0
|
||||
},
|
||||
"adsSettingsScale": 0.0,
|
||||
"adsSettingsScaleMain": 0.0,
|
||||
"ammunitionScale": 0.0,
|
||||
"damageScale": 0.0,
|
||||
"damageScaleMin": 0.0,
|
||||
"displayName": "WEAPON_SCOPE_ATTACHMENT",
|
||||
"fireTimersScale": 1.0,
|
||||
"gunKickScale": 0.0,
|
||||
"hideIronSightsWithThisAttachment": false,
|
||||
"hipSpreadScale": 0.0,
|
||||
"idleSettingsScale": 0.0,
|
||||
"loadIndex": 0,
|
||||
"reticleViewModels": [],
|
||||
"shareAmmoWithAlt": false,
|
||||
"sight": {
|
||||
"adsFire": false,
|
||||
"aimDownSight": true,
|
||||
"canHoldBreath": true,
|
||||
"canVariableZoom": false,
|
||||
"hideRailWithThisScope": true,
|
||||
"noAdsWhenMagEmpty": false,
|
||||
"rechamberWhileAds": true
|
||||
},
|
||||
"stateTimersScale": 1.0,
|
||||
"type": "scope",
|
||||
"viewCenterScale": 0.0,
|
||||
"viewKickScale": 0.0,
|
||||
"viewModels": [
|
||||
"viewmodel_cheytac_scope"
|
||||
],
|
||||
"weapClass": "rifle",
|
||||
"weaponType": "none",
|
||||
"worldModels": [
|
||||
"weapon_cheytac_scope"
|
||||
]
|
||||
}
|
90
zone_raw/guns/attachment/cheytacscopevz.json
Normal file
90
zone_raw/guns/attachment/cheytacscopevz.json
Normal file
@ -0,0 +1,90 @@
|
||||
{
|
||||
"_type": "attachment",
|
||||
"_version": 1,
|
||||
"adsSettings": {
|
||||
"adsAimPitch": 0.0,
|
||||
"adsBobFactor": 1.0,
|
||||
"adsCrosshairInFrac": 1.0,
|
||||
"adsCrosshairOutFrac": 0.20000000298023224,
|
||||
"adsReloadTransTime": 449,
|
||||
"adsSpread": 0.0,
|
||||
"adsTransInTime": 0.30000001192092896,
|
||||
"adsTransOutTime": 0.30000001192092896,
|
||||
"adsViewBobMult": 0.20000000298023224,
|
||||
"adsViewErrorMax": 0.0,
|
||||
"adsViewErrorMin": 0.0,
|
||||
"adsZoomFov": 50.0,
|
||||
"adsZoomInFrac": 0.5,
|
||||
"adsZoomOutFrac": 0.4000000059604645
|
||||
},
|
||||
"adsSettingsScale": 0.0,
|
||||
"adsSettingsScaleMain": 0.0,
|
||||
"ammunitionScale": 0.0,
|
||||
"damageScale": 0.0,
|
||||
"damageScaleMin": 0.0,
|
||||
"displayName": "WEAPON_REFLEX_ATTACHMENT",
|
||||
"fireTimersScale": 1.0,
|
||||
"gunKickScale": 0.0,
|
||||
"hideIronSightsWithThisAttachment": false,
|
||||
"hipSpreadScale": 0.0,
|
||||
"idleSettingsScale": 0.0,
|
||||
"loadIndex": 0,
|
||||
"reticleViewModels": [
|
||||
"viewmodel_reticle_reflex",
|
||||
"viewmodel_reticle_custom1",
|
||||
"viewmodel_reticle_custom2",
|
||||
"viewmodel_reticle_custom3",
|
||||
"viewmodel_reticle_custom4",
|
||||
"viewmodel_reticle_custom5",
|
||||
"viewmodel_reticle_custom6",
|
||||
"viewmodel_reticle_custom7"
|
||||
],
|
||||
"shareAmmoWithAlt": false,
|
||||
"sight": {
|
||||
"adsFire": false,
|
||||
"aimDownSight": true,
|
||||
"canHoldBreath": false,
|
||||
"canVariableZoom": false,
|
||||
"hideRailWithThisScope": false,
|
||||
"noAdsWhenMagEmpty": false,
|
||||
"rechamberWhileAds": true
|
||||
},
|
||||
"stateTimersScale": 1.0,
|
||||
"type": "scope",
|
||||
"viewCenterScale": 0.0,
|
||||
"viewKickScale": 0.0,
|
||||
"viewModels": [
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5"
|
||||
],
|
||||
"weapClass": "rifle",
|
||||
"weaponType": "none",
|
||||
"worldModels": [
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5"
|
||||
]
|
||||
}
|
90
zone_raw/guns/attachment/eotechsmg.json
Normal file
90
zone_raw/guns/attachment/eotechsmg.json
Normal file
@ -0,0 +1,90 @@
|
||||
{
|
||||
"_type": "attachment",
|
||||
"_version": 1,
|
||||
"adsSettings": {
|
||||
"adsAimPitch": 0.0,
|
||||
"adsBobFactor": 2.0,
|
||||
"adsCrosshairInFrac": 1.0,
|
||||
"adsCrosshairOutFrac": 0.20000000298023224,
|
||||
"adsReloadTransTime": 300,
|
||||
"adsSpread": 0.0,
|
||||
"adsTransInTime": 0.20000000298023224,
|
||||
"adsTransOutTime": 0.20000000298023224,
|
||||
"adsViewBobMult": 0.20000000298023224,
|
||||
"adsViewErrorMax": 0.0,
|
||||
"adsViewErrorMin": 0.0,
|
||||
"adsZoomFov": 45.0,
|
||||
"adsZoomInFrac": 0.5,
|
||||
"adsZoomOutFrac": 0.4000000059604645
|
||||
},
|
||||
"adsSettingsScale": 0.0,
|
||||
"adsSettingsScaleMain": 0.0,
|
||||
"ammunitionScale": 0.0,
|
||||
"damageScale": 0.0,
|
||||
"damageScaleMin": 0.0,
|
||||
"displayName": "WEAPON_EOTECH_ATTACHMENT",
|
||||
"fireTimersScale": 1.0,
|
||||
"gunKickScale": 0.0,
|
||||
"hideIronSightsWithThisAttachment": false,
|
||||
"hipSpreadScale": 0.0,
|
||||
"idleSettingsScale": 0.0,
|
||||
"loadIndex": 0,
|
||||
"reticleViewModels": [
|
||||
"viewmodel_reticle_eotech",
|
||||
"viewmodel_reticle_custom1",
|
||||
"viewmodel_reticle_custom2",
|
||||
"viewmodel_reticle_custom3",
|
||||
"viewmodel_reticle_custom4",
|
||||
"viewmodel_reticle_custom5",
|
||||
"viewmodel_reticle_custom6",
|
||||
"viewmodel_reticle_custom7"
|
||||
],
|
||||
"shareAmmoWithAlt": false,
|
||||
"sight": {
|
||||
"adsFire": false,
|
||||
"aimDownSight": true,
|
||||
"canHoldBreath": false,
|
||||
"canVariableZoom": false,
|
||||
"hideRailWithThisScope": false,
|
||||
"noAdsWhenMagEmpty": false,
|
||||
"rechamberWhileAds": true
|
||||
},
|
||||
"stateTimersScale": 1.0,
|
||||
"type": "scope",
|
||||
"viewCenterScale": 0.0,
|
||||
"viewKickScale": 0.0,
|
||||
"viewModels": [
|
||||
"viewmodel_eotech",
|
||||
"viewmodel_eotech",
|
||||
"viewmodel_eotech",
|
||||
"viewmodel_eotech",
|
||||
"viewmodel_eotech",
|
||||
"viewmodel_eotech",
|
||||
"viewmodel_eotech",
|
||||
"viewmodel_eotech",
|
||||
"viewmodel_eotech",
|
||||
"viewmodel_eotech",
|
||||
"viewmodel_eotech",
|
||||
"viewmodel_eotech",
|
||||
"viewmodel_eotech",
|
||||
"viewmodel_eotech"
|
||||
],
|
||||
"weapClass": "rifle",
|
||||
"weaponType": "none",
|
||||
"worldModels": [
|
||||
"weapon_eotech",
|
||||
"weapon_eotech",
|
||||
"weapon_eotech",
|
||||
"weapon_eotech",
|
||||
"weapon_eotech",
|
||||
"weapon_eotech",
|
||||
"weapon_eotech",
|
||||
"weapon_eotech",
|
||||
"weapon_eotech",
|
||||
"weapon_eotech",
|
||||
"weapon_eotech",
|
||||
"weapon_eotech",
|
||||
"weapon_eotech",
|
||||
"weapon_eotech"
|
||||
]
|
||||
}
|
60
zone_raw/guns/attachment/heartbeat.json
Normal file
60
zone_raw/guns/attachment/heartbeat.json
Normal file
@ -0,0 +1,60 @@
|
||||
{
|
||||
"_type": "attachment",
|
||||
"_version": 1,
|
||||
"addOns": {
|
||||
"motionTracker": true,
|
||||
"silenced": false
|
||||
},
|
||||
"adsSettingsScale": 0.0,
|
||||
"adsSettingsScaleMain": 0.0,
|
||||
"ammunitionScale": 0.0,
|
||||
"damageScale": 0.0,
|
||||
"damageScaleMin": 0.0,
|
||||
"displayName": "WEAPON_HEARTBEAT_ATTACHMENT",
|
||||
"fireTimersScale": 1.0,
|
||||
"gunKickScale": 0.0,
|
||||
"hideIronSightsWithThisAttachment": false,
|
||||
"hipSpreadScale": 0.0,
|
||||
"idleSettingsScale": 0.0,
|
||||
"loadIndex": 0,
|
||||
"reticleViewModels": [],
|
||||
"shareAmmoWithAlt": false,
|
||||
"stateTimersScale": 1.0,
|
||||
"type": "other",
|
||||
"viewCenterScale": 0.0,
|
||||
"viewKickScale": 0.0,
|
||||
"viewModels": [
|
||||
"viewmodel_heartbeat_iw5",
|
||||
"viewmodel_heartbeat_iw5",
|
||||
"viewmodel_heartbeat_iw5",
|
||||
"viewmodel_heartbeat_iw5",
|
||||
"viewmodel_heartbeat_iw5",
|
||||
"viewmodel_heartbeat_iw5",
|
||||
"viewmodel_heartbeat_iw5",
|
||||
"viewmodel_heartbeat_iw5",
|
||||
"viewmodel_heartbeat_iw5",
|
||||
"viewmodel_heartbeat_iw5",
|
||||
"viewmodel_heartbeat_iw5",
|
||||
"viewmodel_heartbeat_iw5",
|
||||
"viewmodel_heartbeat_iw5",
|
||||
"viewmodel_heartbeat_iw5"
|
||||
],
|
||||
"weapClass": "rifle",
|
||||
"weaponType": "none",
|
||||
"worldModels": [
|
||||
"weapon_heartbeat_iw5",
|
||||
"weapon_heartbeat_iw5",
|
||||
"weapon_heartbeat_iw5",
|
||||
"weapon_heartbeat_iw5",
|
||||
"weapon_heartbeat_iw5",
|
||||
"weapon_heartbeat_iw5",
|
||||
"weapon_heartbeat_iw5",
|
||||
"weapon_heartbeat_iw5",
|
||||
"weapon_heartbeat_iw5",
|
||||
"weapon_heartbeat_iw5",
|
||||
"weapon_heartbeat_iw5",
|
||||
"weapon_heartbeat_iw5",
|
||||
"weapon_heartbeat_iw5",
|
||||
"weapon_heartbeat_iw5"
|
||||
]
|
||||
}
|
90
zone_raw/guns/attachment/reflexsmg.json
Normal file
90
zone_raw/guns/attachment/reflexsmg.json
Normal file
@ -0,0 +1,90 @@
|
||||
{
|
||||
"_type": "attachment",
|
||||
"_version": 1,
|
||||
"adsSettings": {
|
||||
"adsAimPitch": 0.0,
|
||||
"adsBobFactor": 1.0,
|
||||
"adsCrosshairInFrac": 1.0,
|
||||
"adsCrosshairOutFrac": 0.20000000298023224,
|
||||
"adsReloadTransTime": 300,
|
||||
"adsSpread": 0.0,
|
||||
"adsTransInTime": 0.20000000298023224,
|
||||
"adsTransOutTime": 0.20000000298023224,
|
||||
"adsViewBobMult": 0.20000000298023224,
|
||||
"adsViewErrorMax": 0.0,
|
||||
"adsViewErrorMin": 0.0,
|
||||
"adsZoomFov": 50.0,
|
||||
"adsZoomInFrac": 0.5,
|
||||
"adsZoomOutFrac": 0.4000000059604645
|
||||
},
|
||||
"adsSettingsScale": 0.0,
|
||||
"adsSettingsScaleMain": 0.0,
|
||||
"ammunitionScale": 0.0,
|
||||
"damageScale": 0.0,
|
||||
"damageScaleMin": 0.0,
|
||||
"displayName": "WEAPON_REFLEX_ATTACHMENT",
|
||||
"fireTimersScale": 1.0,
|
||||
"gunKickScale": 0.0,
|
||||
"hideIronSightsWithThisAttachment": false,
|
||||
"hipSpreadScale": 0.0,
|
||||
"idleSettingsScale": 0.0,
|
||||
"loadIndex": 0,
|
||||
"reticleViewModels": [
|
||||
"viewmodel_reticle_reflex",
|
||||
"viewmodel_reticle_custom1",
|
||||
"viewmodel_reticle_custom2",
|
||||
"viewmodel_reticle_custom3",
|
||||
"viewmodel_reticle_custom4",
|
||||
"viewmodel_reticle_custom5",
|
||||
"viewmodel_reticle_custom6",
|
||||
"viewmodel_reticle_custom7"
|
||||
],
|
||||
"shareAmmoWithAlt": false,
|
||||
"sight": {
|
||||
"adsFire": false,
|
||||
"aimDownSight": true,
|
||||
"canHoldBreath": false,
|
||||
"canVariableZoom": false,
|
||||
"hideRailWithThisScope": false,
|
||||
"noAdsWhenMagEmpty": false,
|
||||
"rechamberWhileAds": true
|
||||
},
|
||||
"stateTimersScale": 1.0,
|
||||
"type": "scope",
|
||||
"viewCenterScale": 0.0,
|
||||
"viewKickScale": 0.0,
|
||||
"viewModels": [
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5",
|
||||
"viewmodel_reflex_iw5"
|
||||
],
|
||||
"weapClass": "rifle",
|
||||
"weaponType": "none",
|
||||
"worldModels": [
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5",
|
||||
"weapon_reflex_iw5"
|
||||
]
|
||||
}
|
26
zone_raw/guns/attachment/rof.json
Normal file
26
zone_raw/guns/attachment/rof.json
Normal file
@ -0,0 +1,26 @@
|
||||
{
|
||||
"_type": "attachment",
|
||||
"_version": 1,
|
||||
"adsSettingsScale": 0.0,
|
||||
"adsSettingsScaleMain": 0.0,
|
||||
"ammunitionScale": 0.0,
|
||||
"damageScale": 0.0,
|
||||
"damageScaleMin": 0.0,
|
||||
"displayName": "WEAPON_RAPIDFIRE_ATTACHMENT",
|
||||
"fireTimersScale": 0.800000011920929,
|
||||
"gunKickScale": 0.0,
|
||||
"hideIronSightsWithThisAttachment": false,
|
||||
"hipSpreadScale": 0.0,
|
||||
"idleSettingsScale": 0.0,
|
||||
"loadIndex": 0,
|
||||
"reticleViewModels": [],
|
||||
"shareAmmoWithAlt": false,
|
||||
"stateTimersScale": 1.0,
|
||||
"type": "other",
|
||||
"viewCenterScale": 0.0,
|
||||
"viewKickScale": 0.0,
|
||||
"viewModels": [],
|
||||
"weapClass": "rifle",
|
||||
"weaponType": "none",
|
||||
"worldModels": []
|
||||
}
|
63
zone_raw/guns/attachment/silencer.json
Normal file
63
zone_raw/guns/attachment/silencer.json
Normal file
@ -0,0 +1,63 @@
|
||||
{
|
||||
"_type": "attachment",
|
||||
"_version": 1,
|
||||
"addOns": {
|
||||
"motionTracker": false,
|
||||
"silenced": true
|
||||
},
|
||||
"adsSettingsScale": 0.0,
|
||||
"adsSettingsScaleMain": 0.0,
|
||||
"ammunitionScale": 0.0,
|
||||
"damageScale": 0.75,
|
||||
"damageScaleMin": 0.75,
|
||||
"displayName": "WEAPON_SILENCER_ATTACHMENT",
|
||||
"fireTimersScale": 1.0,
|
||||
"gunKickScale": 0.0,
|
||||
"hideIronSightsWithThisAttachment": false,
|
||||
"hipSpreadScale": 0.0,
|
||||
"idleSettingsScale": 0.0,
|
||||
"loadIndex": 0,
|
||||
"reticleViewModels": [],
|
||||
"rumbles": {
|
||||
"fireRumble": "silencer_fire"
|
||||
},
|
||||
"shareAmmoWithAlt": false,
|
||||
"stateTimersScale": 1.0,
|
||||
"type": "other",
|
||||
"viewCenterScale": 0.0,
|
||||
"viewKickScale": 0.0,
|
||||
"viewModels": [
|
||||
"viewmodel_silencer_01",
|
||||
"viewmodel_silencer_01",
|
||||
"viewmodel_silencer_01",
|
||||
"viewmodel_silencer_01",
|
||||
"viewmodel_silencer_01",
|
||||
"viewmodel_silencer_01",
|
||||
"viewmodel_silencer_01",
|
||||
"viewmodel_silencer_01",
|
||||
"viewmodel_silencer_01",
|
||||
"viewmodel_silencer_01",
|
||||
"viewmodel_silencer_01",
|
||||
"viewmodel_silencer_01",
|
||||
"viewmodel_silencer_01",
|
||||
"viewmodel_silencer_01"
|
||||
],
|
||||
"weapClass": "rifle",
|
||||
"weaponType": "none",
|
||||
"worldModels": [
|
||||
"weapon_silencer_01",
|
||||
"weapon_silencer_01",
|
||||
"weapon_silencer_01",
|
||||
"weapon_silencer_01",
|
||||
"weapon_silencer_01",
|
||||
"weapon_silencer_01",
|
||||
"weapon_silencer_01",
|
||||
"weapon_silencer_01",
|
||||
"weapon_silencer_01",
|
||||
"weapon_silencer_01",
|
||||
"weapon_silencer_01",
|
||||
"weapon_silencer_01",
|
||||
"weapon_silencer_01",
|
||||
"weapon_silencer_01"
|
||||
]
|
||||
}
|
63
zone_raw/guns/attachment/silencer03.json
Normal file
63
zone_raw/guns/attachment/silencer03.json
Normal file
@ -0,0 +1,63 @@
|
||||
{
|
||||
"_type": "attachment",
|
||||
"_version": 1,
|
||||
"addOns": {
|
||||
"motionTracker": false,
|
||||
"silenced": true
|
||||
},
|
||||
"adsSettingsScale": 0.0,
|
||||
"adsSettingsScaleMain": 0.0,
|
||||
"ammunitionScale": 0.0,
|
||||
"damageScale": 0.75,
|
||||
"damageScaleMin": 0.75,
|
||||
"displayName": "WEAPON_SILENCER_ATTACHMENT",
|
||||
"fireTimersScale": 1.0,
|
||||
"gunKickScale": 0.0,
|
||||
"hideIronSightsWithThisAttachment": false,
|
||||
"hipSpreadScale": 0.0,
|
||||
"idleSettingsScale": 0.0,
|
||||
"loadIndex": 0,
|
||||
"reticleViewModels": [],
|
||||
"rumbles": {
|
||||
"fireRumble": "silencer_fire"
|
||||
},
|
||||
"shareAmmoWithAlt": false,
|
||||
"stateTimersScale": 1.0,
|
||||
"type": "other",
|
||||
"viewCenterScale": 0.0,
|
||||
"viewKickScale": 0.0,
|
||||
"viewModels": [
|
||||
"viewmodel_silencer_03",
|
||||
"viewmodel_silencer_03",
|
||||
"viewmodel_silencer_03",
|
||||
"viewmodel_silencer_03",
|
||||
"viewmodel_silencer_03",
|
||||
"viewmodel_silencer_03",
|
||||
"viewmodel_silencer_03",
|
||||
"viewmodel_silencer_03",
|
||||
"viewmodel_silencer_03",
|
||||
"viewmodel_silencer_03",
|
||||
"viewmodel_silencer_03",
|
||||
"viewmodel_silencer_03",
|
||||
"viewmodel_silencer_03",
|
||||
"viewmodel_silencer_03"
|
||||
],
|
||||
"weapClass": "rifle",
|
||||
"weaponType": "none",
|
||||
"worldModels": [
|
||||
"weapon_silencer_03",
|
||||
"weapon_silencer_03",
|
||||
"weapon_silencer_03",
|
||||
"weapon_silencer_03",
|
||||
"weapon_silencer_03",
|
||||
"weapon_silencer_03",
|
||||
"weapon_silencer_03",
|
||||
"weapon_silencer_03",
|
||||
"weapon_silencer_03",
|
||||
"weapon_silencer_03",
|
||||
"weapon_silencer_03",
|
||||
"weapon_silencer_03",
|
||||
"weapon_silencer_03",
|
||||
"weapon_silencer_03"
|
||||
]
|
||||
}
|
93
zone_raw/guns/attachment/thermal.json
Normal file
93
zone_raw/guns/attachment/thermal.json
Normal file
@ -0,0 +1,93 @@
|
||||
{
|
||||
"_type": "attachment",
|
||||
"_version": 1,
|
||||
"adsOverlay": {
|
||||
"height": 480.0,
|
||||
"heightSplitscreen": 480.0,
|
||||
"reticle": "crosshair",
|
||||
"shader": "scope_overlay_m14_night",
|
||||
"shaderEMP": "scope_overlay_m14_night_emp",
|
||||
"shaderEMPLowRes": "scope_overlay_m14_night_emp_low_res",
|
||||
"shaderLowRes": "scope_overlay_m14_night_low_res",
|
||||
"thermalScope": true,
|
||||
"width": 480.0,
|
||||
"widthSplitscreen": 480.0
|
||||
},
|
||||
"adsSettings": {
|
||||
"adsAimPitch": 0.0,
|
||||
"adsBobFactor": 2.0,
|
||||
"adsCrosshairInFrac": 1.0,
|
||||
"adsCrosshairOutFrac": 0.20000000298023224,
|
||||
"adsReloadTransTime": 449,
|
||||
"adsSpread": 0.0,
|
||||
"adsTransInTime": 0.3799999952316284,
|
||||
"adsTransOutTime": 0.3799999952316284,
|
||||
"adsViewBobMult": 0.20000000298023224,
|
||||
"adsViewErrorMax": 0.0,
|
||||
"adsViewErrorMin": 0.0,
|
||||
"adsZoomFov": 30.0,
|
||||
"adsZoomInFrac": 0.0,
|
||||
"adsZoomOutFrac": 0.0
|
||||
},
|
||||
"adsSettingsScale": 0.0,
|
||||
"adsSettingsScaleMain": 0.0,
|
||||
"ammunitionScale": 0.0,
|
||||
"damageScale": 0.0,
|
||||
"damageScaleMin": 0.0,
|
||||
"displayName": "WEAPON_THERMAL_ATTACHMENT",
|
||||
"fireTimersScale": 1.0,
|
||||
"gunKickScale": 0.0,
|
||||
"hideIronSightsWithThisAttachment": false,
|
||||
"hipSpreadScale": 0.0,
|
||||
"idleSettingsScale": 0.0,
|
||||
"loadIndex": 0,
|
||||
"reticleViewModels": [],
|
||||
"shareAmmoWithAlt": false,
|
||||
"sight": {
|
||||
"adsFire": false,
|
||||
"aimDownSight": true,
|
||||
"canHoldBreath": true,
|
||||
"canVariableZoom": false,
|
||||
"hideRailWithThisScope": false,
|
||||
"noAdsWhenMagEmpty": false,
|
||||
"rechamberWhileAds": true
|
||||
},
|
||||
"stateTimersScale": 1.0,
|
||||
"type": "scope",
|
||||
"viewCenterScale": 0.0,
|
||||
"viewKickScale": 0.0,
|
||||
"viewModels": [
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope"
|
||||
],
|
||||
"weapClass": "rifle",
|
||||
"weaponType": "none",
|
||||
"worldModels": [
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope"
|
||||
]
|
||||
}
|
93
zone_raw/guns/attachment/thermalsmg.json
Normal file
93
zone_raw/guns/attachment/thermalsmg.json
Normal file
@ -0,0 +1,93 @@
|
||||
{
|
||||
"_type": "attachment",
|
||||
"_version": 1,
|
||||
"adsOverlay": {
|
||||
"height": 480.0,
|
||||
"heightSplitscreen": 480.0,
|
||||
"reticle": "crosshair",
|
||||
"shader": "scope_overlay_m14_night",
|
||||
"shaderEMP": "scope_overlay_m14_night_emp",
|
||||
"shaderEMPLowRes": "scope_overlay_m14_night_emp_low_res",
|
||||
"shaderLowRes": "scope_overlay_m14_night_low_res",
|
||||
"thermalScope": true,
|
||||
"width": 480.0,
|
||||
"widthSplitscreen": 480.0
|
||||
},
|
||||
"adsSettings": {
|
||||
"adsAimPitch": 0.0,
|
||||
"adsBobFactor": 2.0,
|
||||
"adsCrosshairInFrac": 1.0,
|
||||
"adsCrosshairOutFrac": 0.20000000298023224,
|
||||
"adsReloadTransTime": 300,
|
||||
"adsSpread": 0.0,
|
||||
"adsTransInTime": 0.25,
|
||||
"adsTransOutTime": 0.25,
|
||||
"adsViewBobMult": 0.20000000298023224,
|
||||
"adsViewErrorMax": 0.0,
|
||||
"adsViewErrorMin": 0.0,
|
||||
"adsZoomFov": 30.0,
|
||||
"adsZoomInFrac": 0.0,
|
||||
"adsZoomOutFrac": 0.0
|
||||
},
|
||||
"adsSettingsScale": 0.0,
|
||||
"adsSettingsScaleMain": 0.0,
|
||||
"ammunitionScale": 0.0,
|
||||
"damageScale": 0.0,
|
||||
"damageScaleMin": 0.0,
|
||||
"displayName": "WEAPON_THERMAL_ATTACHMENT",
|
||||
"fireTimersScale": 1.0,
|
||||
"gunKickScale": 0.0,
|
||||
"hideIronSightsWithThisAttachment": false,
|
||||
"hipSpreadScale": 0.0,
|
||||
"idleSettingsScale": 0.0,
|
||||
"loadIndex": 0,
|
||||
"reticleViewModels": [],
|
||||
"shareAmmoWithAlt": false,
|
||||
"sight": {
|
||||
"adsFire": false,
|
||||
"aimDownSight": true,
|
||||
"canHoldBreath": true,
|
||||
"canVariableZoom": false,
|
||||
"hideRailWithThisScope": false,
|
||||
"noAdsWhenMagEmpty": false,
|
||||
"rechamberWhileAds": true
|
||||
},
|
||||
"stateTimersScale": 1.0,
|
||||
"type": "scope",
|
||||
"viewCenterScale": 0.0,
|
||||
"viewKickScale": 0.0,
|
||||
"viewModels": [
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope",
|
||||
"viewmodel_thermal_scope"
|
||||
],
|
||||
"weapClass": "rifle",
|
||||
"weaponType": "none",
|
||||
"worldModels": [
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope",
|
||||
"weapon_thermal_scope"
|
||||
]
|
||||
}
|
26
zone_raw/guns/attachment/xmags.json
Normal file
26
zone_raw/guns/attachment/xmags.json
Normal file
@ -0,0 +1,26 @@
|
||||
{
|
||||
"_type": "attachment",
|
||||
"_version": 1,
|
||||
"adsSettingsScale": 0.0,
|
||||
"adsSettingsScaleMain": 0.0,
|
||||
"ammunitionScale": 1.5,
|
||||
"damageScale": 0.0,
|
||||
"damageScaleMin": 0.0,
|
||||
"displayName": "WEAPON_XMAGS_ATTACHMENT",
|
||||
"fireTimersScale": 1.0,
|
||||
"gunKickScale": 0.0,
|
||||
"hideIronSightsWithThisAttachment": false,
|
||||
"hipSpreadScale": 0.0,
|
||||
"idleSettingsScale": 0.0,
|
||||
"loadIndex": 0,
|
||||
"reticleViewModels": [],
|
||||
"shareAmmoWithAlt": false,
|
||||
"stateTimersScale": 1.0,
|
||||
"type": "other",
|
||||
"viewCenterScale": 0.0,
|
||||
"viewKickScale": 0.0,
|
||||
"viewModels": [],
|
||||
"weapClass": "rifle",
|
||||
"weaponType": "none",
|
||||
"worldModels": []
|
||||
}
|
8
zone_raw/guns/english/localizedstrings/weapons.str
Normal file
8
zone_raw/guns/english/localizedstrings/weapons.str
Normal file
@ -0,0 +1,8 @@
|
||||
VERSION "1"
|
||||
CONFIG "C:/trees/cod3/cod3/bin/StringEd.cfg"
|
||||
FILENOTES "Made for AlterWare IW5-Mod"
|
||||
|
||||
REFERENCE WEAPON_CHEYTAC
|
||||
LANG_ENGLISH "INTERVENTION"
|
||||
|
||||
ENDMARKER
|
BIN
zone_raw/guns/images/hud_cheytac.iwi
Normal file
BIN
zone_raw/guns/images/hud_cheytac.iwi
Normal file
Binary file not shown.
BIN
zone_raw/guns/images/weapon_cheytac_new_col.iwi
Normal file
BIN
zone_raw/guns/images/weapon_cheytac_new_col.iwi
Normal file
Binary file not shown.
BIN
zone_raw/guns/images/weapon_cheytac_new_nml.iwi
Normal file
BIN
zone_raw/guns/images/weapon_cheytac_new_nml.iwi
Normal file
Binary file not shown.
BIN
zone_raw/guns/images/weapon_cheytac_new_scope_col.iwi
Normal file
BIN
zone_raw/guns/images/weapon_cheytac_new_scope_col.iwi
Normal file
Binary file not shown.
BIN
zone_raw/guns/images/weapon_cheytac_new_scope_nml.iwi
Normal file
BIN
zone_raw/guns/images/weapon_cheytac_new_scope_nml.iwi
Normal file
Binary file not shown.
BIN
zone_raw/guns/images/weapon_white.iwi
Normal file
BIN
zone_raw/guns/images/weapon_white.iwi
Normal file
Binary file not shown.
BIN
zone_raw/guns/images/~weapon_cheytac_new_scope_spc~6c239cf8.iwi
Normal file
BIN
zone_raw/guns/images/~weapon_cheytac_new_scope_spc~6c239cf8.iwi
Normal file
Binary file not shown.
BIN
zone_raw/guns/images/~weapon_cheytac_new_spc-r-20g~57348e7e.iwi
Normal file
BIN
zone_raw/guns/images/~weapon_cheytac_new_spc-r-20g~57348e7e.iwi
Normal file
Binary file not shown.
BIN
zone_raw/guns/images/~weapon_white-rgb&weapon_white-l-67.iwi
Normal file
BIN
zone_raw/guns/images/~weapon_white-rgb&weapon_white-l-67.iwi
Normal file
Binary file not shown.
1
zone_raw/guns/mod
Normal file
1
zone_raw/guns/mod
Normal file
@ -0,0 +1 @@
|
||||
Legalize Nuclear Bombs
|
BIN
zone_raw/guns/model_export/fx_pistol_shell_lod010.glb
Normal file
BIN
zone_raw/guns/model_export/fx_pistol_shell_lod010.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/fx_pistol_shell_lod110.glb
Normal file
BIN
zone_raw/guns/model_export/fx_pistol_shell_lod110.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/fx_rifle_shell10.glb
Normal file
BIN
zone_raw/guns/model_export/fx_rifle_shell10.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/fx_rifle_shell_blur10.glb
Normal file
BIN
zone_raw/guns/model_export/fx_rifle_shell_blur10.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/stow_mid10.glb
Normal file
BIN
zone_raw/guns/model_export/stow_mid10.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/viewhands_us_army40.glb
Normal file
BIN
zone_raw/guns/model_export/viewhands_us_army40.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/viewmodel_acog_210.glb
Normal file
BIN
zone_raw/guns/model_export/viewmodel_acog_210.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/viewmodel_bolo_knife10.glb
Normal file
BIN
zone_raw/guns/model_export/viewmodel_bolo_knife10.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/viewmodel_cheytac10_no_attach.glb
Normal file
BIN
zone_raw/guns/model_export/viewmodel_cheytac10_no_attach.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/viewmodel_eotech_210.glb
Normal file
BIN
zone_raw/guns/model_export/viewmodel_eotech_210.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/viewmodel_heartbeat_iw510.glb
Normal file
BIN
zone_raw/guns/model_export/viewmodel_heartbeat_iw510.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/viewmodel_reflex_iw510.glb
Normal file
BIN
zone_raw/guns/model_export/viewmodel_reflex_iw510.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/viewmodel_reticle10.glb
Normal file
BIN
zone_raw/guns/model_export/viewmodel_reticle10.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/viewmodel_silencer_0110.glb
Normal file
BIN
zone_raw/guns/model_export/viewmodel_silencer_0110.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/viewmodel_silencer_0310.glb
Normal file
BIN
zone_raw/guns/model_export/viewmodel_silencer_0310.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/viewmodel_thermal_scope_210.glb
Normal file
BIN
zone_raw/guns/model_export/viewmodel_thermal_scope_210.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_acog_2_lod011.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_acog_2_lod011.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_acog_2_lod110.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_acog_2_lod110.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_acog_2_lod210.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_acog_2_lod210.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_bolo_knife_lod010.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_bolo_knife_lod010.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_bolo_knife_lod110.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_bolo_knife_lod110.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_bolo_knife_lod210.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_bolo_knife_lod210.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_cheytac_lod010_no_attach.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_cheytac_lod010_no_attach.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_cheytac_lod110_no_attach.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_cheytac_lod110_no_attach.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_cheytac_lod210_no_attach.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_cheytac_lod210_no_attach.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_eotech_2_lod011.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_eotech_2_lod011.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_eotech_2_lod110.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_eotech_2_lod110.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_eotech_2_lod210.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_eotech_2_lod210.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_heartbeat_iw5_lod011.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_heartbeat_iw5_lod011.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_heartbeat_iw5_lod110.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_heartbeat_iw5_lod110.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_heartbeat_iw5_lod210.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_heartbeat_iw5_lod210.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_reflex_iw5_lod011.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_reflex_iw5_lod011.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_reflex_iw5_lod110.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_reflex_iw5_lod110.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_reflex_iw5_lod210.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_reflex_iw5_lod210.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_silencer_01_lod011.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_silencer_01_lod011.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_silencer_01_lod110.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_silencer_01_lod110.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_silencer_01_lod210.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_silencer_01_lod210.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_silencer_03_lod011.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_silencer_03_lod011.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_silencer_03_lod110.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_silencer_03_lod110.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_silencer_03_lod210.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_silencer_03_lod210.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_thermal_scope_2_lod011.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_thermal_scope_2_lod011.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_thermal_scope_2_lod110.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_thermal_scope_2_lod110.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/weapon_thermal_scope_2_lod210.glb
Normal file
BIN
zone_raw/guns/model_export/weapon_thermal_scope_2_lod210.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/zonetool_viewmodel_ak74u_iw5_0.glb
Normal file
BIN
zone_raw/guns/model_export/zonetool_viewmodel_ak74u_iw5_0.glb
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
zone_raw/guns/model_export/zonetool_weapon_ak74u_clip_iw5_0.glb
Normal file
BIN
zone_raw/guns/model_export/zonetool_weapon_ak74u_clip_iw5_0.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/zonetool_weapon_ak74u_clip_iw5_1.glb
Normal file
BIN
zone_raw/guns/model_export/zonetool_weapon_ak74u_clip_iw5_1.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/zonetool_weapon_ak74u_iw5_0.glb
Normal file
BIN
zone_raw/guns/model_export/zonetool_weapon_ak74u_iw5_0.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/zonetool_weapon_ak74u_iw5_1.glb
Normal file
BIN
zone_raw/guns/model_export/zonetool_weapon_ak74u_iw5_1.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/zonetool_weapon_ak74u_iw5_2.glb
Normal file
BIN
zone_raw/guns/model_export/zonetool_weapon_ak74u_iw5_2.glb
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
zone_raw/guns/model_export/zonetool_weapon_ak74u_iw5_blue_0.glb
Normal file
BIN
zone_raw/guns/model_export/zonetool_weapon_ak74u_iw5_blue_0.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/zonetool_weapon_ak74u_iw5_blue_1.glb
Normal file
BIN
zone_raw/guns/model_export/zonetool_weapon_ak74u_iw5_blue_1.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/zonetool_weapon_ak74u_iw5_blue_2.glb
Normal file
BIN
zone_raw/guns/model_export/zonetool_weapon_ak74u_iw5_blue_2.glb
Normal file
Binary file not shown.
BIN
zone_raw/guns/model_export/zonetool_weapon_ak74u_iw5_choco_0.glb
Normal file
BIN
zone_raw/guns/model_export/zonetool_weapon_ak74u_iw5_choco_0.glb
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user