Search content
Sort by

Showing 6 of 6 results by sle7in11
Post
Topic
Board Mining (Altcoins)
Re:
by
sle7in11
on 05/09/2021, 15:55:59 UTC
The new version is finally ready. You can download PhoenixMiner 5.8a from here:

https://phoenixminer.info/downloads/PhoenixMiner_5.8a_Windows.zip
https://phoenixminer.info/downloads/PhoenixMiner_5.8a_Linux.tar.gz


Changes in version 5.8a :
  • Added lock core clock
  • Fixed an issue causing crashing with some RTX 3060/3080/3090 cards
  • Implemented new "turbo" kernels (-clkernel 3) for AMD Polaris cards that can work with the current DAG sizes over 4 GB. Note that -clkernel 3 uses double the VRAM and will
    provide slightly faster hashrate with slightly higher power consumption. You can use the -rvram command-line parameter to specify how much VRAM to be left unused
  • Increased the maximum supported DAG epoch to 600 (i.e. until about Sep 2023)
  • Implemented full hardware control for AMD RX6900/6800/6700 cards under Linux. Note that with these cards under Linux you need to specify relative core voltage: e.g. -
    cclock -50 will set the core voltage to be 50 mV under the default value
  • Added ROCr kernels for Vega, Radeon VII and Navi cards. With these kernels you will be able to run these cards with Linux drivers 20.45 and later but the performance will
    be lower than with the older PAL drivers and kernels. We recommend using AMD Linux driver 20.30 for all cards except RX6900/6800/6700
  • Fixed an issue causing crashing with some RX6900/6800/6700 cards under Linux (there is no need to run these cards with -clkernel 0 anymore)
  • Added support for AMD Windows drivers up to 21.8.1. Note that Radeon VII cards will not work with drivers 21.6.1 or higher - you need to use older drivers for proper
    operation of these cards
  • Added support for AMD Linux drivers up to 21.20 (use older drivers for Vega or Radeon VII cards as they will not work with 21.20). Note that the latest 21.30 drivers are
    not supported (and the initial testing shows that even the older Polars cards are not working properly with them, so avoid 21.30 for now)
  • Numerous other fixes and small improvements

Please let us know if you have any problems or questions related to PhoenixMiner 5.8a
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
sle7in11
on 08/05/2017, 03:28:41 UTC
Uh it did it again! After a bet of 0.00065536 it loses. On the console screen it shows another bet of x2 which is what it is supposed to do. But the left screen doesn't register. It shows neither a winner or a loser just nothing. A quick check on the website shows that the final bet was a winner which should have reset the script yet nothing. The bot just stops in it's tracks as if the website did not send the data out.

Maybe I need to change sites? I'm using Nitrogen.

Hm, i've not heard of similar issues on nitrogen. I will look into it. In the mean time, I do suggest you play on another site. You can take your pick off of any one of the list on https://bot.seuntjie.com
I might caution against using bitsler at this time, as it might be doing the same, but I have not verified that yet. So use them, or not. Your choice.

Yes, I switched sites and have had no problem. I have 10 bot's going at once now on 10 separate accounts making about $1k/day. Will be tipping you (if your the author?) soon through the bot! Love it!
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
sle7in11
on 07/05/2017, 17:21:39 UTC
Uh it did it again! After a bet of 0.00065536 it loses. On the console screen it shows another bet of x2 which is what it is supposed to do. But the left screen doesn't register. It shows neither a winner or a loser just nothing. A quick check on the website shows that the final bet was a winner which should have reset the script yet nothing. The bot just stops in it's tracks as if the website did not send the data out.

Maybe I need to change sites? I'm using Nitrogen.
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
sle7in11
on 07/05/2017, 16:59:38 UTC
I am having one problem where after a losing streak it suddenly stops but when I go to the website it shows 3 additional bets. 1 of which should have reset the script back to 1 satoshi, but it didn't. And this bet was not registered on the bot. How do I fix this?
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
sle7in11
on 07/05/2017, 15:37:19 UTC
thank you for the help. I managed to figure it out on my own and the script does just what I want. Here it is to anyone who is interested.

Code:
chance=49.5
basebet=0.00000001
nextbet=basebet
resetseed()
lossCounter=0

function dobet()

if win then

 nextbet=previousbet

  if lossCounter >= 10 then
   nextbet=basebet
   lossCounter=0
  end

else

 lossCounter=lossCounter+1

 nextbet=previousbet*2

end

end

Thanks!

You can make significant profits with this script if you  set the lossCounter <= to a bigger number. But the risk/reward is a big one.
If you set it to 15 you will be seeing about $100/hour but open yourself up to losing it all on a 10+ losing streak. You also have to have a bigger bank roll to do that.  .3 btc minimum but even that can we wiped clean. 10-12 is very safe even with .1 btc, with 12 bringing in around $100-150/24 hours.
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
sle7in11
on 07/05/2017, 14:53:27 UTC
Are we able to use the < and > in the code?

For example say After 10 total losses in a martingale run I want to reset to base on the next win but keep x2 bets going on losses.

Code:
chance=49.5
basebet=0.00000001
resetseed()
lossCounter=0

function dobet()

if win then

 nextbet=previousbet

  if lossCounter >= 10 then
   nextbet=basebet
  end

else

 lossCounter=lossCounter+1

 nextbet=previousbet*2

end

end

does that work?