You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Basically, surround a planetary that is being blinding clouded with hostile zerglings. The planetary will eventually leave some zerglings alone and not attack them.
I think it's caused by the Planetary being a structure and therefore it has its radius auto-generated according to its stamped footprint which can result in "rounding errors". Something like: Zergling's range is calculated from the zergling to the footprint, but the Planetary's range is not calculated from the footprint to the ling but from the Planetary's radius to the ling, which differs
The "dirtiest" solution is to simply increase the range of the Planetary during Blinding Cloud by a "near-melee" value like 0.05 (this was the smallest number I went before I stopped testing and it seems to work, could potentially go lower)
There are many ways to do this but the way I went about it was by simply adding another switch case to the existing switch effect for Blinding Cloud which applies a Planetary-specific behaviour that reduces range by -5.95 instead of 20 (its normal range is 6).
Pig mentioned he learned about this from Lambo's stream: https://x.com/x5_PiG/status/1807550540064420114
Basically, surround a planetary that is being blinding clouded with hostile zerglings. The planetary will eventually leave some zerglings alone and not attack them.
I think it's caused by the Planetary being a structure and therefore it has its radius auto-generated according to its stamped footprint which can result in "rounding errors". Something like: Zergling's range is calculated from the zergling to the footprint, but the Planetary's range is not calculated from the footprint to the ling but from the Planetary's radius to the ling, which differs
The "dirtiest" solution is to simply increase the range of the Planetary during Blinding Cloud by a "near-melee" value like 0.05 (this was the smallest number I went before I stopped testing and it seems to work, could potentially go lower)
There are many ways to do this but the way I went about it was by simply adding another switch case to the existing switch effect for Blinding Cloud which applies a Planetary-specific behaviour that reduces range by -5.95 instead of 20 (its normal range is 6).
The text was updated successfully, but these errors were encountered: