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

Fix: Listening Outpost Damaged Smoke Effect Sticks After Repair #261

Merged
merged 3 commits into from
Sep 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Patch104pZH/Design/Tasks/commy2_tasks.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ https://github.com/commy2/zerohour/issues/209 [MAYBE][NPROJECT] Demo Gener
https://github.com/commy2/zerohour/issues/208 [MAYBE][NPROJECT] Demo General Terror Bike Damages Allies Before Demolitions Upgrade
https://github.com/commy2/zerohour/issues/207 [IMPROVEMENT][NPROJECT] Demo General Terrorist On Bike Missing Red Smoke Effect After Demolitions Upgrade
https://github.com/commy2/zerohour/issues/206 [MAYBE] Combat Chinook Moves Very Close To Target When Passengers Are Ordered To Attack
https://github.com/commy2/zerohour/issues/205 [IMPROVEMENT] Listening Outpost Damaged Smoke Effect Sticks After Repair
https://github.com/commy2/zerohour/issues/205 [DONE] Listening Outpost Damaged Smoke Effect Sticks After Repair
https://github.com/commy2/zerohour/issues/204 [MAYBE] Fire Base Cannot Order Passengers To Attack Airborne Targets
https://github.com/commy2/zerohour/issues/203 [MAYBE][NPROJECT] Overlord With Bunker Cannot Order Passengers To Attack Airborne Targets
https://github.com/commy2/zerohour/issues/202 [MAYBE][NPROJECT] Helix With Bunker Cannot Order Passengers To Attack Airborne Targets
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2692,7 +2692,6 @@ Object ChinaVehicleListeningOutpost
End

Behavior = TransitionDamageFX ModuleTag_08
ReallyDamagedParticleSystem1 = Bone:Smoke RandomBone:Yes PSys:SmallLightSmokeColumn
ReallyDamagedFXList1 = Loc: X:0 Y:0 Z:0 FXList:FX_NukeCannonDamageTransition
End

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15595,7 +15595,6 @@ Object Infa_ChinaVehicleTroopCrawler
End

Behavior = TransitionDamageFX ModuleTag_08
ReallyDamagedParticleSystem1 = Bone:Smoke RandomBone:Yes PSys:SmallLightSmokeColumn
xezon marked this conversation as resolved.
Show resolved Hide resolved
ReallyDamagedFXList1 = Loc: X:0 Y:0 Z:0 FXList:FX_NukeCannonDamageTransition
End

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4805,7 +4805,6 @@ Object Nuke_ChinaVehicleListeningOutpost
End

Behavior = TransitionDamageFX ModuleTag_08
ReallyDamagedParticleSystem1 = Bone:Smoke RandomBone:Yes PSys:SmallLightSmokeColumn
ReallyDamagedFXList1 = Loc: X:0 Y:0 Z:0 FXList:FX_NukeCannonDamageTransition
End

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4953,7 +4953,6 @@ Object Tank_ChinaVehicleListeningOutpost
End

Behavior = TransitionDamageFX ModuleTag_08
ReallyDamagedParticleSystem1 = Bone:Smoke RandomBone:Yes PSys:SmallLightSmokeColumn
ReallyDamagedFXList1 = Loc: X:0 Y:0 Z:0 FXList:FX_NukeCannonDamageTransition
End

Expand Down
Binary file not shown.
Binary file not shown.
2 changes: 2 additions & 0 deletions Patch104pZH/Scripts/MAKE_Patch104pZH.bat
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ del /s /f /q %GeneratedBigFilesDir%\%BigName%.big
:: Copy .big contents
xcopy /Y /S %GameFilesDir%\*.ini %GeneratedBigFilesUnpackedDir%\%BigName%\
xcopy /Y /S %GameFilesDir%\*.wnd %GeneratedBigFilesUnpackedDir%\%BigName%\
xcopy /Y /S %GameFilesDir%\Art\W3D\NVLOutpost.W3D %GeneratedBigFilesUnpackedDir%\%BigName%\
xcopy /Y /S %GameFilesDir%\Art\W3D\NVLOutpost_D.W3D %GeneratedBigFilesUnpackedDir%\%BigName%\

:: Generate .big file(s)
%ToolsDir%\GeneralsBigCreator\GeneralsBigCreator.exe -source %GeneratedBigFilesUnpackedDir%\%BigName% -dest %GeneratedBigFilesDir%\%BigName%.big
Expand Down