Search content
Sort by

Showing 14 of 14 results by tankiatwee
Post
Topic
Board Mining (Altcoins)
Re:
by
tankiatwee
on 10/01/2022, 14:47:52 UTC
The new beta version is ready. It is mostly a bugfix release, the more significant upgrades are coming next month. You can download PhoenixMiner 6.0a from here:


PhoenixMiner_6.0a_Windows.zip
PhoenixMiner_6.0a_Linux.tar.gz


The new features in this release are:
  • Full LHR disable mode -lhrdis <n>  1 - yes (default), 0 - no
  • Show the GPU vendor name in the list of GPUs to make it easier to identify the GPUs
  • Added support for the latest AMD Linux drivers 21.40.1. There are some bugs in these drivers, particularly the clocks and voltages can't be set properly with older
    cards (RX4x0/RX5x0/Vega/RadeonVII)
  • Validated support for the latest AMD Windows drivers up to 21.11.2
  • Fixed issues with AMD RX6700XT cards with the latest AMD and Linux drivers
  • Fixed issues with AMD Vega and Radeon VII cards on latest Windows and Linux drivers
  • Fixed crash with very old Nvidia drivers (3xx.x)
  • Other fixes and small improvements

The updated list of known issues (driver incompatibilities, etc.) and workarounds:
AMD Linux driver 21.40.1 has a bug preventing proper setting of clocks and voltages on older cards (RX4x0/RX5x0/Vega/RadeonVII). Given that these drivers are also
usually slower than the older drivers for these cards, we recommend using Linux drivers 20.30 for anything older than RX6000 series.
If you are using Linux drivers 21.40.1 with Radeon VII cards, you need to add the option -fpwm 1 in order to have proper fan control.
AMD Linux drivers 21.40.1 has finally removed the requirement of PCIe atomics but there are problems when you try to mix Polaris (RX4x0/5x0) cards and Vega or newer
cards on the same rig.
Some Nvidia cards will report a lot of stale shares under Windows 11. Using the same driver version under Windows 10 resolves the issue.
Post
Topic
Board Bounties (Altcoins)
Re: [Bounty] Bit Money - Investment &amp; Lending Platform (5% of premine coin) 4 Week
by
tankiatwee
on 18/09/2018, 21:02:11 UTC
Proof of Authentication:
Joined Telegram Campaign
Post
Topic
Board Bounties (Altcoins)
Re: [AIRDROP]🍷💰💲BEVERAGE.CASH🍷💰💲UP TO $40,000 TO BE GIVEN AWAY
by
tankiatwee
on 18/09/2018, 04:21:44 UTC
Bitcointalk Username: anilkt05
Telegram airdrop: YES
Twitter airdrop: YES
Facebook airdrop: YES

Post
Topic
Board Bounties (Altcoins)
Re: [BOUNTY] AllForMiner - Decentralized Service Platform for Miners
by
tankiatwee
on 18/09/2018, 00:31:56 UTC
#Proof of Authentication
Telegram Campaign: @SatoshlQueeh
Eth Address: 0x32f1adba4597fb6b3812e62d93b980269382e89c
Post
Topic
Board Bounties (Altcoins)
Re: [BOUNTY] AllForMiner - Decentralized Service Platform for Miners
by
tankiatwee
on 16/09/2018, 03:53:55 UTC
#Proof of Authentication
Telegram Campaign: @SatoshlQueeh
Eth Address: 0x32f1adba4597fb6b3812e62d93b980269382e89c
Post
Topic
Board Bounties (Altcoins)
Re: [BOUNTY] ◌ Alfa-Enzo ◌🚀 time as an experience 🚀 $3M PRIVATE SALE COMPLETED 🚀
by
tankiatwee
on 16/09/2018, 02:50:14 UTC
#Proof of Authentication
Telegram username: @SatoshlQueeh
Eth Address: 0x32f1adba4597fb6b3812e62d93b980269382e89c
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
tankiatwee
on 06/05/2017, 16:02:45 UTC
Hi,

Is there a command line for playing sound files (.wav)? I've been looking around for examples to no avail. Thanks.

alarm() or ching()

You can select which files to play for each in the settings window (view-settings. Remember to save before you exit)

Or, if you can figure out how to bind to http://luaforge.net/projects/luacom/ from within LUA and how it handles playing sound files, you can try using that.

OK...I guess there isn't much options and LUA is getting too complicated. I'll make do with what we have for now, thanks.
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
tankiatwee
on 06/05/2017, 02:58:06 UTC
Hi,

Is there a command line for playing sound files (.wav)? I've been looking around for examples to no avail. Thanks.
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
tankiatwee
on 16/01/2017, 07:30:07 UTC
Hi programmers, I recently opened a separate thread about a bitsler dice strategy. If anyone can code it into a lua script, that would be great. I shouldn't be hard. Please look at https://bitcointalk.org/index.php?topic=1748508.0. Thanks.

any reward?

Somehow I was able to hammer out a decent script so the reward is I gonna share it for your improvement.  Wink

