Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import subprocess
- import sys
- import json
- import time, re, math
- import selenium
- from selenium import webdriver
- from selenium.webdriver.common.by import By
- from selenium.webdriver.support.ui import Select
- from selenium.common.exceptions import NoSuchElementException
- from selenium.webdriver.firefox.service import Service
- sys.setrecursionlimit(1000000000)
- service = Service(executable_path="/snap/bin/geckodriver")
- options = webdriver.FirefoxOptions()
- options.add_argument("--headless")
- driver = webdriver.Firefox(service=service, options=options)
- print("please wait loading page and login")
- driver.get("https://just-dice.com")
- time.sleep(20)
- driver.find_element(By.CSS_SELECTOR, "a.fancybox-item.fancybox-close").click()
- time.sleep(5)
- driver.find_element(By.LINK_TEXT, "Account").click()
- time.sleep(2)
- driver.find_element(By.ID, "myuser").clear()
- driver.find_element(By.ID, "myuser").send_keys("USERNAME")
- time.sleep(0.01)
- driver.find_element(By.ID, "mypass").clear()
- driver.find_element(By.ID, "mypass").send_keys("PASSWORD")
- time.sleep(0.01)
- driver.find_element(By.ID, "myok").click()
- time.sleep(20)
- print("logged in")
- belance = driver.find_element(By.ID, "pct_balance").get_attribute("value")
- freather = 0.0
- nomber = (float(belance)/14400000)
- bogus = f"{nomber:.8f}"
- base = float(bogus)
- fumble = base
- tens = (base*10)
- sevens = (base*6.9)
- eights = (base*7.9)
- fives = (base*4.9)
- gold = driver.find_element(By.ID, "pct_balance").get_attribute("value")
- good = ((math.floor(float(gold)/tens))*tens)
- food = ((math.floor(float(gold)/tens))*tens)
- time.sleep(0.2)
- print("should see bets")
- def go():
- global nomber
- global bogus
- global base
- global tens
- global sevens
- global eights
- global fives
- balance = driver.find_element(By.ID, "pct_balance").get_attribute("value")
- global fumble
- global freather
- global good
- global gold
- global belance
- global food
- if ((float(balance)>(((math.floor(float(balance)/tens))*tens)+sevens)) and (float(balance)<(((math.floor(float(balance)/tens))*tens)+eights)) and (not (float(balance)==freather))):
- fumble = float(fumble)*2
- freather = float(balance)
- if ((float(balance)>=float(good)+tens) and (float(balance)<(((math.floor(float(balance)/tens))*tens)+sevens))):
- nomber = (float(balance)/14400000)
- bogus = f"{nomber:.8f}"
- base = float(bogus)
- fumble = base
- tens = (base*10)
- sevens = (base*6.9)
- eights = (base*7.9)
- freather = 0.0
- good = ((math.floor(float(balance)/tens))*tens)
- if ((float(balance))>(float(gold)*24000)):
- sys.exit()
- time.sleep(0.1)
- number = float(fumble)
- rounded_number = f"{number:.8f}"
- driver.find_element(By.ID, "pct_chance").clear()
- driver.find_element(By.ID, "pct_chance").send_keys("49.5000")
- driver.find_element(By.ID, "pct_bet").clear()
- driver.find_element(By.ID, "pct_bet").send_keys(rounded_number)
- driver.find_element(By.ID, "a_lo").click()
- time.sleep(0.8)
- go()
- if (1==1):
- go()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement