def check_process():
print 'Checking WoW is running'
wow_process_names = ["World of Warcraft"]
running = False
for pid in psutil.pids():
p = psutil.Process(pid)
if any(p.name() in s for s in wow_process_names):
print(p.name())
running = True
if not running and not dev:
print 'WoW is not running'
exit()
print 'WoW is running'
# raw_input('Pleas e put your fishing-rod on key 1, zoom-in to max, move camera on fishing-float and press any key')
评论列表
文章目录