Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

No problems; how are you comparing the variables? There are limitations on how the comparison expressions can be implemented.

There is an open issue to modify the blocks so it won't be possible to make expressions that aren't supported by bBasic: https://github.com/haroldo-ok/vcs-game-maker/issues/12

Unfortunately, until those guardrails are implemented, you would need to be careful to only use simple comparisons and avoid mixing `AND` with `OR` on the same expression: https://www.randomterrain.com/atari-2600-memories-batari-basic-commands.html#if

Anyway, could you please show an screen capture of the expression that is causing problems?

(+1)

This is an example of what I'm trying to do.

Okay, thanks; it seems the equality comparison is generating the wrong operator: https://github.com/haroldo-ok/vcs-game-maker/issues/49

Until that is fixed, the only workaround seems to be avoiding using the equality comparator (the other comparators seem to work okay)

(+1)

ok, yes the other comparators work

Thanks for the bug report! This code generation bug has just been fixed. Now equality and non-equality operations should be working okay.

YEAAA