Size: 399
Comment:
|
Size: 1413
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
| ## page was renamed from Fields The Fields objects can reference details about valleys you own. |
Line 3: | Line 4: |
m_city.cityManager.fields[0].id | '''Field objects can be referenced as:''' |
Line 5: | Line 6: |
m_city.cityManager.fields[0].level | . ''m_city.cityManager.fields[#].property '''or''' city.fields[#].property'' |
Line 7: | Line 8: |
m_city.cityManager.fields[0].name | The # will be which valley slot you are referencing, between 0-9. The .property at the end is how you will specify which detail you are referencing. Using the table below, you can for example get the level of the 5th valley you own with ''city.fields[4].level''. |
Line 9: | Line 10: |
m_city.cityManager.fields[0].type | '''Properties''' ||<tablewidth="796px" tableheight="123px"#cccccc>'''Property ''' ||<#cccccc>'''Type''' ||<#cccccc>'''Description ''' || ||id ||int ||Displayes the FieldID of the valley || ||level ||int ||Level of field 1-10 || ||name ||String ||Name of field ("Forest","Desert","Hill","Swamp","Grassland","Lake") || ||[[FieldTypes|type]] ||int ||type of field in numerical format || |
Line 11: | Line 17: |
m_city.cityManager.fields[1].id | |
Line 13: | Line 18: |
m_city.cityManager.fields[1].level | |
Line 15: | Line 19: |
m_city.cityManager.fields[1].name | |
Line 17: | Line 20: |
m_city.cityManager.fields[1].type | The following functions can give further information about valleys, but are used as: |
Line 19: | Line 22: |
m_city.cityManager.fields.length | . ''m_city.cityManager.fields.method '''or''' city.fields.method'' |
Line 21: | Line 24: |
m_city.cityManager.fields[9].type | '''Methods''' ||<tablewidth="796px" tableheight="43px"#cccccc>'''Method ''' ||<#cccccc>'''Type''' ||<#cccccc>'''Description ''' || ||length ||int ||How many fields are owned by the city || '''Examples''' . {{{ echo FieldIdToCoords(city.fields[0].id) outputs the coords of field[0] using the associated FieldId }}} |
Line 24: | Line 40: |
CategoryVariables | [[ObjectCity|City]] |
The Fields objects can reference details about valleys you own.
Field objects can be referenced as:
m_city.cityManager.fields[#].property or city.fields[#].property
The # will be which valley slot you are referencing, between 0-9. The .property at the end is how you will specify which detail you are referencing. Using the table below, you can for example get the level of the 5th valley you own with city.fields[4].level.
Properties
Property |
Type |
Description |
id |
int |
Displayes the FieldID of the valley |
level |
int |
Level of field 1-10 |
name |
String |
Name of field ("Forest","Desert","Hill","Swamp","Grassland","Lake") |
int |
type of field in numerical format |
The following functions can give further information about valleys, but are used as:
m_city.cityManager.fields.method or city.fields.method
Methods
Method |
Type |
Description |
length |
int |
How many fields are owned by the city |
Examples
echo FieldIdToCoords(city.fields[0].id) outputs the coords of field[0] using the associated FieldId