Search content
Sort by

Showing 5 of 5 results by shakpablo
Post
Topic
Board Mining (Altcoins)
Re:
by
shakpablo
on 13/02/2022, 16:38:24 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 Off-topic
Cryptodraw.org - First CryptoCashback Service!
by
shakpablo
on 15/10/2018, 19:52:26 UTC
About Crypto Cashback
We offer a common platform to reward investors and traders via Cashback, Rebates and Discounts. The right way to help investors is by integrating all reward programs into the platform and display how much and where they can save their money. When we save this money for investors, they can reinvest the saved money and make actual crypto currency market much more effective and volatile.

How Crypto Cashback Works?

Thanks to the P2P system, we were able to implement this project
You can return up to 5% for transactions!
When someone opens an account at an exchange through us, the exchange pays us part of their commission profit for every trade the client make as compensation for referring a customer to them. Similarly when someone invests in an ICO through us, the ICO firms pays us a referral bonus.

We then share the majority of our revenue with the client (trader/investor), paying them a cash rebate for each trade/purchase they make.

The rest of the revenue is distributed proportionally among the CCR token holders including those who participated during CryptoCashbackRebate crowd sale.

Enormous Potential.

Cryptocurrency has revolutionized the digital transaction and value of assets across the globe. Cryptocurrency market capitalization is now around 450 billion USD. This market have the potential to grow several trillion USD in next few years.

The global cashback industry is estimated to be around $84 Billion and growing.
USE PROMOCODE -  DONTACOS  to get 5% Cashback
Cool
Post
Topic
Board Service Discussion
Re: Safedice scam?
by
shakpablo
on 22/08/2017, 22:44:26 UTC
I created an account on Safedice and my account had an auto withdraw for
0.05070000
17-08-17 12:52
f0c375f5fc3b0c774eca33a019c66a4e45a939dd804ba5b6f03ccf4edaa74365

But I don't know why and I haven't receive the money to my emergency wallet.

Anyone know about this site?
As far as i know safedice is a legit dice site.

Your account probably got compromised.

If you still think the site is a scam, it would be best to make a report here with all the details and proper formatting -> https://bitcointalk.org/index.php?board=83.0

I'm pretty sure you'll get a response there.

You can also try to contact their support, either on their site on here on BTALK https://bitcointalk.org/index.php?topic=868275.0
It seems that there are some other users calling it a scam, but without any reasoning, trolls trolling or?

Thanks, I'll post there. I sent an email to them but no answer in 5 days for the moment.

Regards
Post
Topic
Board Service Discussion
Safedice scam?
by
shakpablo
on 22/08/2017, 20:35:58 UTC
I created an account on Safedice and my account had an auto withdraw for
0.05070000
17-08-17 12:52
f0c375f5fc3b0c774eca33a019c66a4e45a939dd804ba5b6f03ccf4edaa74365

But I don't know why and I haven't receive the money to my emergency wallet.

Anyone know about this site?
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
shakpablo
on 04/08/2017, 20:08:29 UTC
Hello,

I need to edit the script of Elmo's Bet Progression

Code:
chance= 47.13
base=0.00000001
bethigh = true

nextbet = base 
investprofit = 0
wincount = 0
losecount=0
stopnow = false
first = true
second = false
secondwin = false
third = false
betcount=100

-- set profit target here (Final Balance after Winning)
profittarget= 999.00000000

function dobet()

--Randomizer
r=math.random(2)

if r == 1 then
     bethigh=true
else
     bethigh=false
end

if betcount == 500 then
betcount=0
resetseed();
else
betcount=betcount+1
end

if (balance) >= profittarget then
stop();
print(balance)
print("TARGET ACHIEVED!!!")
end

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

done = false

   if win then

--     switch high/low every win
--     bethigh = false

         if(first) then
--          switch high/low on the first win
--          bethigh = !bethigh
            nextbet = base
            if(stopnow) then
              stop()
            end
         end
         if(second) then
--          switch high/low on the second win
--          bethigh = !bethigh
            secondwin = true
            second = false
            third = true
            done = true
         end
         if(third and !done) then
--          switch high/low on the third win
--          bethigh = !bethigh
            if(secondwin) then
--             switch high/low on the second and third win
--             bethigh = !bethigh   
               nextbet = base
               if(stopnow) then stop() end
            else
--              switch high/low on one and two lose third win
--              bethigh = !bethigh               
                nextbet = previousbet * 3
             end
             third = false
             first = true
         end
   else
--    switch high/low on the every lose
--    bethigh = true
      if(first and !done) then
--        switch high/low on the first lose
--        bethigh = !bethigh
          first = false
          second = true
          done = true
       end
       if(second and !done) then
--         switch high/low on the second lose
--         bethigh = !bethigh
           secondwin = false
           second = false
           third = true
           done = true
        end
        if(third and !done) then
--          switch high/low on the third lose
--          bethigh = !bethigh
            third = false
            first = true
            print("GO 4 THE WIN!!!")
            if (secondwin) then
--              switch high/low on the one lose two in thrird lose
--              bethigh = !bethigh
                nextbet = previousbet * 3
            else
--              switch high/low only if all three lose
--              bethigh = !bethigh
                nextbet = previousbet * 4
             end
            done = true
        end 
   end
end

Basically what I need it's to assume loses. When 3 loses happens on the last progression, I need to stop at the first win and not to wait till 2 wins.
Also I need to place a maxbet limit, for example if nextbet = balance*0.25 then restart progression.
Please if anyone can help me.

Regards,
Pablo