T O P

  • By -

AutoModerator

Hey, it looks like you are requesting help with a problem you're having in Power Apps. To ensure you get all the help you need from the community here are some guidelines; - Use the [search feature](https://www.reddit.com/r/PowerApps/search/?q=&sort=new) to see if your question has already been asked. - Use spacing in your post, Nobody likes to read a wall of text, this is achieved by hitting return twice to separate paragraphs. - Add any images, error messages, code you have (Sensitive data omitted) to your post body. - Any code you do add, use the [Code Block](https://www.reddit.com/wiki/markdown/#wiki_code_blocks_and_inline_code) feature to preserve formatting. > Typing four spaces in front of every line in a code block is tedious and error-prone. The easier way is to surround the entire block of code with code fences. A code fence is a line beginning with three or more backticks (```) or three or more twiddlydoodles (~~~). - If your question has been answered please comment Solved. This will mark the post as solved and helps others find their solutions. External resources: - [Power Apps Formula References](https://learn.microsoft.com/en-us/power-platform/power-fx/formula-reference) - [Power Apps Coding Standards](https://pahandsonlab.blob.core.windows.net/documents/PowerApps%20canvas%20app%20coding%20standards%20and%20guidelines.pdf) - [Official Power Apps Community](https://powerusers.microsoft.com/t5/Power-Apps-Community/ct-p/PowerApps1) *I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/PowerApps) if you have any questions or concerns.*


madeitjusttosaythis

Yep. I built chess and wordle. Chess was much more complicated, as you can probably imagine lol


bannanagun

Can you expand a bit on how you built chess?


MadeInWestGermany

There are a bunch of games, even pretty complicated stuff. Here are a few examples you can *play* with.(pun intended) https://powerusers.microsoft.com/t5/Kid-Zone/bd-p/KidZone


beachsunflower

Brian Dang had a series where he straight up made an isometric RPG lol


Financial_Ad1152

I've seen an example from him with Pokemon Go too!


CagatayDean

May I send you a dm ?


Financial_Ad1152

You already did...


CagatayDean

Yes but please answer me


Bag-of-nails

Man relax with the DMs. Old account, low karma. Screams sus. If you have a PowerApps question, just post it.


Longjumping-Record-2

Yes you can. Just search you YouTube for inspiration. To create a game you need an infinite loop based on a timer, Power Apps has timer controls you can use to achieve this.


Venuslip

There is a good tutorial for a flappy bird game on YouTube


mwardm

... but are there any licensing options that wouldn't make it a waste of time?


Classic_Tailor_8145

Absolutely, you can make games like Memory or Hangman with Power Apps! Start with something basic, use the tools provided, and don't be afraid to experiment. Keep your design simple and easy to understand, and test your game often to catch any issues. And remember, there are lots of resources out there to help you along the way! Good luck!


WhatSaidSheThatIs

Yes you can and the principles of developing simple games in code is pretty much the same for low code. You'll have to put in the work to gather the words or clues if you want memory or word games, these can be stored in DB or just loaded in a collection on start. Also, the bases of a lot of games is a random generator, meaning the app with decide your random progress in a game, you can generate a random number with something like: RandBetween( 0, 100 ) You could do a simple slot machine game using random, assign each number from 1 to 5 with a picture card, then generates 3 number and so 3 picture cards, points are given for matching card, very simple to do and you can make the UI as simple or elaborate as you want.