Indie Dev

Hello Guest!. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, sell your games, upload content, as well as connect with other members through your own private inbox!

Help with a ticket purchase system

So in my game, you need to purchase a ticket to get inside. I have it working to you can't get in unless you have the ticket, i'm just trying to get it to where you can buy the ticket. This is what I have but it doesn't seem to work :3

upload_2016-4-20_2-22-17.pngupload_2016-4-20_2-22-36.png
 
Okay you've messed up your Comparison Operators.

You've got your Comparison Operators the wrong way around. Also the greater than and less than symbols with a line under it are 'greater than or equal to'.

So top one should read:
Gold >_ 1000 then
and the second one
Gold < 1000 then

That should do it.
 
Top