I'm just wondering how to make a certain particle that i made (CNDY) heal stickmen. preferably with an update function.
"Feeding" stkm is just increasing their life, so it would probably be something like this:
local stkX, stkY = get_location_of_stkm_to_feed()
tpt.set_property("life", tpt.get_property("life", stkX, stkY) + 1, stkX, stkY)
I know that much, but how to i kill only the CNDY particle that he eats?