Can we do game automation using UiPath??

Hi @Sajid_M and @CSS_tes1,

Although this might sound awesome to automate online games there are two things you need to be aware of.

  1. If the games are quite competitive, I am sure the developers would have some sort of control on bot connections. Lukcy the link provided seems to not do much other than avoid access to the games catalog. You can always check a website url with last part /robots.txt. The developers can block your public IPs indefinitely.
    image

  2. UiPath by itself cannot perform such a dynamic task without the help of a scripting language for example Python. Why? Its because these games require all three stages of human cognition; seeing, interpreting the situation, acting, all this with a quick response time. The automation of such games therefore would fall under AI field aka Intelligent automation.

This is surely possible to do, but is it worth it? That I am not sure. But if you are still interested to explore the solution further, you could try to learn CNN or Reinforcement learning and have a lot of understanding in python programming using the keras or fastai libraries.

That said, here is a starter code, which navigates to the game in the link provided and starts it!
GameAutomation.xaml (37.0 KB)

Extra starter links:
Playing Atari with Deep Reinforcement Learning | DeepMind
Beat Atari with Deep Reinforcement Learning! (Part 0: Intro to RL) | by Adrien Lucas Ecoffet | Becoming Human: Artificial Intelligence Magazine

2 Likes