Hi,
The goal of the "point consumer" is to give points to the user who consume the serial. Nothing more.
There is no "counter" feature in HikaSerial but it is possible to implement it using a custom plugin.
During the consumption, a plugin can specify what will be the future status of the serial.
$serialConsumed->serial_status = $used_status;
if(!empty($serial->status))
$serialConsumed->serial_status = $serial->status;
So if in the trigger "onBeforeSerialConsume", a plugin set a value for the " $serial->status ", it will be use instead of the "used" status.
Thanks to that, you can create a "counter" plugin, using some data from the serial extra data.
Some other plugins are using the extra data for their processing, like the "points" or "time limited" ; you can use them as example.
Regards,