User Tools

Site Tools


cw4:cmod:docs:e560de12-b7fe-4a15-afe3-9b76ea1fe5f2

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
cw4:cmod:docs:e560de12-b7fe-4a15-afe3-9b76ea1fe5f2 [2021/03/20 10:37] – [For Map Makers] UberWaffecw4:cmod:docs:e560de12-b7fe-4a15-afe3-9b76ea1fe5f2 [2025/02/14 14:57] (current) – external edit 127.0.0.1
Line 24: Line 24:
  
 ====== For Map Makers ====== ====== For Map Makers ======
 +
 If you have city buildings (units that make use of the "CityWarehouseFiller" script), then you need at least 1 of these on the map for the player to be able to access that production. If you have city buildings (units that make use of the "CityWarehouseFiller" script), then you need at least 1 of these on the map for the player to be able to access that production.
  
Line 30: Line 31:
 The script for this warehouse unit makes use of global variables. See the script for more details. The script for this warehouse unit makes use of global variables. See the script for more details.
  
-In the case that you make unit updates after already having placed down warehouses or "CityWarehouseFiller" units, then run the below script to have the production properly recalculated on the next game tick.+To avoid lag of multiple units processing each tick, the "CityWarehouseFiller" units only update their production on construction and subtract it again on Destroyed. 
 +This means that if you update unit instancesyou can end up with broken production values. 
 +The units have a means to recalculate from scratch for these situations. To trigger this, refer to the console script below.
  
-<key># CityProductionReset+In the case that you make unit updates after already having placed down warehouses or "CityWarehouseFiller" units, then run-once the below console script to have the production properly recalculated on the next game tick.
  
-# Run this script if you want the city production to be recalculated from scratch. # Should be run if you have changes building values or done a “Update all unit instances” while editing the map after buildings are already placed.+----
  
-0.0 ->*CITYBUILDUPBLUITE 0.0 ->*CITYBUILDUPREDON 0.0 ->*CITYBUILDUPGREENAR+<code 4rpl CityProductionReset.4rpl> 
 +# CityProductionReset 
 + 
 +# Run this script if you want the city production to be recalculated from scratch. 
 +# Should be run if you have changes building values or done a “Update all unit instances” while editing the map after buildings are already placed. 
 + 
 +0.0 ->*CITYBUILDUPBLUITE 
 +0.0 ->*CITYBUILDUPREDON 
 +0.0 ->*CITYBUILDUPGREENAR
  
 0 ->*CITYLASTUPDATED 0 ->*CITYLASTUPDATED
  
-0 ->*CITYPRODENERGY 0 ->*CITYPRODBLUITE 0 ->*CITYPRODREDON 0 ->*CITYPRODGREENAR+0 ->*CITYPRODENERGY 
 +0 ->*CITYPRODBLUITE 
 +0 ->*CITYPRODREDON 
 +0 ->*CITYPRODGREENAR
  
-$WAREHOUSE_GUID:“e560de12-b7fe-4a15-afe3-9b76ea1fe5f2” GetUnitsByType(<-WAREHOUSE_GUID 1) ->warehouseList GetListCount(<-warehouseList) ->*CITYWAREHOUSECOUNT+$WAREHOUSE_GUID:“e560de12-b7fe-4a15-afe3-9b76ea1fe5f2” 
 +GetUnitsByType(<-WAREHOUSE_GUID 1) ->warehouseList 
 +GetListCount(<-warehouseList) ->*CITYWAREHOUSECOUNT
  
-GetGameUpdateCount ->*CITYPRODRECALCNEEDED</key>+GetGameUpdateCount ->*CITYPRODRECALCNEEDED 
 +</code>
  
 +----
  
 <=[[cw4:info:start#custom_units| Index]] <=[[cw4:info:start#custom_units| Index]]
 +
 +
cw4/cmod/docs/e560de12-b7fe-4a15-afe3-9b76ea1fe5f2.1616236673.txt.gz · Last modified: 2025/02/14 14:56 (external edit)