0

We are making a simple adventure game with my friends as a challenge to only use batch and python and my question is that how could we have our bot running in the same exact window while player moves around?

Compo
  • 36,585
  • 5
  • 27
  • 39
  • StackOverflow is for people to help each other with programming based issues. If you are not supplying the code you are having issues with and any highlighting problems arising from that code, your question will be deemed off topic. – Compo Jul 05 '17 at 10:33
  • https://stackoverflow.com/help/how-to-ask refer this url and modify your question – sainu Jul 05 '17 at 10:35

1 Answers1

0

Threading might be a solution for you. I've not encoutered threading in Python before, but a search brought this thread up with a few examples on implementing threading, or something similar within Python.

How to use threading in Python.

sugarfree
  • 1
  • 3