Both sides previous revisionPrevious revisionNext revision | Previous revision |
4rpl:commands:getunitsettings [2021/02/27 19:37] – virgilw | 4rpl:commands:getunitsettings [2025/02/14 14:57] (current) – external edit 127.0.0.1 |
---|
| |
===== Description ===== | ===== Description ===== |
Returns a table containing the settings for the specified unit. For certain built-in units, like an emitter, the settings are described in the table below. For these units, the settings are case sensitive. For custom units, the values returned are all defined heap variables for all attached scripts. If there are multiple scripts, the heap variables are merged and duplicates will overwrite each other. | Returns a table containing the settings for the specified unit. For certain built-in units, like an emitter, the settings are described in the table below. For these units, the settings are case sensitive. For custom units, the values returned are all defined variables for all attached scripts. If there are multiple scripts, the variables are merged and duplicates will overwrite each other. |
| |
| :!: In code versions before 4RPL V4 (Game version2.5.0 and higher), Calling GetUnitSettings (Or SetUnitSettings) on a custom unit that does not have a script attached throws an exception and causes the script to terminate at that line. If the unit has a script, it works normally, even if it's completely blank. As such, it would be a safe practice to attach a null script to every decorative unit on a map. |
| |
| |
=====Built-in Unit Names and Settings===== | =====Built-in Unit Names and Settings===== |
===="Emitter"==== | :!: Unit names are case sensitive. The full list of unit names are in [[Unit Types]] |
* **"Start"** (int): The start delay, in frames, for when the emitter begins emitting. \\ | <tabbox Emitter> |
* **"Interval"** (int): The emission interval, in frames. \\ | |
* **"Payload"** (int): How much to emit at each emission. \\ | |
| |
===="SporeLauncher"==== | ? <color orange> Start (int) </color> |
| : The start delay, in frames, for when the emitter begins emitting. \\ |
| ? <color orange> Interval (int) </color> |
| : The emission interval, in frames. |
| ? <color orange> Payload (float) </color> |
| : How much to emit at each emission. |
| <tabbox SporeLauncher> |
| |
* **"Start"** (int): The start delay, in frames. \\ | * **"Start"** (int): The start delay, in frames. \\ |
* **"Interval"** (int): The fire interval, in frames. \\ | * **"Interval"** (int): The fire interval, in frames. \\ |
* **"Payload"** (int): How much creeper is contained in each entity. \\ | * **"Payload"** (float): How much creeper is contained in each entity. \\ |
* **"Count"** (int): How many entities to create. \\ | * **"Count"** (int): How many entities to create. \\ |
* **"Target"** (int): The target mode (0,1,2) for the created entities. 0 = Random, 1 = structures, 2 = location. \\ | * **"Target"** (int): The target mode (0,1,2) for the created entities. 0 = Random, 1 = structures, 2 = location. \\ |
* **"EggInterval"** (int): The interval, in frames, for emitting eggs. \\ | * **"EggInterval"** (int): The interval, in frames, for emitting eggs. \\ |
* **"EggCount"** (int): The count of eggs to emit per interval. \\ | * **"EggCount"** (int): The count of eggs to emit per interval. \\ |
* **"EggDefenseRatio"** (float): The ratio of eggs that should be in defense mode. \\ | * **"EggDefenseRatio"** (float): The ratio of eggs that will be sent to other Creeper controlled structures. \\ |
* **"EggOnlyDuringCutoff"** (bool): If eggs should only be emitted when the creeper is cutoff because of the map creeper limit. | * **"EggOnlyDuringCutoff"** (bool): If eggs should only be emitted when the creeper is cutoff because of the map creeper limit. |
| <tabbox BlobNest> |
===="BlobNest"==== | |
* **"Start"** (int): The start delay, in frames. \\ | * **"Start"** (int): The start delay, in frames. \\ |
* **"Interval"** (int): The fire interval, in frames. \\ | * **"Interval"** (int): The fire interval, in frames. \\ |
* **"Payload"** (int): How much creeper is contained in each entity. \\ | * **"Payload"** (float): How much creeper is contained in each entity. \\ |
* **"Count"** (int): How many entities to create. \\ | * **"Count"** (int): How many entities to create. \\ |
* **"Target"** (int): The target mode (0,1,2) for the created entities. 0 = Random, 1 = structures, 2 = location. \\ | * **"Target"** (int): The target mode (0,1,2) for the created entities. 0 = Random, 1 = structures, 2 = location. \\ |
* **"CarryEggProbability"** (float): The probability (expressed as a float from 0 to 100) that the emitted blob will be able to carry eggs. \\ | * **"CarryEggProbability"** (float): The probability (expressed as a float from 0 to 100) that the emitted blob will be able to carry eggs. \\ |
| |
===="SkimmerFactory"==== | <tabbox SkimmerFactory> |
| |
* **"Start"** (int): The start delay, in frames. \\ | * **"Start"** (int): The start delay, in frames. \\ |
* **"Interval"** (int): The fire interval, in frames. \\ | * **"Interval"** (int): The fire interval, in frames. \\ |
* **"Payload"** (int): How much creeper is contained in each entity. \\ | * **"Payload"** (float): How much creeper is contained in each entity. \\ |
* **"Count"** (int): How many entities to create. \\ | * **"Count"** (int): How many entities to create. \\ |
* **"Target"** (int): The target mode (0,1,2) for the created entities. 0 = Random, 1 = structures, 2 = location. \\ | * **"Target"** (int): The target mode (0,1,2) for the created entities. 0 = Random, 1 = structures, 2 = location. \\ |
* **"ForbStart"** (int): The start delay, in frames, for emitting forbs. \\ | * **"ForbStart"** (int): The start delay, in frames, for emitting forbs. \\ |
* **"ForbInterval"** (int): The interval, in frames, for emitting forbs. \\ | * **"ForbInterval"** (int): The interval, in frames, for emitting forbs. \\ |
* **"ForbPayload"** (int): The amount of creeper each forb carries and puts in each orb that it throws. \\ | * **"ForbPayload"** (float): The amount of creeper each forb carries and puts in each orb that it throws. \\ |
* **"ForbCount"** (int): The max active count of forbs for this skimmer factory. \\ | * **"ForbCount"** (int): The max active count of forbs for this skimmer factory. \\ |
| |
===="AirSacCauldron"==== | |
| <tabbox AirSacCauldron> |
* **"Start"** (int): The start delay, in frames. \\ | * **"Start"** (int): The start delay, in frames. \\ |
* **"Interval"** (int): The fire interval, in frames. \\ | * **"Interval"** (int): The fire interval, in frames. \\ |
* **"Payload"** (int): How much creeper is contained in each entity. \\ | * **"Payload"** (float): How much creeper is contained in each entity. \\ |
* **"Count"** (int): How many entities to create. \\ | * **"Count"** (int): How many entities to create. \\ |
* **"Target"** (int): The target mode (0,1,2) for the created entities. 0 = Random, 1 = structures, 2 = location. \\ | * **"Target"** (int): The target mode (0,1,2) for the created entities. 0 = Random, 1 = structures, 2 = location. \\ |
* **"DisableMiniMapWarn"**(bool): If the minimap should not be pinged prior to entity launch. | * **"DisableMiniMapWarn"**(bool): If the minimap should not be pinged prior to entity launch. |
| |
===="Spore"==== | <tabbox Spore> |
* **"Target"** (int): The target mode (0,1,2) for the created entity. 0 = Random, 1 = structures, 2 = location. Note that for spores, this value only applies on unit creation. \\ | * **"Target"** (int): The target mode (0,1,2) for the created entity. 0 = Random, 1 = structures, 2 = location. Note that for spores, this value only applies on unit creation. \\ |
* **"TargetLocation"** (V2): The target location for the entity. Only used when Target is set to 2. Note that for spores, this value only applies on unit creation. \\ | * **"TargetLocation"** (V2): The target location for the entity. Only used when Target is set to 2. Note that for spores, this value only applies on unit creation. \\ |
* **"Payload"** (int): How much creeper is contained in this entity. \\ | * **"Payload"** (float): How much creeper is contained in this entity. \\ |
| |
| <tabbox Blob> |
| |
===="Blob"==== | |
* **"Target"** (int): The target mode (0,1,2) for the created entity. 0 = Random, 1 = structures, 2 = location. \\ | * **"Target"** (int): The target mode (0,1,2) for the created entity. 0 = Random, 1 = structures, 2 = location. \\ |
* **"TargetLocation"** (V2): The target location for the entity. Only used when Target is set to 2. \\ | * **"TargetLocation"** (V2): The target location for the entity. Only used when Target is set to 2. \\ |
* **"Payload"** (int): How much creeper is contained in this entity. \\ | * **"Payload"** (float): How much creeper is contained in this entity. \\ |
* **"LifeTime"** (int): How long, in frames, the entity should live. \\ | * **"LifeTime"** (int): How long, in frames, the entity should live. \\ |
* **"CarryEgg"** (bool): Whether this blob can carry eggs. \\ | * **"CarryEgg"** (bool): Whether this blob can carry eggs. \\ |
| |
===="Skimmer"==== | <tabbox Skimmer> |
* **"Target"** (int): The target mode (0,1,2) for the created entity. 0 = Random, 1 = structures, 2 = location. \\ | * **"Target"** (int): The target mode (0,1,2) for the created entity. 0 = Random, 1 = structures, 2 = location. \\ |
* **"TargetLocation"** (V2): The target location for the entity. Only used when Target is set to 2. \\ | * **"TargetLocation"** (V2): The target location for the entity. Only used when Target is set to 2. \\ |
* **"Payload"** (int): How much creeper is contained in this entity. \\ | * **"Payload"** (float): How much creeper is contained in this entity. \\ |
* **"LifeTime"** (int): How long, in frames, the entity should live. \\ | * **"LifeTime"** (int): How long, in frames, the entity should live. \\ |
| |
===="AirSac"==== | <tabbox AirSac> |
* **"Target"** (int): The target mode (0,1,2) for the created entity. 0 = Random, 1 = structures, 2 = location. \\ | * **"Target"** (int): The target mode (0,1,2) for the created entity. 0 = Random, 1 = structures, 2 = location. \\ |
* **"TargetLocation"** (V2): The target location for the entity. Only used when Target is set to 2. \\ | * **"TargetLocation"** (V2): The target location for the entity. Only used when Target is set to 2. \\ |
* **"Payload"** (int): How much creeper is contained in this entity. \\ | * **"Payload"** (float): How much creeper is contained in this entity. \\ |
| |
| <tabbox DarkTower> |
| |
===="DarkTower"==== | |
* **"Width"** (int): The width of the dark area. \\ | * **"Width"** (int): The width of the dark area. \\ |
* **"Depth"** (int): The depth of the dark area. \\ | * **"Depth"** (int): The depth of the dark area. \\ |
* **"Square"** (bool): If the dark area is a square, vs ellipse. \\ | * **"Square"** (bool): If the dark area is a square, vs ellipse. \\ |
| |
===="Stash"==== | <tabbox Stash> |
* **"Consume"** (bool): If the stash should remove creeper from the map. \\ | * **"Consume"** (bool): If the stash should remove creeper from the map. \\ |
* **"Size"** (float): The size (max creeper held) of the stash. \\ | * **"Size"** (float): The size (max creeper held) of the stash. \\ |
* **"UnsupportedTime"** (int): How long, in frames, the stash will wait before releasing its content when it is not in creeper. \\ | * **"UnsupportedTime"** (int): How long, in frames, the stash will wait before releasing its content when it is not in creeper. \\ |
| |
====ResourceBlue==== | <tabbox ResourceBlue> |
* **"Interval"** (int):How long, in frames, between each resource production. | * **"Interval"** (int):How long, in frames, between each resource production. |
| |
====ResourceRed==== | <tabbox ResourceRed> |
* **"Interval"** (int):How long, in frames, between each resource production. | * **"Interval"** (int):How long, in frames, between each resource production. |
| |
====GreenarMother==== | <tabbox GreenarMother> |
* **"Interval"** (int):How long, in frames, between each resource production. | * **"Interval"** (int):How long, in frames, between each resource production. |
| |
====Pod==== | <tabbox Pod> |
* **"Resource"** (int):A number (0 - 6) that represents the contained resource. 0 = energy, 1 = AC, 2 = ARG, 3 = Liftic, 4 = Bluite, 5 = Redon, 6 = Greenar | * **"Resource"** (int):A number (0 - 6) that represents the contained resource. 0 = energy, 1 = AC, 2 = ARG, 3 = Liftic, 4 = Bluite, 5 = Redon, 6 = Greenar |
* **"Size"** (int): How much resource the Pod holds. | * **"Size"** (int): How much resource the Pod holds. |
* **"PlayerCanDestroy"** (bool): Whether a player can destroy this pod. | * **"PlayerCanDestroy"** (bool): Whether a player can destroy this pod. |
| |
====InfoCache==== | <tabbox InfoCache> |
* **"Message"** (string): The ADA message to show. | * **"Message"** (string): The ADA message to show. |
* **"MessageType"** (bool): If false, then show message in ADA Log. If True, then show as a game message. | * **"MessageType"** (bool): If false, then show message in ADA Log. If True, then show as a game message. |
* **"Pause"** (bool): Whether to pause the game when the infocache is collected. | * **"Pause"** (bool): Whether to pause the game when the infocache is collected. |
* **"YPos"** (float): Convenience settings that sets the Y position of the infocache. | * **"YPos"** (float): Convenience settings that sets the Y position of the infocache. |
| |
| |
| <tabbox Wall/Crazonium> |
| |
:!: Available in version 1.4 and later. | :!: Available in version 1.4 and later. |
====Wall/Crazonium==== | |
* **"Strength"** (int): The health of the wall/crazonium. Initial strength of a wall is 900000. | * **"Strength"** (int): The health of the wall/crazonium. Initial strength of a wall is 900000. |
| |
| <tabbox Totem> |
| * **"WareType"** (int): A number (0 - 3) that represents the contained resource. 0 = energy, 1 = AC, 2 = ARG, 3 = Liftic |
| * **"WareNum"** (int): The number of resources required to activate the totem. |
| |
| </tabbox> |
| |
===== Examples ===== | ===== Examples ===== |