Mihr Posted May 30, 2022 Share Posted May 30, 2022 Hello Friends, I am back again, this time with a script. If you haven't already, Join the CG Discord Go to Bounties -> bounty-board Take a minute to read the requirements for Bounty #1 Reward: 2,000 Satoshi. You can claim daily as long as the bounty is open. For your reference, here is the link to the thread by MOD Nuuu It takes a considerable amount of time, when you autobet & watch until you hit <= 0.007 Hence I wrote a python script for Bounty #1, to make it easy for you. Step 1 Go to Your Account -> Settings - API You will find your API key. Step 2 Download Python from the python website Step 3 Save this script Spoiler # ============================================================================= # DISCLAIMER # # PLEASE RUN THE SCRIPT ONLY IF YOU KNOW WHAT YOU ARE DOING # I'M NOT RESPONSIBLE FOR ANY LOSSES # # THIS SCRIPT AUTO BETS UNTIL YOU ROLL <= 0.007 # ============================================================================= import string import random import requests def generate_client_seed(): length = random.randint(32, 40) all = string.ascii_letters + string.digits client_seed = "".join(random.sample(all,length)) return client_seed # ENTER YOUR PREFERRED COIN HERE CURRENCY = "BTC" # ENTER YOUR LOSS LIMIT lossLimit = 0.0 # NEED NOT CHANGE THESE minBet = 0.00000020 payout = 2 SECRET = "YOUR_API_KEY_HERE" PRELINK = "https://api.crypto.games/v1/placebet" URL = f"{PRELINK}/{CURRENCY}/{SECRET}" totalProfit = totalWagered = 0 betAmout = minBet side = False targetHit = False for i in range(1, 100000): clientSeed = generate_client_seed() DATA = {"Bet": format(betAmout, '.8f'), "Payout": payout, "UnderOver": side, "ClientSeed": clientSeed} betResult = requests.post(URL, data = DATA).json() betID = betResult["BetId"] roll = betResult["Roll"] profit = betResult["Profit"] balance = betResult["Balance"] print(f"{i}) BETID: {betID} Bet: {betAmout} Payout: {payout} Rolled: {roll}, Profit: {profit}, Balance: {balance}") totalProfit += profit totalWagered += betAmout if balance <= lossLimit: print("Loss Limit Reached... Exiting Code...") break if(roll <= 0.007): targetHit = True print(f"BET ID: https://crypto.games/bet/dice/{betID}") break print(f"Total Profit: {totalProfit}") print(f"Total Wagered: {totalWagered}") Step 4 Change Settings in the script 1) Copy your API key and paste it in the appropriate place. 2) Carefully adjust your Stop Loss. 3) Min bet is 20 sat ~ equivalent, as per the bounty#1 requirement & payout 2x or higher(A disclaimer, if you don't know what you are doing, you might lose your entire balance, I'm not responsible for that ) Step 5 Run script, sit back, chat while having some drinks When the script stops, copy your bet id & paste in CG discord, bounty-submissions. If you followed all the steps correctly, Congratulations With your feedback I will definitely be back, to share more dice scripts/strategies... Good Luck in your betting sessions, Happy Dicing 3 2 Quote Link to comment Share on other sites More sharing options...
Mihr Posted January 1 Author Share Posted January 1 Join discord & check with the mods there. You will find vorka there too Quote Link to comment Share on other sites More sharing options...
Mihr Posted January 1 Author Share Posted January 1 No, that was a dice contest bounty which was finished. And I created a script for it and shared here so that it maybe helpful for other players. However there maybe benefits in joining the cg discord. As well as the forum here. Quote Link to comment Share on other sites More sharing options...
mari12 Posted July 26 Share Posted July 26 I'm going to register on the disk. sounds really good Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.