Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migration to dll spawner+ares+phobos #288

Draft
wants to merge 40 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
2ed5274
Update .gitattributes
Belonit Mar 11, 2024
559263b
Update .gitignore
Belonit Mar 11, 2024
28d63ee
Update README_Onboarding.md
Belonit Mar 11, 2024
4e9feb3
Delete legacy ClassicMode
Belonit Mar 11, 2024
f12c7d9
Move third party licenses to the Licenses folder
Belonit Mar 11, 2024
b90cb4c
Update licenses
Belonit Mar 11, 2024
4a50a70
Update clienticon.ico
Belonit Mar 11, 2024
cd802b5
Create ra2.ico
Belonit Mar 11, 2024
5f1d4d7
Add mix-packer script
Belonit Mar 11, 2024
cc278e1
Move required files from expandspawn0*.mix to cncnet.mix
Belonit Mar 11, 2024
86a9d67
Put RA2 mode files in ra2mode.mix
Belonit Mar 11, 2024
fa334a3
Add artmd.ini to cncnet.mix
Belonit Mar 11, 2024
96596a6
Add correct vanilla loading screen bg of Observer to cncnet.mix
Belonit Mar 11, 2024
bb0a8bc
Add sidec0*md.mix to cncnet.mix and fix lspacer.shp
Belonit Mar 11, 2024
3d4235e
Move seasonal crates to cncnet.mix
Belonit Mar 11, 2024
4ffa7b8
Move spawner.xdp to cncnet.mix
Belonit Mar 11, 2024
3216bff
Move spawner2.xdp to ra2mode.mix
Belonit Mar 11, 2024
2ce18d1
Update gamemd-spawn.exe
Belonit Mar 11, 2024
4ddce2d
Add Ares 3.0p1
Belonit Mar 11, 2024
c545ddf
Add Phobos v0.3.0.1
Belonit Mar 11, 2024
220cb3d
Add ImprovedFont from Phobos team
Belonit Mar 11, 2024
2d215d6
Update rules for support Ares & Phobos
Belonit Mar 11, 2024
a6534b2
Setup PlacementPreview
Belonit Mar 11, 2024
6fde220
Update ClientDefinitions.ini
Belonit Mar 11, 2024
c2097f6
Create FHCConfig.ini
Belonit Mar 11, 2024
a40a00e
Update MainMenu.ini
Belonit Mar 11, 2024
9ff7ee9
Show AI on Observer sidebar
Belonit Mar 11, 2024
639ad24
Add more files to delete to account for much older clients
Belonit Mar 11, 2024
ec567f8
Add support Campaign (#33 #125 #290)
Belonit Mar 11, 2024
8445f97
Fix GameSpeed DropDown in Multiplayer (#171)
Belonit Mar 11, 2024
7d10113
Update OptionsWindow.ini (#291)
Belonit Mar 11, 2024
3310f2a
Fix broken AI base defence in RA2 Mode (#289)
Belonit Mar 11, 2024
150bfac
Fix some animations in RA2 mode (#299)
Belonit Mar 11, 2024
90e0a39
Fix Ore Refinery Animation in RA2 mode
Belonit Mar 11, 2024
b483b5d
Fix an issue where IFV with Engineer could repair buildings in RA2 mode
Belonit Mar 11, 2024
b998db0
Disable DetectDisguise and SensorArray on Psychic Sensor in YR
Belonit Mar 11, 2024
e6e3c58
Add Trees Shadow Fix by Starkku
Belonit Mar 11, 2024
085a0b4
Update client to Ares build from commit 89ce3db1243baace3fb0bc0ce750…
Belonit Mar 11, 2024
cb13582
Add cncnet5.dll (YRpp-Spawner (AntiCheat) v0.0.0.2)
Belonit Mar 11, 2024
c1ffd3c
Update cncnet5.dll (YRpp-Spawner (HardEnd+AntiCheat) v0.0.0.3)
Belonit Mar 27, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 6 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
* text=crlf

version text eol=crlf
*.xdp text eol=crlf
*.cfg text eol=crlf
*.ini text eol=crlf
*.map text eol=crlf
*.txt text eol=crlf
*.json text eol=crlf
preupdateexec text eol=crlf
updateexec text eol=crlf
version text eol=crlf

*.sh text eol=lf
*.ps1 eol=lf
17 changes: 9 additions & 8 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
# Run when there is a release published
release:
types: [ published ]

# Allows for this workflow to be run manually
workflow_dispatch:

Expand All @@ -40,7 +40,7 @@ jobs:
run: npm ci

# This step validates the format of the tag created, if this was a published release.
# Currently, it must be in the format "yr-X.Y" or "yr-X.Y.Z"
# Currently, it must be in the format "yr-X.Y" or "yr-X.Y.Z"
- name: Validate Tag Name
if: github.event_name == 'release'
working-directory: tools
Expand All @@ -61,14 +61,18 @@ jobs:
# replace the second line in the file with the proper version number (X.Y.Z-dev.N)
run: sed -i "2 s/.*/${{env.GitVersion_SemVer}}/" ./package/versionconfig.ini

- name: Pack Game Assets
working-directory: tools
run: npm run mix-packer

- name: Version Writer
working-directory: tools
run: npm run version-writer

# Create package archive
- name: Create package artifact (tar)
run: tar -C ./package -czvf package.tar.gz .

- name: Create package artifact (zip)
run: 7z.exe a package.zip ./package

Expand Down Expand Up @@ -106,7 +110,7 @@ jobs:
if: github.event_name == 'release'
working-directory: tools
run: npm run release-asset-uploader -- --token ${{ secrets.GITHUB_TOKEN }} --assetName "package_${{env.GitVersion_SemVer}} (zip)" --assetPath ../package.zip

# Upload installer to any relevant releases for current tag
# If there is no release/tag, this will not do anything
- name: Upload Installer Release Asset
Expand Down Expand Up @@ -156,7 +160,7 @@ jobs:
tar -xzvf ${{ secrets.SSH_PATH_UPDATES }}/${{ needs.build-package.outputs.packageUploadVersion }}/package.tar.gz
rm ${{ secrets.SSH_PATH_UPDATES }}/${{ needs.build-package.outputs.packageUploadVersion }}/package.tar.gz
chmod 777 --recursive ${{ secrets.SSH_PATH_UPDATES }}/${{ needs.build-package.outputs.packageUploadVersion }}/*

# Create/update a mirror link for client update purposes, using the GitVersion pre release label as the link name.
# See the file "GitVersion.yml" for more details on the name that will be used for a given branch.
# Ex: if the branch name is "develop", it will create a link of "dev" to point to the directory "updates/X.Y.Z-dev".
Expand All @@ -175,6 +179,3 @@ jobs:
script: |
cd ${{ secrets.SSH_PATH_GAMES_YR }}
ln -sfn updates/${{ needs.build-package.outputs.packageUploadVersion }} ${{ needs.build-package.outputs.mirrorLinkName }}



57 changes: 41 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,24 +1,49 @@
/package/RA2MD.ini
/package/Maps/Custom/*.zip
/game-assets/**/*.mix

/package/**/*.SAV
/package/BINKW32.DLL
/package/Blowfish.dll
/package/Client/
/package/cncnet.mix
/package/ddraw.dll
/package/ddraw.ini
/package/debug/
/package/langmd.mix
/package/language.mix
/package/Map Editor/**
/package/Maps/Custom/*.map
/package/Maps/Custom/*.png
/package/Maps/Custom/*.yrm
/package/version
/package/Maps/Custom/*.zip
/package/maps01.mix
/package/maps02.mix
/package/mapsmd03.mix
/package/movies01.mix
/package/movies02.mix
/package/movmd03.mix
/package/multi.mix
/package/multimd.mix
/package/QM/*.txt
/package/Qt/QM/
/package/VersionWriter.exe
/package/ra2.mix
/package/RA2MD.ini
/package/RA2MD.ini
/package/ra2md.mix
/package/ra2mode.mix
/package/Saved Games/*.SAV
/package/spawn.ini
/package/spawnmap.ini
/package/syringe.log
/package/theme.mix
/package/thememd.mix
/package/version
/package/version_u
/package/VersionWriter-CopiedFiles
/logs
/gitversion.json
ddraw.dll
ddraw.ini
RA2MD.ini
spawn.ini
spawnmap.ini
version_u
/package/Client/
.idea
/package/VersionWriter.exe

.idea/*
/tools/node_modules
/CnCNet5_YR_Installer.exe
/gitversion.json
/logs
/package.tar.gz
/Client/
/tools/node_modules
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ You MUST edit the `YRSource` property in the `Directory.Build.Game.YR.props` fil
### Repository Structure

- `package` - This directory contains the exact file structure that should make up the client package that is delivered to users.
- `resources` - This directory contains any resources to assist in building the package, like other theming elements. For example, this directory contains various `expandspawn09.mix` files for custom crates. These `mix` files can be moved to the `package` directory when we want to change the crate theme.
- `game-assets` - This directory contains game assets used by CnCNet. All child directories with a `.pack` extension will be packed at build time into `*.mix` archives. Parent `*.mix` will be moved to the `package` directory.
- `resources` - This directory contains any resources to assist in building the package, like other theming elements.
- `tools` - This directory contains tools that are used to help build the package. It includes tools like:
- `download-artifacts/download-client.ps1` - A powershell script to automatically download a specific set of binaries of the `xna-cncnet-client`
- `download-artifacts/download-client-launcher.ps1` - A powershell script to automatically download a specific instance of the client launcher.
Expand Down
12 changes: 6 additions & 6 deletions README_Onboarding.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
**How to contribute to this repository**
1. Install git from `https://git-scm.com/`
2. Download the CnCNet YR Package repository code
- Create a directory anywhere on your local.
- Create a directory anywhere on your local.
- Right-click in directory select `git bash`, or navigate to the directory in terminal.
- Enter `git clone https://github.com/CnCNet/cncnet-yr-client-package.git`
- You now have the codebase on your local machine.
Expand All @@ -13,8 +13,8 @@
1. Fetch latest code from repository and update your local code
- From project terminal execute `git fetch`, `git pull`
- Create a new branch from develop


2. Prepare new maps and map images
- Every map file has an accompanying map image with the same name.
- Map file names should be as follows: `[num_players]_[mapName].map`, e.g. `2_hail_mary.map`, `2_hail_mary.png`
Expand All @@ -23,7 +23,7 @@
- Map files should not have enhanced preview image and should be small in file size.
- Map images should end in .png, should be x768 on longest side, should run through [TinyPNG](https://tinypng.com/) to shrink the image file size

3. Add new map files to the project.
3. Add new map files to the project.
- If the map is to be played on the ladder, place the map files and map images in `package\Maps\Yuri's Revenge\`
- If the map is non-ladder, place it in appropriate folder. Battle, Mod Maps

Expand All @@ -32,10 +32,10 @@
- Execute this script to automatically update `MpMaps.ini` for you. `\tools\mpmaps-updater\maps-updater.bat`
- View the output of the bat file to see any warnings or errors.
- Open MpMaps.ini and ensure each new map you have inserted is in the file, and double check the GameModes and details.

5. Commit and push
- When all changes are ready, use git to add the files you added, then commit and push them.
- Using git tools in the IDE is pretty useful for this stuff.

6. Create a pull request from your branch to `develop` at https://github.com/CnCNet/cncnet-yr-client-package/pulls
- Once your code is merged, it is all ready to be updated in the client. There are separate steps to execute the client update with the latest code.
17 changes: 17 additions & 0 deletions game-assets/cncnet.pack/TreesShadowFix/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Trees Shadow Fix

### Contributors

- Starkku

### URL

- https://ppmforums.com/topic-35406

### Description

```
Nothing huge really, just the trees from the unmodified game with duplicated frames to prevent the shadow from appearing as 'damaged artwork' (you might've noticed the cyan blobs sometimes appearing where a tree was previously standing) for all theaters, including some extra trees like the dead ones from desert for theaters like temperate and urban.

Credit is not necessary but can do that if you feel like it.
```
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree01.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree01.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree01.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree01.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree01.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree02.des
Binary file not shown.
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree02.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree02.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree02.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree03.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree03.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree03.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree03.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree03.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree04.des
Binary file not shown.
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree04.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree04.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree04.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree05.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree05.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree05.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree05.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree05.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree06.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree06.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree06.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree06.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree06.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree07.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree07.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree07.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree07.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree07.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree08.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree08.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree08.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree08.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree08.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree09.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree09.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree09.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree09.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree09.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree10.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree10.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree10.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree10.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree10.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree11.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree11.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree11.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree11.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree11.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree12.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree12.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree12.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree12.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree12.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree13.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree13.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree13.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree13.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree13.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree14.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree14.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree14.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree14.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree14.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree15.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree15.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree15.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree15.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree15.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree16.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree16.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree16.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree16.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree16.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree17.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree17.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree17.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree17.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree17.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree18.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree18.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree18.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree18.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree18.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree19.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree19.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree19.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree19.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree19.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree20.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree20.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree20.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree20.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree20.urb
Binary file not shown.
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree21.sno
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree21.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree22.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree22.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree22.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree22.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree22.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree23.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree23.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree23.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree23.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree23.urb
Binary file not shown.
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree24.sno
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree25.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree25.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree25.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree25.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree25.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree26.des
Binary file not shown.
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree26.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree26.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree26.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree27.des
Binary file not shown.
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree27.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree27.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree27.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree28.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree28.sno
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree28.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree28.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree28.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree29.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree29.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree29.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree29.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree30.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree30.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree30.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree30.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree31.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree31.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree31.ubn
Binary file not shown.
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree32.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree32.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree32.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree32.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree33.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree33.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree33.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree33.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree34.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree34.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree34.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree34.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree35.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree35.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree35.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree35.urb
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree36.des
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree36.tem
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree36.ubn
Binary file not shown.
Binary file added game-assets/cncnet.pack/TreesShadowFix/tree36.urb
Binary file not shown.
Loading
Loading