25% chance bitsler strategy (follow this thread for background: https://bitcointalk.org/index.php?topic=1748508):

Code:
chance = 25
multiplier = 1.35
base = 0.00000002
nextbet = base 
bethigh = false
rollcount = 7

function dobet()

--Randomly select High/Low
--bethigh = math.random(0,100)%2 == 0

--change seed every 7 bet
if rollcount == 7 then
rollcount = 0
resetseed();
else
rollcount = rollcount + 1
end

if (balance) < (nextbet) then
stop();
print(balance)
print("INSUFFICIENT FUNDS")
end

--bet progression
   if win then
      nextbet = base
   else
      nextbet = previousbet * multiplier
   end
end

end

See this screenshot for script result: http://imgur.com/a/mg2PE

I lack the know-how for a controlled bet high/low coding. The script starts with betting low all the way (bethigh = false). I need it to switch to high after a 10-bet losing streak, then once it hits the first win, switch to low again.

There might be some losing streak coding floating in earlier posts of this thread or outside this forum. Just let me know and I try to learn whatever I can. If you have better ideas for bet high/low strategy, feel free to amend the script code as above. Another idea is to stop the script running after a 20-bet losing streak but I KIV this first and am more keen to test bet high/low.

Thanks for your help.
Post
Topic
Board Gambling discussion
Re: Here's a lua script for 25% chance. Need help to improve.
by
tankiatwee
on 13/01/2017, 23:45:46 UTC
Well, I thought I can't code but I managed to hammer out something that works.

Code:
chance = 25
multiplier = 1.35
base = 0.00000002
nextbet = base  
bethigh = false
rollcount = 10

function dobet()

--Randomly select High/Low
bethigh = math.random(0,100)%2 == 0

--change seed every 10 bet
if rollcount == 10 then
rollcount = 0
resetseed();
else
rollcount = rollcount+1
end

--bet progression
   if win then
      nextbet = base
   else
      nextbet = previousbet * multiplier
   end
end

end

Now, the high/low randomizer is just one line. Is there a more intelligent coding for roll high/low to minimize losing streak? Perhaps increase chance and bet amount until profit before falling back to 25% (optional)?

Are you able to code for stop betting for 5 minutes and change seed after a 20-bet losing streak, then resume? Or any other improvement ideas are welcome.
Post
Topic
Board Gambling discussion
Re: Need help with dicebot 3.3 settings for bitsler dice strategy.
by
tankiatwee
on 13/01/2017, 05:03:40 UTC
I'm sending a lua script download page to make programmers easier to adapt for my settings in the first post.

(elmo betting progression strategy downloaded from https://satoshisfaucet.wordpress.com): http://www.mediafire.com/file/81ar5ts8wbb2320/elmobetstrategy.txt

It has a roll over/under randomizer, resetseed() (I believe seed changes every 100 bets in the script), and chance.

But the way it increases bet after loss is not as conservative as this "25% chance" strategy with 35% increase/decrease.

Hope programmers can easily fine-tune it so I can test it soon. Thanks!
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
tankiatwee
on 12/01/2017, 07:32:27 UTC
Hi programmers, I recently opened a separate thread about a bitsler dice strategy. If anyone can code it into a lua script, that would be great. I shouldn't be hard. Please look at https://bitcointalk.org/index.php?topic=1748508.0. Thanks.
Post
Topic
Board Gambling discussion
Re: Need help with dicebot 3.3 settings for bitsler dice strategy.
by
tankiatwee
on 12/01/2017, 05:59:02 UTC
It's all right that I don't have to rely on dicebot. It's just that it has the power to randomize some elements like "roll over/under", change seed and stop bet.

In fact, I was able to amass up to 30,000 sats starting from free faucet using bitsler alone, but once you start auto-betting, it can't do anything dynamic like dicebot. I'm sure seasoned players know what I mean.
Post
Topic
Board Gambling discussion
Need help with dicebot 3.3 settings for bitsler dice strategy.
by
tankiatwee
on 12/01/2017, 05:12:55 UTC
Hi guys,

My first post here, but I need a quick help to correspond bitsler settings (automatic betting) to dicebot settings under advanced mode. I'm using dicebot 3.3.

Please see attached bitsler settings image: http://imgur.com/a/RrMr0

Overall settings:

1. base bet: 0.00000002
2. chance: 25%
3. to switch between "roll under" and "roll over" every 5 bets
4. winning events: back to base bet
5. losing events increase/decrease: 35%
6. rolls: 580 (customizable)
7. change seed after all rolls
8. stop betting and change seed after 20-bet losing streak

Please screenshot and upload the dicebot settings to imgur.com so I can take look.

I don't know if the permanent martingale option will affect this strategy. How to remove it?

If someone can code this into a lua script, that would be great. I don't have time to code.

This "25% chance" strategy is based on this video: https://www.youtube.com/watch?v=NXm7CIZWfgM

I tried it in bitsler and it works well, except I suffered the rare 30+ bet losing streak that kills my amount since I don't think there's any way to stop a losing streak in auto betting.

Thanks for your help!