Hey,
hab für das Pr0gramm Special einen kleinen Bot geschrieben.
WICHTIG:
Ihr braucht euren Cookie und die _nonce id.
Beides kriegt ihr im Netzwerkanalyse-Tool heraus:
Firefox -> Strg + Umschalt + Q
Untertreibt nicht mit der sleep time, sonst kriegt ihr ein Tagesbann ... so wie ich
Keine benise zum spielen?
requests muss installiert sein
( pip install requests )
import requests import json from time import sleep url = 'http://pr0gramm.com/api/game/spin' cookie = "" _nonce = "" bet = "64" # 64, 32, 16, 8 ,4 sleep_time = 0.1 headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0", "Accept": "application/json, text/javascript, */*; q=0.01", "Accept-Language": "de", "Accept-Encoding": "gzip, deflate", "X-Requested-With": "XMLHttpRequest", "Referer": "http://pr0gramm.com/spielothek", "Content-Length": "30", "Cookie": cookie, "Connection": "keep-alive", "Content-Type": "application/x-www-form-urlencoded", } payload = { "_nonce": _nonce, "bet": bet } while True: r = requests.post(url, data=payload, headers=headers) result = json.loads(r.content) win = int(result.get("win")) print "WON: %i SCORE: %i" % (win, result.get("score")) sleep(sleep_time)