How do i remove off a counter

How to i remove off a counter once with an event and not every time it reaches a specific number?

3 Likes

Are you trying to say when the counter reaches a number, you want it to delete?

2 Likes

I think you need to use an additional condition, for example:

Player/Counter/Not Equal To/10
AND
Player/Sensing/Collided With Object/Enemy

DO
Player/Counter/Add/1

Or you can use the counter value correction with a global variable, for example:

Player/Counter/Equal To/Global Variable
AND
Player/Sensing/Collided With Object/Enemy

DO
Player/Counter/Add/1
1 Like