Jump to content

dznuts8585

Member
  • Content Count

    100
  • Joined

  • Last visited

  • Days Won

    3

Reputation Activity

  1. Like
    dznuts8585 reacted to Caligula6 in [$800] PD Weekly Heroes Wk29   
    casino:116481515396
    casino:116481576860
     
     
     

  2. Like
    dznuts8585 got a reaction from Caligula6 in [$800] PD Weekly Heroes Wk29   
    Primedice: #116,480,120,332
    Primedice: #116,480,137,837
     


  3. Like
    dznuts8585 got a reaction from bhatti in [$800] PD Weekly Heroes Wk28   
    there is no need to say hit 30x two times consecutively within 30 rolls. It fits well when u don't need two consecutive instead two winning bets within 30 rolls on 30x sound fair and square. @AleksandarZ
  4. Upvote
    dznuts8585 reacted to Serlite in [$800] PD Weekly Heroes Wk24   
    66.66
    115476838988

    This was a bit of a challenge without Seuntjie's dicebot! But luckily, I was able to whip up a bit of JavaScript that should allow people to continue programming bets from the browser. Not as neat is Seuntjie's dicebot, but at least it works!
    If you'd like to use it, read through the code carefully! It's good practice to make sure nobody sneaks in an auto-withdrawal script and robs you. You'll need to use this in the console of your browser (usually F12) after you've signed into Primedice:
    // ========================================== // Copy from here... let stopContinousBetting = false; function placeBet(rollUntilStop, betVariables){ let token = localStorage["session"].replaceAll("\"", ""); let query = { "operationName":"PrimediceRoll", "variables": betVariables, "query":"mutation PrimediceRoll($amount: Float!, $target: Float!, $condition: CasinoGamePrimediceConditionEnum!, $currency: CurrencyEnum!) {\n primediceRoll(amount: $amount, target: $target, condition: $condition, currency: $currency) {\n ...CasinoBetFragment\n state {\n ...PrimediceStateFragment\n __typename\n }\n __typename\n }\n}\n\nfragment CasinoBetFragment on CasinoBet {\n id\n active\n payoutMultiplier\n amountMultiplier\n amount\n payout\n updatedAt\n currency\n game\n user {\n id\n name\n __typename\n }\n __typename\n}\n\nfragment PrimediceStateFragment on CasinoGamePrimedice {\n result\n target\n condition\n __typename\n}\n" }; fetch("https://primedice.com/_api/graphql", { method: "POST", headers: { "x-access-token": token, "x-language": "en", "x-lockdown-token": "", "content-type": "application/json", "content-length": query.length }, body: JSON.stringify(query) }).then(response => { if (response.ok){ return response.json(); } else{ console.log("Request failed!", response); } }).then((jsonBody) => { if (jsonBody.data.primediceRoll){ let roll = jsonBody.data.primediceRoll; let condition = roll.state.condition; let target = roll.state.target; let rollNumber = +roll.state.result.toFixed(2); let won = condition === "above" ? rollNumber > target : rollNumber < target; console.log ( won ? "Win" : "Loss", rollNumber); if (rollUntilStop && !shouldStopBetting(won, rollNumber)){ placeBet(rollUntilStop, betVariables); } } else{ console.log("No roll returned!", jsonBody); } }); } function shouldStopBetting(won, rollNumber){ if (stopContinousBetting){ console.log("Betting manually stopped!"); stopContinousBetting = false; return true; } let winningNumbers = [33.33, 44.44, 55.55, 66.66, 77.77]; if (won && (winningNumbers.includes(rollNumber))) { console.log("Stop condition met!"); return true; } return false; } function stopBetting(){ stopContinousBetting = true; } // ...To here. // ========================================== // Run this only after you've input the exact bet parameters you want placeBet( true, { "currency":"ltc", "amount":0.0005775, "target":1.99, "condition":"above" }); // Run this if you want to interrupt betting stopBetting();  
  5. Like
    dznuts8585 reacted to D3ngk33 in [$800] PD Weekly Heroes Wk19   
    Bet: 114,053,282,419
    placed by D3ngk33 on 12/09/2022
    Wagered
    0.00000150 Multiplier
    10.00x Profit
    0.00001350  
  6. Like
    dznuts8585 reacted to Serlite in [$800] The Greatest Minds: Edward Wilson   
    44.44
    Bet: 103,994,790,749
    placed by Serlite on 12/01/2022
    Wagered
    0.00021282 Multiplier
    1.01x Profit
    0.00000217 This one's not too tough, since we can choose any multiplier we want! And naturally that means I'd go for the lowest possible one. Here's a script!
    chance = 98 nextbet = 0.00021282 bethigh = false currency = "Ltc" numbersToHunt = { 22.22, 33.33, 44.44, 55.55, 66.66 } function dobet() if containedInSet(lastBet.Roll, numbersToHunt) then ching() print(lastBet.Roll) print(lastBet.Id) stop() end end function containedInSet(x, set) for key, value in pairs(set) do if x == value then return true end end return false end  
  7. Like
    dznuts8585 reacted to SSadaf in [$800] PD Weekly Heroes Wk10   
    Bet: 112,025,460,619
    placed by SSadaf on 12/07/2022
    Wagered
    0.00000155 Multiplier
    4.00x Profit
    0.00000465  
    Bet: 112,025,460,829
    placed by SSadaf on 12/07/2022
    Wagered
    0.00000155 Multiplier
    4.00x Profit
    0.00000465  
    Bet: 112,025,461,019
    placed by SSadaf on 12/07/2022
    Wagered
    0.00000155 Multiplier
    4.00x Profit
    0.00000465  
  8. Like
    dznuts8585 reacted to D3ngk33 in [$800] PD Weekly Heroes Wk10   
    Bet: 112,010,662,444
    placed by D3ngk33 on 11/07/2022
    Wagered
    0.00000150 Multiplier
    4.00x Profit
    0.00000450 Bet: 112,010,662,640
    placed by D3ngk33 on 11/07/2022
    Wagered
    0.00000150 Multiplier
    4.00x Profit
    0.00000450 Bet: 112,010,662,816
    placed by D3ngk33 on 11/07/2022
    Wagered
    0.00000150 Multiplier
    4.00x Profit
    0.00000450  
  9. Like
    dznuts8585 reacted to Caligula6 in [$800] PD Weekly Heroes Wk10   
    Bet: 112,011,170,926
    placed by Caligula6 on 11/07/2022
    Wagered
    0.00000155 Multiplier
    4.00x Profit
    0.00000465 Bet: 112,011,171,062
    placed by Caligula6 on 11/07/2022
    Wagered
    0.00000155 Multiplier
    4.00x Profit
    0.00000465 Bet: 112,011,171,185
    placed by Caligula6 on 11/07/2022
    Wagered
    0.00000155 Multiplier
    4.00x Profit
    0.00000465  

  10. Like
    dznuts8585 reacted to G418ran in [$800] PD Weekly Heroes Wk10   
    Bet: 112,010,687,665
    placed by G418ran on 12/07/2022
    Wagered
    0.00020000 Multiplier
    4.00x Profit
    0.00060000 Bet: 112,010,687,127
    placed by G418ran on 12/07/2022
    Wagered
    0.00020000 Multiplier
    4.00x Profit
    0.00060000 Bet: 112,010,686,466
    placed by G418ran on 12/07/2022
    Wagered
    0.00020000 Multiplier
    4.00x Profit
    0.00060000  
  11. Like
    dznuts8585 got a reaction from G418ran in [$800] PD Weekly Heroes Wk10   
    Bet: 112,010,742,704
    placed by dznuts8585 on 11/07/2022
    Wagered
    0.00000148 Multiplier
    4.00x Profit
    0.00000444  
    Bet: 112,010,743,105
    placed by dznuts8585 on 11/07/2022
    Wagered
    0.00000148 Multiplier
    4.00x Profit
    0.00000444  
    Bet: 112,010,743,322
    placed by dznuts8585 on 11/07/2022
    Wagered
    0.00000148 Multiplier
    4.00x Profit
    0.00000444  



  12. Like
    dznuts8585 got a reaction from Caligula6 in [$800] PD Weekly Heroes Wk10   
    Bet: 112,010,742,704
    placed by dznuts8585 on 11/07/2022
    Wagered
    0.00000148 Multiplier
    4.00x Profit
    0.00000444  
    Bet: 112,010,743,105
    placed by dznuts8585 on 11/07/2022
    Wagered
    0.00000148 Multiplier
    4.00x Profit
    0.00000444  
    Bet: 112,010,743,322
    placed by dznuts8585 on 11/07/2022
    Wagered
    0.00000148 Multiplier
    4.00x Profit
    0.00000444  



  13. Upvote
    dznuts8585 reacted to satbyte in [$800] PD Weekly Heroes Wk1   
    11.11
    Bet: 109,864,506,002
    placed by satbyte on 03/05/2022
    Wagered
    0.00010420 Multiplier
    1.01x Profit
    0.00000106  
  14. Like
    dznuts8585 got a reaction from satbyte in [$800] PD Weekly Heroes Wk1   
    Bet: 109,863,459,234
    placed by dznuts8585 on 03/05/2022
    Wagered
    0.00000081 Multiplier
    1.01x Profit
    0.00000001 11.11
  15. Like
    dznuts8585 reacted to Zipho786 in [$1500] PD Happy Easter 🥚   
    Bet: 109,264,633,712
    placed by Zipho786 on 21/04/2022
    Wagered
    0.00011330 Multiplier
    1.10x Profit
    0.00001133  
    Bet: 109,265,132,092
    placed by Zipho786 on 21/04/2022
    Wagered
    0.00022178 Multiplier
    1.10x Profit
    0.00002218  
    Bet: 109,265,132,092
    placed by Zipho786 on 21/04/2022
    Wagered
    0.00022178 Multiplier
    1.10x Profit
    0.00002218 Bet: 109,268,051,990
    placed by Zipho786 on 21/04/2022
    Wagered
    0.00060559 Multiplier
    1.10x Profit
    0.00006056 Bet: 109,274,536,542
    placed by Zipho786 on 21/04/2022
    Wagered
    0.00131072 Multiplier
    1.10x Profit
    0.00013107 Bet: 109,278,216,510
    placed by Zipho786 on 22/04/2022
    Wagered
    0.00262144 Multiplier
    1.10x Profit
    0.00026214  
  16. Like
    dznuts8585 reacted to Serlite in [$1500] PD Happy Easter 🥚   
    20.75
    Bet: 109,132,045,271
    placed by Serlite on 18/04/2022
    Wagered
    0.00027351 Multiplier
    1.01x Profit
    0.00000279 This is a really easy challenge - I hope everyone gets in on it! The prize is bigger this week too, so the share will be bigger even if we have more participants than usual. Here's a script you can use, though it should be simple enough for most people to get on their own:
    chance = 98 nextbet = 0.00027351 bethigh = false currency = "Ltc" local lowerLimit = 17.04 local upperLimit = 24.04 function dobet() if win and lastBet.Roll >= lowerLimit and lastBet.Roll <= upperLimit then print(tostring(lastBet.Id)) ching() stop() end end  
  17. Upvote
    dznuts8585 reacted to AleksandarZ in [$800] The Greatest Minds: Alfred Wegener   
    The Greatest Minds: Alfred Wegener 
    Ends: 03/21/2021 @Midday (12pm) GMT 
      
     
    Requirements
    Win three consecutive bets with the multiplier set on 4x.
    0.03 USD minimum bet amount (in any currency).  
    Tips & Terms & Conditions
    1 valid entry per household. Bets must have been made after the commencement of this promotion. Do not change your linked account during the whole duration of the promotion. 10+ forum post count. Primedice employees can not participate in official Primedice.com forum challenges. This does not apply to moderators. Haven't broken any General Giveaways Rules! Prize Pool(s)
    Minimum prize pool: $150 If over 30 participants: $350 If over 50 participants: $450 If over 100 participants: $550 If over 200 participants: $800 How to Enter
    Respond to this topic, and link your bet IDs using the link function in the text editor. Feel free to edit your posts as you catch the new bets.  (Paste your bet id, then highlight and click on the link bet button, as shown in the image below)
     

     
     
     
  18. Upvote
    dznuts8585 reacted to Sansasyonel in To gain profit by treating the system as a system   
    chance  = 90
    nextbet = 0.00000000
    enablezz=false 
     
    enablesrc=false 
     
    roll_sup = 0
    roll_inf = 0
    if lastBet == nil then
        dec = false
    else
        previousRoll = lastBet.roll
        dec = true
    end
    function dobet()
        if dec == true then
            if lastBet.roll < previousRoll then
                roll_sup = 0
                roll_inf +=1
            end
               
            if lastBet.roll > previousRoll then
                roll_inf = 0
                roll_sup +=1
            end
               
            if roll_inf >= 3-1 or roll_sup >= 3-1 then stop() end   
           
        else
            dec = true
        end
       
        previousRoll = lastBet.roll
    end
    and the site is a real example


     
  19. Upvote
    dznuts8585 reacted to soccercrazy in Need Help with script to Dicebot   
    run number 3

     
  20. Upvote
    dznuts8585 reacted to soccercrazy in Need Help with script to Dicebot   
    second run

  21. Upvote
    dznuts8585 reacted to soccercrazy in Need Help with script to Dicebot   
    first run..

  22. Like
    dznuts8585 reacted to Sansasyonel in To gain profit by treating the system as a system   
    I shared it with you as an example. You have to create for each seed. If you want to know more about what to do, you can write. All you have to do is edit the codes for yourself.
  23. Thanks
    dznuts8585 reacted to Nenad in [$800] The Greatest Minds: Salvador Dali   
    You can claim prizes on the link below until the 31st of March:
    CLAIM HERE Make sure you are logged in to the proper account
    Congratulations to the 229 winners!
  24. Upvote
    dznuts8585 reacted to Serlite in [$800] The Greatest Minds: Vincent Van Gogh   
    40.40
    Bet: 106,863,453,448
    placed by Serlite on 07/03/2022
    Wagered
    0.00029307 Multiplier
    1.01x Profit
    0.00000299 30.30
    Bet: 106,863,584,849
    placed by Serlite on 07/03/2022
    Wagered
    0.00029307 Multiplier
    1.01x Profit
    0.00000299 A nice and simple rollhunt challenge. I'm fine with that! Here's a script, if you don't have one already:
    chance = 98 nextbet = 0.00029307 bethigh = false currency = "Ltc" numbersToHunt = { 10.10, 20.20, 30.30, 40.40, 50.50, 60.60, 70.70, 80.80, 90.90 } function dobet() if containedInSet(lastBet.Roll, numbersToHunt) then ching() print(lastBet.Roll) print(lastBet.Id) stop() end end function containedInSet(x, set) for key, value in pairs(set) do if x == value then return true end end return false end  
  25. Upvote
    dznuts8585 reacted to WinMachine in [$800] The Greatest Minds: Salvador Dali   
    Bet: 106,819,327,700
    placed by WinMachine on 06/03/2022
    Wagered
    0.00000100 Multiplier
    1.01x Profit
    0.00000001  
     
    If someone wants to the script for dicebot! Have fun and good luck!
     
    chance = 98 currency = "Ltc" -- define coin nextbet = 0.00000001 -- define amount to bet bethigh = false start_number = 30.00 end_number = 31.00 function dobet() if win then if(lastBet.Roll >= start_number and lastBet.Roll <= end_number) then ching() print(lastBet.Roll) print(lastBet.Id) stop() end end end  
×