RoboClaptrap4
Member
- Joined
- Feb 14, 2018
- RedCents
- 181¢
Right now with KISS, whenever someone is curing (and I believe MAYBE when rezzing as well although I haven't checked recently), each toon doing cures is looking at the same list of targets in the same order. This means that there is no point in having more than one curer for a single type of debuff. If two people are trying to cast RGC, they're both going to be casting it at the same time, on the same toons, in the same order. Which means one of them is being entirely wasted. Coordinating cures among different KISS toons using bot chat would probably be way too complicated, but there might be a middle ground that is really straightforward. Right now, there is a for loop that goes through the list of toons looking for someone that needs a cure. If it were instead to pull items from the list in a random order (difficult with an array, but trivial with some other collection types if MQ supports them), it would vastly increase the chances of multiple curers hitting different targets. Or even having a 50% chance to start at the bottom of the list instead of the top would basically double the efficiency of curing when a lot of it needs to happen and make multiple curers for a single debuff type more feasible.

