Bitcoin Forum
July 01, 2024, 07:46:37 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 [17] 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 ... 181 »
  Print  
Author Topic: [ANN] CRYPTO MINING GAME, Earn Satoshi, Doge and Litoshi by playing to mine  (Read 83420 times)
jamboom (OP)
Member
**
Offline Offline

Activity: 798
Merit: 10


View Profile
January 07, 2018, 06:26:14 PM
 #321

Hi,

You can mine Dash without having Premium if you go on this page

https://cryptomininggame.com/mine/dash

You should fix it.
Youre right thanks ive thought about it, its a minor fix.
From 1000, no more logarithm, its linear and based on the performance index.
For the log function below, I will tomorrow concert the php in a clear/easy understood explaination Wink
protactinium91
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
January 07, 2018, 07:49:26 PM
 #322

520]
Hi,

You can mine Dash without having Premium if you go on this page

https://cryptomininggame.com/mine/dash

You should fix it.
Youre right thanks ive thought about it, its a minor fix.
From 1000, no more logarithm, its linear and based on the performance index.
For the log function below, I will tomorrow concert the php in a clear/easy understood explaination Wink


I am waiting for the log function, because I would even consider depositing, but only if I get clear mathematical function on which I can predict my mining rate

New >>> BITCOIN mining Game <<< with real PROFIT! 100 Satoshi register bonus!
jamboom (OP)
Member
**
Offline Offline

Activity: 798
Merit: 10


View Profile
January 07, 2018, 09:15:54 PM
 #323

The website is under a huge attack...
Sorry for the convenience.
dagustin
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
January 07, 2018, 10:26:34 PM
 #324

 Wink Wink Wink
hazukita
Newbie
*
Offline Offline

Activity: 89
Merit: 0


View Profile
January 08, 2018, 09:34:55 AM
 #325

Hi jamboom can I deposit 0.01 Litecoin? Or I have to deposit an integer of coin??
jamboom (OP)
Member
**
Offline Offline

Activity: 798
Merit: 10


View Profile
January 08, 2018, 09:51:34 AM
 #326

Hi jamboom can I deposit 0.01 Litecoin? Or I have to deposit an integer of coin??
Hi,
There is no minimum for deposit.
Best regards
hazukita
Newbie
*
Offline Offline

Activity: 89
Merit: 0


View Profile
January 08, 2018, 10:50:51 AM
 #327

Hi jamboom can I deposit 0.01 Litecoin? Or I have to deposit an integer of coin??
Hi,
There is no minimum for deposit.
Best regards

When I type 0.01 Litecoin the site cannot calculate the estimate received HPower. Please fix that. Thank you! Smiley

P/s: Nevermind. It works with 0,01
jamboom (OP)
Member
**
Offline Offline

Activity: 798
Merit: 10


View Profile
January 08, 2018, 11:22:41 AM
 #328

Hi jamboom can I deposit 0.01 Litecoin? Or I have to deposit an integer of coin??
Hi,
There is no minimum for deposit.
Best regards

Hi admin,

What about 100 satoshis-10 Hpower rewards?

Best...
Ive made an edit of the news saying it will be done tonight Wink

By the way, Im working on a FAQ, will be online tonight. For whose cant wait more, I will publish the algorithm onto this forum this afternoon.

We are so close of alexa 100k, its exciting!
jamboom (OP)
Member
**
Offline Offline

Activity: 798
Merit: 10


View Profile
January 08, 2018, 01:04:37 PM
 #329

Hi jamboom can I deposit 0.01 Litecoin? Or I have to deposit an integer of coin??
Hi,
There is no minimum for deposit.
Best regards

Hi admin,

What about 100 satoshis-10 Hpower rewards?

Best...
Ive made an edit of the news saying it will be done tonight Wink

By the way, Im working on a FAQ, will be online tonight. For whose cant wait more, I will publish the algorithm onto this forum this afternoon.

We are so close of alexa 100k, its exciting!

Hi admin,

I seems that Facebook blocked the domain name www.cryptomininggame.com . I can't send my referral link to one of my friends. Sad

Is there anything we can do?

Best...

What do you mean Facebook blocks it?
jamboom (OP)
Member
**
Offline Offline

Activity: 798
Merit: 10


View Profile
January 08, 2018, 02:48:48 PM
 #330

It's strange, I will look at that...

Anyway, for whose asked, here is teh explanation about the algorithm for calculate the mining rate. I'm working on the FAQ, it will be up tonight with a simple explanation, but waiting for that ;

With vars:
$hpower = total hpower of the user,
$hourHRate = The hour mining rate of the currency mined (this correspond to the performance index),
$logBase = float between 1 and 2, correcting from btc/usd and ads network health, current is 1.18

