Author Topic: OnPrintCountOverFlow problem  (Read 411 times)

Ok, so im my new build I'm trying to make it so when I click on a brick, the print bricks increment their count by 1, and so the next brick in line will increment by 1 when it overflows.

Here are my EXACT events: OnActivate/NAMED BRICK/Print1/incrementPrintCount/1
And: OnPrintCountOverFlow/NAMED BRICK/Print2/incrementPrintCount/1
Whats the problem? How do I fix it?

I also think it's important to mention that I'm trying to Increment the print count by 5 on the first one.

Help please.

Wow... uh... I go about that a different, more complex way. :P

But if printcountoverflow works for you, you can try this (totally free-styling this right off the top of my head here)

For Brick "1" or bigger number in the count sequence
00000-onactivate/self/firerelay
01000-onrelay/self/firerelay
00000-onrelay/self/incrementprintcount by 1
00000-onprintcountoverflow/"2" named brick/incrementprintcount by 1
or
00000-onprintcountoverflow/"2" named brick/firerelay

For Brick "2" or smaller number in the count sequence (if relay was fired)
onrelay/self/incrementprintcount by 1

Works for me :P

Oh, and adjust to your needs, cause I read "5 second intervals" you wanted.