Search content
Sort by

Showing 20 of 45 results by Agent009
Post
Topic
Board Mining (Altcoins)
Re: GMiner v2.59 Ethash/KAWPOW/Equihash/CuckooCycle
by
Agent009
on 27/07/2021, 23:38:34 UTC
Hello Zminer777

And why I can't to mine ETH on the pool europe.ethash-hub.miningpoolhub.com:20535 ?
gminer say that: Malformed server message

https://ibb.co/qxDgs8r

In another miners all good with this pool.

Just add:  --proto stratum

Thank you so much Blockpusher!
Post
Topic
Board Mining (Altcoins)
Re: GMiner v2.59 Ethash/KAWPOW/Equihash/CuckooCycle
by
Agent009
on 04/07/2021, 18:19:08 UTC
Hello Zminer777

And why I can't to mine ETH on the pool europe.ethash-hub.miningpoolhub.com:20535 ?
gminer say that: Malformed server message

https://ibb.co/qxDgs8r

In another miners all good with this pool.
Post
Topic
Board Mining (Altcoins)
Re: GMiner v2.24 Equihash/CuckooCycle/Ethash/ProgPoW/KAWPOW
by
Agent009
on 27/09/2020, 14:58:03 UTC
Yes, I can confirm the same situation.
Beginning from 2.23 version on TUBE algo (cuckaroo29b) all my videocards slowed down speed almost half.

Version gminer 2.22 to 2.23
MSI 1080 ti from 8.8 > 8.3 g/s
GTX 1080 aorus from 5.45 > 5.08 g/s

Version gminer 2.23 to 2.24
MSI 1080 ti from 8.3 > 5.3 g/s
GTX 1080 aorus from 5.08 > 3.4 g/s

It seems two last versions are bugged, especially gminer 2.24
Very bad updates.

Stable last good version of gminer it is 2.22
I rolled back to this version.
Post
Topic
Board Mining (Altcoins)
Re: GMiner v2.09 Equihash/CuckooCycle/Ethash/ProgPoW/KAWPOW
by
Agent009
on 04/06/2020, 20:47:10 UTC
Hello Zminer777

Why on nvidia 446.14 drivers GRIN29 hashrate so small?
Only 5.59 h/s on msi 1080ti

I remember on the old version of gminer and nvidia drivers 416-417 version grin29 hashrate was about 7.00+ h/s

What happened?
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
Agent009
on 19/07/2019, 00:50:15 UTC
@Agent009

This script should do what you've asked... As always, it hasn't been extensively tested (I simply used the simulation and exported the results to check it), so use at your own risk!

You will need to modify the "edge" variable to match the "House Edge" of the site you want to play on... 1% HouseEdge = 1... 0.8% HE = 0.8 etc. Then set the basePayout and baseBet to suit your requirements. They are defaulted to 10x payout and 0.00000010 BTC

Code:
-------------------------------------------------------------------------------
--
-- Payout Martingalge Script for Agent009 by HCP
--
-- BTC Donations to: 33gzi64cvCr4i9ECGPwvZktzS2qknRUFhC
--
-------------------------------------------------------------------------------

edge       = 1 -- set to the house edge of your site
basePayout = 10 -- set to the base payout that you want
payout     = basePayout

chance     = (100 - edge) / payout -- calculate chance based on house edge
baseChance = chance

baseBet = 0.00000010 -- 1 "unit"
nextbet = baseBet -- set our initialBet

bethigh = false

function dobet()

    if win then
        -- reset to base bet/chance/payout
        nextbet = baseBet
        chance  = baseChance
        payout  = basePayout
       
    else
        -- increase payout
        payout  = payout + 1
       
        -- recalculate chance
        chance  = (100 - edge) / payout
       
        -- increase bet by 1 unit
        nextbet = previousbet + baseBet
    end

end

HCP thank you very much! Smiley
I will test it today and then talk about the results...
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
Agent009
on 19/07/2019, 00:48:41 UTC
Yes, alright it is payout.
Yea, that's right.

Ok... that was slightly complicated due to the fact that you can't simply specify the "payout" value. Instead, the bot requires that you know the "House Edge" for the site to be able to calculate the correct "chance" value for your desired "payout". Wink

I have put the script into the Programmer Mode Discussion thread to keep this thread tidy.

Got it!
Thank you very much!
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
Agent009
on 17/07/2019, 12:51:08 UTC
Sorry, I'm a little confused by your use of the term "multiplier"... do you mean payout? Huh

So, 10x payout which would equal around ~9.9% chance (on a typical house edge of 1%)... and then slowly increase that payout (11x, 12x, 13x etc), which effectively reduces the chance, while increasing the bet?

Yes, alright it is payout.
Yea, that's right.
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
Agent009
on 16/07/2019, 12:52:00 UTC
Hello guys!
Can anyone help me with a little script?

Idea is:
base bet = 0.00000010
base multiplier = 10x
on loss = 0.00000010 (as and basebet, always +1 unit)
on loss = +1x multiplier
on win = reset to base params

