Please help; Logic gate Bug

For some reason I am having a problem with the nor gate in a bundle

1 Like

Do you mean with the Nor Gate?

1 Like

It was probably autocorrect

2 Likes

You need to explain what isn’t working about them and the link to your game so we can see it too.
Special tip: I don’t recommend using messages to activate gates behaviors.

3 Likes

yes, messages can cause delays and you can’t input 0’s into a logic gate

Learnings from JR01

2 Likes

It’s not really the messages that causes delay, they don’t, the problem is often caused by behavior order.

3 Likes

Sorry, I had to go and didn’t have a lot of time…
It was pretty much a bug in a bundle, in a bundle. I’ve heard some other problems with this also. I have figured out a way to get around it, but I wanted the bug to be fixed for all other users. Sorry that I didn’t explain it very well.

1 Like

I put one input into a with it turned into a NOR gate, and the gate still activates whether the A is on/off

It’s a behavior order thing, it’s not the easier thing to fully understand at first. Basically the engine reads things left to right, top to bottom. What’s happening here is that the NOR is getting read before the input is actually being read. It’s a weird thing, and messages make it weirder because they go off of the original message X,Y (I think). So it’s not really a bug, but more so a complicated reasoning of the engine. But without knowing how it works, it does seem very much like a bug.

1 Like