ModEnc is currently in Maintenance Mode: Changes could occur at any given moment, without advance warning.

Difference between revisions of "Adjacent"

From ModEnc
Jump to: navigation, search
m (styleguide inconsistencies)
m
 
(5 intermediate revisions by 4 users not shown)
Line 2: Line 2:
 
|name=Adjacent
 
|name=Adjacent
 
|files={{Categ|Rules(md).ini}}
 
|files={{Categ|Rules(md).ini}}
|values=integer
+
|values={{Values|unsigned integer}}
 
|default=3
 
|default=3
 +
|special= -1
 
|types={{Categ|BuildingTypes}}
 
|types={{Categ|BuildingTypes}}
 +
|ts=yes
 +
|fs=yes
 +
|hp=yes
 
|ra2=yes
 
|ra2=yes
 
|yr=yes
 
|yr=yes
|rp=yes
+
|ares=yes
 
}}
 
}}
  
After constructing a building in-game you are only allowed to place it near your existing [[Structures]].
+
After constructing a [[BuildingTypes|building]] in-game you are only allowed to place it near your existing structures.
  
{{TTL|Adjacent}} specifies the maximum number of cells away from one of your existing buildings (that does not have {{TTL|BaseNormal|no}} set) that you may place the new building.
+
{{f|Adjacent}} specifies the maximum number of cells away from one of your existing buildings (that does not have {{f|BaseNormal|no|link}} set) that you may place the new building.
An adjacency value of zero means the new building must be placed in contact with an existing building - there must be no gap. An adjacency value of 1 means there can be at most a 1 cell gap between an existing building and the new building.
+
{{f|Adjacent|0}} means the new building must be placed in contact with an existing building - there must be no gap. {{f|Adjacent|1}} means there can be at most a 1 cell gap between an existing building and the new building. And so on.<br>
  
A building with {{TTL|Adjacent|1}} set can be placed both 1 cell North-East and 1 cell North-West of an existing building at the same time (i.e. diagonally).
+
A building with {{f|Adjacent|1}} set can be placed both 1 cell North-East and 1 cell North-West of an existing building at the same time (i.e. diagonally).<br>For AI building placements, [[AIBaseSpacing]] is used instead of {{f|Adjacent}}.<br>If <b>Adjacent=0</b> then we cannot place [[ BuildingTypes]], but it is exempt from the tag. [[DeploysInto]].
 +
{{Bugs}}
 +
Specifying too large a value, such as '''Adjacent=10000''' will affect the game's speed.
  
 
=See also=
 
=See also=
*{{TTL|BaseNormal}}
+
*[[BaseNormal]]
*{{TTL|EligibileForAllyBuilding}}
+
*[[EligibileForAllyBuilding]]

Latest revision as of 11:18, 21 September 2024

Tiberian Dawn The Covert Operations Red Alert Counterstrike Aftermath Tiberian Sun Firestorm HyperPatch Red Alert 2 Yuri's Revenge Ares Generals Zero Hour Tiberium Wars Kane's Wrath
Flag: Adjacent
File(s): Rules(md).ini
Values: Unsigned integers: All non-negative whole numbers from 0 to either 32767, 2147483647 or 4294967295.
Special Values: -1
Default: 3
Applicable to: BuildingTypes


After constructing a building in-game you are only allowed to place it near your existing structures.

Adjacent specifies the maximum number of cells away from one of your existing buildings (that does not have BaseNormal=no set) that you may place the new building. Adjacent=0 means the new building must be placed in contact with an existing building - there must be no gap. Adjacent=1 means there can be at most a 1 cell gap between an existing building and the new building. And so on.

A building with Adjacent=1 set can be placed both 1 cell North-East and 1 cell North-West of an existing building at the same time (i.e. diagonally).
For AI building placements, AIBaseSpacing is used instead of Adjacent.
If Adjacent=0 then we cannot place BuildingTypes, but it is exempt from the tag. DeploysInto.

Cc alert.png Bugs/Side-Effects/Unexpected Limitations

Specifying too large a value, such as Adjacent=10000 will affect the game's speed.

See also