This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
crpl:docs:settechlimit [2015/03/11 01:08] – added names warren | crpl:docs:settechlimit [2025/02/14 14:57] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ~~DISCUSSION~~ | + | |
<- [[crpl: | <- [[crpl: | ||
===== SetTechLimit | ===== SetTechLimit | ||
Line 25: | Line 25: | ||
=== Examples === | === Examples === | ||
< | < | ||
+ | |||
+ | This example creates a chargeable pickup that increases the fire range tech limit when collected. | ||
+ | < | ||
+ | #test ammo against maxammo | ||
+ | Self CONST_MAXAMMO GetUnitAttribute | ||
+ | Self CONST_AMMO GetUnitAttribute eq if | ||
+ | Self CONST_AMMO 0 SetUnitAttribute | ||
+ | #ascend to orbit then destroy | ||
+ | " | ||
+ | AscendToOrbit | ||
+ | endif | ||
+ | |||
+ | :destroyed | ||
+ | #increase the tech limit by one when destroyed | ||
+ | " | ||
+ | |||
+ | :awake | ||
+ | #these are all necessary core attributes for this kind of collectible. | ||
+ | Self CONST_CONNECTABLE TRUE SetUnitAttribute | ||
+ | Self CONST_REQUESTPACKETS TRUE SetUnitAttribute | ||
+ | Self CONST_CANREQUESTAMMO TRUE SetUnitAttribute | ||
+ | Self CONST_MAXAMMO 25 SetUnitAttribute | ||
+ | </ | ||