Code:
// Here is the logarithm for HPower until 1000
for ( $i = 1; $i <= $hpower && $i <= 1000; $i++ ){
    $adjust = pow(log($i, 1000), $logBase);
    $hourHRate += $hrate * ( (1-$adjust) / 1 );
}
// If HPPower is superior to 1000, you can see here mining rate is simple HPower * performance index
if ( $hpower > 1000 ){
    $fullHpower = $hpower - 1000;
    $fullHourHRate = $fullHpower * $hrate;
    $hourHRate += $fullHourHRate;
} else { // If below 1000, don't forget the float remains ;)
    $hstay = $hpower - floor($hpower);
    if ( $hstay != 0 ){
        $adjust = pow(log($i, 1000), $logBase);
        $hourHRate += $hrate * ( (1-$adjust) / 1 ) * $hstay;
    }
}
return round($hourHRate, 8);

Hope this is clear for some of you, it will be easier to understand in the FAQ ^^
jamboom (OP)
Member
**
Offline Offline

Activity: 798
Merit: 10


View Profile
January 08, 2018, 05:50:53 PM
 #331

We will soon initiate the internationalization!
I think some of you Will be pleased of that news Wink

At First, website will be available in:
- English  (ok)
- Russian
- French

Any suggestion for the next ones? Im thinking about spanish...

Waiting for your proposals.
shy35522
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
January 09, 2018, 03:54:04 AM
 #332

my wallet withdraw is already 10days please release is as soon as possible Grin
jamboom (OP)
Member
**
Offline Offline

Activity: 798
Merit: 10


View Profile
January 09, 2018, 03:55:41 AM
 #333

my wallet withdraw is already 10days please release is as soon as possible Grin
Hi,
Im working on wallet withdraw Today. Regards
hazukita
Newbie
*
Offline Offline

Activity: 89
Merit: 0


View Profile
January 09, 2018, 09:56:10 AM
 #334

Today I use energy boost like other days. It says I gain 10 energy. Then I go to mission page but hey, My energy didn't increase. My satoshi is decreased. Is it just me or anyone expect the same?  Sad
jamboom (OP)
Member
**
Offline Offline

Activity: 798
Merit: 10


View Profile
January 09, 2018, 02:24:57 PM
 #335

Hi admin,

In the news you said you would distribute the "review rewards" on January 8th. Did you do that and I missed it? I didn't see any notification or something.

Best...
Yes it has been done for you yesterday i remember.
Regards
black_wulf
Full Member
***
Offline Offline

Activity: 147
Merit: 100


View Profile
January 09, 2018, 07:50:50 PM
 #336

Hi,
 
After becoming Premium H-power from missions is replaced by Referrals, Does it mean i cannot get any new H-Power without buying?
protactinium91
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
January 10, 2018, 06:27:35 AM
 #337

Hi,
 
After becoming Premium H-power from missions is replaced by Referrals, Does it mean i cannot get any new H-Power without buying?

Exactly.....

well you can get from time to time little HPower from the Daily Bonus. But besides that you have to buy HPower.  I don´t know how the referrals work for you but the referrals i have aren´t mining any sh**.
I have  3 referalls for over a week and earned 0.3 doge and 40000 litoshi. So i am not sure if this ref-thing is working properly. I asked Admin but did not get any response to my question....
I have earned 1 referral from premium and he did not earn anything. I thing there is a lot of users not doing anything and we get them randomly as refferal. See the stars page - how many people rwgistred and how many is playing


New >>> BITCOIN mining Game <<< with real PROFIT! 100 Satoshi register bonus!
shy35522
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
January 10, 2018, 09:22:10 AM
 #338

still pending wallet withdraw
black_wulf
Full Member
***
Offline Offline

Activity: 147
Merit: 100


View Profile
January 10, 2018, 12:14:18 PM
 #339

The Referral thing sounds good on paper, but it has lots of problem and is extremely luck based.

maybe adding something like the Crystal exploration mission but instand of Crystals you get H-Power.


If some on gets me as his Referral he will get around 0.3 Doge daily with my 1600 H-Power.
protactinium91
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
January 10, 2018, 12:20:27 PM
 #340

Hi,
 
After becoming Premium H-power from missions is replaced by Referrals, Does it mean i cannot get any new H-Power without buying?

Exactly.....

well you can get from time to time little HPower from the Daily Bonus. But besides that you have to buy HPower.  I don´t know how the referrals work for you but the referrals i have aren´t mining any sh**.
I have  3 referalls for over a week and earned 0.3 doge and 40000 litoshi. So i am not sure if this ref-thing is working properly. I asked Admin but did not get any response to my question....
I have earned 1 referral from premium and he did not earn anything. I thing there is a lot of users not doing anything and we get them randomly as refferal. See the stars page - how many people rwgistred and how many is playing



Hi protactinium91,

Could you give an estimated probability of finding a referral after 1000 HP? So I can predict whether there will be any referral left for me Cheesy...

Best...


It is 0,25% chance per mission level. So maximum is 12*0,25 = 3% Yesterday I have got another one so in 5 days I have got 2 of them. Both earned nothing Cheesy I am sitting on over 2300 crystals - would be great to use them for something.

New >>> BITCOIN mining Game <<< with real PROFIT! 100 Satoshi register bonus!
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 [17] 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 ... 181 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!