Hi @jepha.krampus,
This is very simple, but it depends on how you’re creating buttons.
If you’re using the Corona widget button, you can assign an “id” to each button and then, in the listener function, detect which button was pressed:
http://docs.coronalabs.com/api/library/widget/newButton.html
If you’re creating your own buttons, then the button which was tapped will be pointed to by “event.target” in the listener function. See this guide:
http://docs.coronalabs.com/guide/events/touchMultitouch/index.html
You might also choose to use a widget “stepper” which can easily decrease and increase a variable:
http://docs.coronalabs.com/api/library/widget/newStepper.html
In all cases, please see the examples that are provided and it should be easy to figure out.
Best regards,
Brent