i.e. when I loss so my next bets must be like as:
after 1 loss: bet 0.00000020 + 1x multiplier (11x)
after 2 loss: bet 0.00000030 + 1x multiplier (12x)
after 3 loss: bet 0.00000040 + 1x multiplier (13x)
after 4 loss: bet 0.00000050 + 1x multiplier (14x)
after 5 loss: bet 0.00000060 + 1x multiplier (15x)

and so on until we win...

I saw such a script on the Bustabit site (payout martingale)

You can do it in Setting Mode - Advanced. Using MMMMKKKK or d'Alembert, reset on win in stop condition.

Yea, it's true, but this only for bet amount. And how to make on each lose +1x multiplier?
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
Agent009
on 15/07/2019, 00:20:06 UTC
Hello guys!
Can anyone help me with a little script?

Idea is:
base bet = 0.00000010
base multiplier = 10x
on loss = 0.00000010 (as and basebet, always +1 unit)
on loss = +1x multiplier
on win = reset to base params

i.e. when I loss so my next bets must be like as:
after 1 loss: bet 0.00000020 + 1x multiplier (11x)
after 2 loss: bet 0.00000030 + 1x multiplier (12x)
after 3 loss: bet 0.00000040 + 1x multiplier (13x)
after 4 loss: bet 0.00000050 + 1x multiplier (14x)
after 5 loss: bet 0.00000060 + 1x multiplier (15x)

and so on until we win...

I saw such a script on the Bustabit site (payout martingale)
Post
Topic
Board Gambling
Re: ▄■▀■▄ 🌟BITVEST🌟 💰WIN BY 🔶 PLAY 📈 INVEST ☕ SOCIAL➡🔺PLINKO🎲DICE🎰SLOT🎡SPIN
by
Agent009
on 28/11/2018, 17:57:59 UTC
Hey lightlord

Please read my pm to you here
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Uranium-X (URX) Super Rare Crypto!! Cpu Mining! Uranium-x.com
by
Agent009
on 23/09/2018, 01:24:46 UTC
Omg..
Realy hack or scam?
Post
Topic
Board Mining (Altcoins)
Re: WildRig Multi: new miner for AMD with multialgo support
by
Agent009
on 18/09/2018, 17:37:52 UTC
andrucrypt, can you please add kernel for Tahiti videocards?
It's R9270,270x,280x etc..
I have failed to compile kernels for those cards, and have no time to check what is wrong. Even Hawaii and other prior RX kernels are just an exception and I provide them "as is". I have no such hardware to make tests and proper support it, maybe later when I have more time...

Ok, clear.

By the way, I like how is OP very carefully done and very convenient to read, looks very nice. Good job dev...
Post
Topic
Board Mining (Altcoins)
Re: WildRig Multi: new miner for AMD with multialgo support
by
Agent009
on 18/09/2018, 17:25:55 UTC
andrucrypt, can you please add kernel for Tahiti videocards?
It's R9270,270x,280x etc..
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Mass Grid - The decentralized high computing network
by
Agent009
on 18/09/2018, 16:31:14 UTC
Any news about new mining software for MGD algo?
Post
Topic
Board Mining (Altcoins)
Re: WildRig Multi: new miner for AMD with multialgo support
by
Agent009
on 17/09/2018, 21:24:17 UTC
Very, very good miner!
Thank you andrucrypt...
Post
Topic
Board Mining (Altcoins)
Re: Open Source XPM (Primecoin) GPU Miner & Pool xpmforall.org
by
Agent009
on 03/09/2018, 09:08:18 UTC
eXtremal.ik71, very good job, thank you!
And question, how about new miner with increased perfomance (especially for nvidia)? Smiley
I think that 1080ti cards can make more than 0.62-0.73 cpd...
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] ANU | AnuCoin | C11 POW / POS / Masternodes | NO ICO | Low Premine
by
Agent009
on 22/08/2018, 22:12:30 UTC
Coin: RIP
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Datacoin - Censorship-Free Data Storage
by
Agent009
on 18/07/2018, 21:53:06 UTC
So what with my 1000 DTC? Where they are?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Datacoin - Censorship-Free Data Storage
by
Agent009
on 12/07/2018, 01:25:50 UTC
This is my link http://www.[Suspicious link removed]?unique=da8gJSgBDIxQieyfsLNjRoh1ILfwvSCc
And now I see that my balance = 0 DTC  Huh But I not received my 1000 DTCs Sad
I made a deposit to this address 995 DTC: DGVeX83PzKP77M4RhNYTsBVcSuWCu4nfJc and here 5 DTC: DPRiVrKM2DyQE1FfJEuMhUDNqHgFzZz5KM
In total 1000 dtc.

https://i.imgur.com/UKZfgO7.jpg
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Datacoin - Censorship-Free Data Storage
by
Agent009
on 10/07/2018, 21:27:31 UTC
Hi extro24

I can't withdraw my 1000 datacoin from datadice website.
Please help me...