Bitcoin Forum

Alternate cryptocurrencies => Announcements (Altcoins) => Topic started by: TrickyDick on April 28, 2015, 06:43:37 AM



Title: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: TrickyDick on April 28, 2015, 06:43:37 AM

We are not crooks! NO PREMINE! NO ICO!

The best worthless currency since the dollar went off the gold standard.

With TDFB you too can get in on the ground floor of a currency that has no value!  Like fiat currencies that are not on a standard they are backed by nothing but hype, speculation, hoarding, and people willing to use, value and trade them.

Algo: SHA-256d


POW Blocks:
      0-   100:    0 coins
   101-    700: 300 coins
   701-  1100: 250 coins
 1101-  1700: 200 coins
 1701-  2400: 150 coins
 2401-  3100: 100 coins
 3101-  3900:  50 coins
 3901-  4400: 100 coins
 4401-  4800: 150 coins



Staking starts at block 3500, default PoS percentage is 4%

A multiplier is calculated from the previous block's hash. After block 20,000 your multiplier is multiplied by 10 if and only if it is greater than 1.0. Regardless of whether you stake a hiPOS block or a 4% block, whatever the reward is, it then gets multiplied by your multiplier.

hiPOS blocks:
 3500->  4000:  20 coins
 4000->  4600:  12 coins
 4600->  5000:    4 coins
 5000->  5100: 200 coins
 5100->  5900:  12 coins
 5900->  6500:  20 coins
 6500->  6600:  50 coins
 6600->  7500:  12 coins
 7500->  8200:    4 coins
 8200->  8300: 100 coins
 8300->10000:    4 coins
10000->10050: 100 coins
10050->10100: 300 coins
10100->10150: 100 coins
10150->15000:    8 coins
15000->16000:  50 coins
16000->19500:    4 coins
19500->20000: 100 coins

possible multipliers:
~0.01%chance:  5.5
~0.09%chance:  2.5
~0.90%chance:  0.5
~10.0%chance:  1.4
~10.0%chance:  1.3
~10.0%chance:  1.2
~10.0%chance:  1.1
~10.0%chance:  0.9
~10.0%chance:  0.8
~10.0%chance:  0.7
~10.0%chance:  0.6
~19.0%chance:  1.0


1.1 Wallet: Windows  https://mega.co.nz/#!es0DTY5I!JBiQ-WBpME2tgkLGqwibIzz7v9Gep_Wi4g_-KQuwx1k (https://mega.co.nz/#!es0DTY5I!JBiQ-WBpME2tgkLGqwibIzz7v9Gep_Wi4g_-KQuwx1k)

Source:  https://bitbucket.org/TrickyDickFunBills/tdfb



http://cryptobe.com/chain/TrickyDickFunBills



250 COIN BOUNTY FOR A TDFB FAUCET!!!  WILL INCLUDE 500 COINS TO LOAD FAUCET


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO
Post by: Shadow_Runner on April 28, 2015, 06:43:53 AM
https://i.imgur.com/Hya5T3v.png


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO
Post by: CryptoSiD on April 28, 2015, 06:44:00 AM
preparing pool yo!

EDIT: https://www.suchpool.pw/tdfb 1% up


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO
Post by: qinyasu on April 28, 2015, 06:44:39 AM
pool?


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO
Post by: insanetackle on April 28, 2015, 06:46:41 AM
Man a lot of new coins today


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO
Post by: xinbinbin on April 28, 2015, 06:48:39 AM
lol
pool?


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO
Post by: ocminer on April 28, 2015, 06:49:41 AM

not from me, but i guess suchpool will be ready soon


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO
Post by: NSCrypto on April 28, 2015, 06:53:29 AM
is such borked?? can't connect  ???


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO
Post by: CryptoSiD on April 28, 2015, 06:59:03 AM
is such borked?? can't connect  ???

Had some problem we're up now.. sorry for delay.


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO
Post by: NSCrypto on April 28, 2015, 07:09:36 AM
is such borked?? can't connect  ???

Had some problem we're up now.. sorry for delay.


Ok. Thankyou  :) its work now


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO
Post by: TrickyDick on April 28, 2015, 07:16:28 AM
Good Launch. Hash away!


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO
Post by: NSCrypto on April 28, 2015, 07:22:40 AM
wow, thats some intense staking  :o

maybe place this info in OP (formatted so its easier to read)?

Code:
// PoS starts at block 3500
int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);  // default is 4% per year

if(pindexBest->nHeight < 4000)
{
    nSubsidy = 20 * COIN;
}
else if(pindexBest->nHeight < 4600)
{
    nSubsidy = 12 * COIN;
}
else if(pindexBest->nHeight < 5000)
{
    nSubsidy = 4 * COIN;
}
else if(pindexBest->nHeight < 5100)
{
    nSubsidy = 200 * COIN;
}
else if(pindexBest->nHeight < 5900)
{
    nSubsidy = 12 * COIN;
}
else if(pindexBest->nHeight < 6500)
{
    nSubsidy = 20 * COIN;
}
else if(pindexBest->nHeight < 6600)
{
    nSubsidy = 50 * COIN;
}
else if(pindexBest->nHeight < 7500)
{
    nSubsidy = 12 * COIN;
}
else if(pindexBest->nHeight < 8200)
{
    nSubsidy = 4 * COIN;
}
else if(pindexBest->nHeight < 8300)
{
    nSubsidy = 100 * COIN;
}
else if(pindexBest->nHeight < 10000)
{
    nSubsidy = 4 * COIN;
}
else if(pindexBest->nHeight < 10050)
{
    nSubsidy = 100 * COIN;
}
else if(pindexBest->nHeight < 10100)
{
    nSubsidy = 300 * COIN;
}
else if(pindexBest->nHeight < 10150)
{
    nSubsidy = 100 * COIN;
}
else if(pindexBest->nHeight < 15000)
{
    nSubsidy = 8 * COIN;
}
else if(pindexBest->nHeight < 16000)
{
    nSubsidy = 50 * COIN;
}
else if(pindexBest->nHeight < 19500)
{
    nSubsidy = 4 * COIN;
}
else if(pindexBest->nHeight < 20000)
{
    nSubsidy = 100 * COIN;
}


int64_t multiplier = 100; // is really 1.00 as nSubsidy shall be div 100 later
int64_t nMultVal = 0;

for (int i = 1; i < 8; i += 2)
{
    nMultVal += pindexBest->pprev->GetBlockHash().getinnerint(i) >> 2;
}

if (nMultVal % 10000 == 0)
{
    multiplier = 550; // 5.5
}
else if (nMultVal % 1000 == 0)
{
    multiplier = 250; // 2.5
}
else if (nMultVal % 100 == 0)
{
    multiplier = 50; // 0.5
}
else
{
    int n = nMultVal % 10;
    if (n < 5)
    {
        multiplier += n * 10; // either 1.0, 1.1, 1.2, 1.3, or 1.4
    }
    else if (n > 5)
    {
        multiplier = n * 10; // either 0.9, 0.8, 0.7, or 0.6
    }
}

if (pindexBest->nHeight > 20000 && multiplier > 100)
{
    multiplier *= 10;
}


nSubsidy = (nSubsidy * multiplier) / 100;

return nSubsidy + nFees;


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO
Post by: TrickyDick on April 28, 2015, 07:36:28 AM
wow, thats some intense staking  :o

maybe place this info in OP (formatted so its easier to read)?

Code:
// PoS starts at block 3500
int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);  // default is 4% per year

if(pindexBest->nHeight < 4000)
{
    nSubsidy = 20 * COIN;
}
else if(pindexBest->nHeight < 4600)
{
    nSubsidy = 12 * COIN;
}
else if(pindexBest->nHeight < 5000)
{
    nSubsidy = 4 * COIN;
}
else if(pindexBest->nHeight < 5100)
{
    nSubsidy = 200 * COIN;
}
else if(pindexBest->nHeight < 5900)
{
    nSubsidy = 12 * COIN;
}
else if(pindexBest->nHeight < 6500)
{
    nSubsidy = 20 * COIN;
}
else if(pindexBest->nHeight < 6600)
{
    nSubsidy = 50 * COIN;
}
else if(pindexBest->nHeight < 7500)
{
    nSubsidy = 12 * COIN;
}
else if(pindexBest->nHeight < 8200)
{
    nSubsidy = 4 * COIN;
}
else if(pindexBest->nHeight < 8300)
{
    nSubsidy = 100 * COIN;
}
else if(pindexBest->nHeight < 10000)
{
    nSubsidy = 4 * COIN;
}
else if(pindexBest->nHeight < 10050)
{
    nSubsidy = 100 * COIN;
}
else if(pindexBest->nHeight < 10100)
{
    nSubsidy = 300 * COIN;
}
else if(pindexBest->nHeight < 10150)
{
    nSubsidy = 100 * COIN;
}
else if(pindexBest->nHeight < 15000)
{
    nSubsidy = 8 * COIN;
}
else if(pindexBest->nHeight < 16000)
{
    nSubsidy = 50 * COIN;
}
else if(pindexBest->nHeight < 19500)
{
    nSubsidy = 4 * COIN;
}
else if(pindexBest->nHeight < 20000)
{
    nSubsidy = 100 * COIN;
}


int64_t multiplier = 100; // is really 1.00 as nSubsidy shall be div 100 later
int64_t nMultVal = 0;

for (int i = 1; i < 8; i += 2)
{
    nMultVal += pindexBest->pprev->GetBlockHash().getinnerint(i) >> 2;
}

if (nMultVal % 10000 == 0)
{
    multiplier = 550; // 5.5
}
else if (nMultVal % 1000 == 0)
{
    multiplier = 250; // 2.5
}
else if (nMultVal % 100 == 0)
{
    multiplier = 50; // 0.5
}
else
{
    int n = nMultVal % 10;
    if (n < 5)
    {
        multiplier += n * 10; // either 1.0, 1.1, 1.2, 1.3, or 1.4
    }
    else if (n > 5)
    {
        multiplier = n * 10; // either 0.9, 0.8, 0.7, or 0.6
    }
}

if (pindexBest->nHeight > 20000 && multiplier > 100)
{
    multiplier *= 10;
}


nSubsidy = (nSubsidy * multiplier) / 100;

return nSubsidy + nFees;

Putting on page now. Thank you for your sharp eye.


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: xinbinbin on April 28, 2015, 07:45:46 AM
The sale of some coins, to PM


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: dukester99 on April 28, 2015, 08:12:43 AM
What is the total float? Need more info


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: xinbinbin on April 28, 2015, 10:24:35 AM
We need to develop a detailed plan!


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: TrickyDick on April 28, 2015, 10:43:01 AM
Updated the ANN with staking info.


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: SockPuppetAccount on April 28, 2015, 10:47:55 AM
Windows wallet broken.  Runtime error and crash.


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: m4xp0w3r7 on April 28, 2015, 01:07:50 PM
Windows wallet broken.  Runtime error and crash.

my working fine on Windows 7 x64


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: SockPuppetAccount on April 28, 2015, 01:14:45 PM
Windows wallet broken.  Runtime error and crash.

my working fine on Windows 7 x64

https://i.imgur.com/0YLBfn3.jpg

Shadow_Runner posted on this issue too, and I'm also on Win7 x64.


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: m4xp0w3r7 on April 28, 2015, 04:03:58 PM
My is still working, 15 transactions, no problem.

Maybe something with Visual C++? I have many versions and updates.

https://i.imgur.com/L0VwVtM.png


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: ramtony on April 28, 2015, 04:21:38 PM


When will this hit Bittrex...... can't wait for this to skyrocket


https://i.imgur.com/bKfNNvB.jpg?1


https://i.imgur.com/Bw9XIhQ.jpg?1


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: ihascryptos on April 28, 2015, 04:56:47 PM
Windows wallet broken.  Runtime error and crash.
update windows.  mine works fine. running Win 10


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: TrickyDick on April 28, 2015, 05:29:59 PM
Good afternoon. We have procured a few horned rim glasses wearing squares to build a block explorer.  Take that you hippies!


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: xinbinbin on April 28, 2015, 06:00:30 PM
We need more miners!


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: TrickyDick on April 28, 2015, 06:10:43 PM
We need more miners!
Yes we do. Unlike other coins Tricky Dick is active and secretly recording all your convos.


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: ramtony on April 28, 2015, 06:26:32 PM
Good afternoon. We have procured a few horned rim glasses wearing squares to build a block explorer.  Take that you hippies!

Woop woop..... loving this


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: TrickyDick on April 28, 2015, 08:02:56 PM
Its getting time to find an exchange.  Start asking around.


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: NSCrypto on April 28, 2015, 10:21:26 PM
Its getting time to find an exchange.  Start asking around.

I agree. Make it easier for those who cannot mine to acquire some coins to stake. There are ~250,000 coins available in the hiPOS blocks.

I hope I hit a 300 block AND get a multiplier of 5.5  :D


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: TrickyDick on April 29, 2015, 05:10:24 AM
With Tricky Dick Fun Bills it pays to keep them in the bank


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: TrickyDick on April 29, 2015, 06:39:31 AM
Any change is resisted because bureaucrats have a vested interest in the chaos in which they exist.
Richard M. Nixon


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: NSCrypto on April 29, 2015, 07:14:22 AM
Is there a block explorer?


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: TrickyDick on April 29, 2015, 07:50:52 AM
Is there a block explorer?

The block explorer guy has a queue.  We are in line.


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: TrickyDick on April 29, 2015, 08:03:31 AM
Let us move from the era of confrontation to the era of negotiation.
-Richard M. Nixon.

Looking for an exchange.


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: utclover on April 29, 2015, 08:21:56 AM
this is a fu**ing scam


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: BitcoinINV on April 29, 2015, 08:25:26 AM
wellll its a scam, as i saw the comments, so i wont harm my pc downloading malwares


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: TrickyDick on April 29, 2015, 08:55:29 AM
wellll its a scam, as i saw the comments, so i wont harm my pc downloading malwares

Says the person with negative trust.  I really dont care what you think about the coin. I said in the opening that this coin is not on a standard or backed by anything. Mine the coin or don't.  If people like it they will mine it. There is no malware in the wallet.


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: Paycoinzzz on April 29, 2015, 09:13:24 AM
this is a fu**ing scam


wellll its a scam, as i saw the comments, so i wont harm my pc downloading malwares

Thanks for taking the time to post, dumb and dumber. No scam or malware here. Just very weak FUD as usual.


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: antzz on April 29, 2015, 09:21:56 AM
Can u , dev , provide a road map...
Expl : when will be @ exchange ? Tq


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: ramtony on April 29, 2015, 09:22:38 AM
this is the most honest coin launched in the last 6 month  ::)


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: Neosaan on April 29, 2015, 04:52:18 PM
exchange of coins planned?


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: MickGhee on April 29, 2015, 05:29:16 PM
Can u , dev , provide a road map...
Expl : when will be @ exchange ? Tq

as stated before
https://i.imgflip.com/ktv3f.jpg (https://imgflip.com/i/ktv3f) (https://imgflip.com/memegenerator)  https://i.imgflip.com/ktwh7.jpg (https://imgflip.com/i/ktwh7) (https://imgflip.com/memegenerator)


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: TrickyDick on April 29, 2015, 07:34:27 PM
Working on Block Explorer. should be up soon

https://www.census.gov/history/www/sights_sounds/photos/1950_photos/electronic_tabulator.jpg


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: TrickyDick on April 29, 2015, 07:43:15 PM
Explorer is up  http://cryptobe.com/chain/TrickyDickFunBills


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO LIVE
Post by: MickGhee on April 29, 2015, 07:52:49 PM
Explorer is up  http://cryptobe.com/chain/TrickyDickFunBills
AWSOME


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO Block Explorer is up!
Post by: TrickyDick on April 29, 2015, 08:19:24 PM
Lets make this logo a little better.  I would like to keep with the dollar shape and style.  Someone want to clean it up a bit i am offering 250TDFB to the best one.


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO Block Explorer is up!
Post by: m4xp0w3r7 on April 29, 2015, 08:59:21 PM
what about rich list?


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO Block Explorer is up!
Post by: trid on April 29, 2015, 09:23:27 PM
what about rich list?

what about exchange?


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO Block Explorer is up!
Post by: TrickyDick on April 29, 2015, 09:27:01 PM
what about rich list?

what about exchange?

What about tweeting exchanges and help get it listed?

Do you want to make a point or do you want to make a change? do you want to get something off your chest, or do you want to get something done?
Richard M. Nixon.


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO Block Explorer is up!
Post by: MickGhee on April 29, 2015, 10:18:04 PM
here u go
https://scontent-ord.xx.fbcdn.net/hphotos-xap1/v/t1.0-9/11193299_10152691743061114_3731452073658465372_n.jpg?oh=e712cb5ec87780ee52dce8806b592b14&oe=55DE0021

klet me know what u think


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO Block Explorer is up!
Post by: TrickyDick on April 29, 2015, 10:44:32 PM

i'm gonna use it. P.M. me your TDFB address.


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO Block Explorer is up!
Post by: MickGhee on April 29, 2015, 11:11:15 PM

thanks recieved


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO Block Explorer is up!
Post by: adaseb on April 29, 2015, 11:24:33 PM
The dev is cool and active and its a nice coin and everything but I really wish you gave it a different name. Even "Reagon Coin" or "Government Coin" would of been better.




Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO Block Explorer is up!
Post by: tampazeus on April 29, 2015, 11:27:58 PM
This has got to be one of the stupidest names I ever heard, but I like Tricky Dick FunBills  so I'll rent some hash and mine some.


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO Block Explorer is up!
Post by: MickGhee on April 29, 2015, 11:46:21 PM
The dev is cool and active and its a nice coin and everything but I really wish you gave it a different name. Even "Reagon Coin" or "Government Coin" would of been better.




u just dont get it lol


Title: Re: ANN NINJA Tricky Dick Fun Bills SHA-256 ALGO Block Explorer is up!
Post by: TrickyDick on April 30, 2015, 12:18:57 AM
To be honest i think i am currently pushing the most honest coin out there right now.
- Do i tell you this is going to be then next new thing?
- Did i say that this coin is worth anything?

Tricky Dick Fun Bills does not make empty promises.  The coin is only worth what you value it at. It is all the community's call.


Politics would be a helluva good business if it weren't for the goddamned people.
Richard M. Nixon


Title: Re: ANN NINJA Tricky Dick Fun Bills. Very active Dev. New Logo. Come have fun!
Post by: Neosaan on April 30, 2015, 01:38:40 AM
exchange of coins planned?


Title: Re: ANN NINJA Tricky Dick Fun Bills. Very active Dev. New Logo. Come have fun!
Post by: MickGhee on April 30, 2015, 01:40:38 AM
http://theinfosphere.org/Earthican_$300_bill (http://theinfosphere.org/Earthican_$300_bill)


Title: Re: ANN Tricky Dick Fun Bills.
Post by: TrickyDick on April 30, 2015, 02:33:17 AM
Looks like staking is going to start soon.  Make sure you have TDFB in your wallet!


Title: Re: ANN Tricky Dick Fun Bills.
Post by: MickGhee on April 30, 2015, 03:37:24 AM
Looks like staking is going to start soon.  Make sure you have TDFB in your wallet!

so it looks like u wrote some new stuff in the pos  this is actually new pos and hipos with multipliers u need to advertise that that is the gimmick!


Title: Re: ANN Tricky Dick Fun Bills.
Post by: TrickyDick on April 30, 2015, 03:45:11 AM
Looks like staking is going to start soon.  Make sure you have TDFB in your wallet!

so it looks like u wrote some new stuff in the pos  this is actually new pos and hipos with multipliers u need to advertise that that is the gimmick!

good idea.  just sent out a tweet https://twitter.com/TDfunbills/status/593621944861200386

just under 450 block before staking starts!


Title: Re: ANN Tricky Dick Fun Bills.
Post by: Kunfu on April 30, 2015, 03:52:57 AM
whats the total supply for this coin


Title: Re: ANN Tricky Dick Fun Bills.
Post by: TrickyDick on April 30, 2015, 04:57:10 AM
Total supply is approx 755k.   with PoS approx 1mil.


Title: Re: ANN Tricky Dick Fun Bills.
Post by: Neosaan on April 30, 2015, 04:59:25 AM
Why no exchange trades coins?


Title: Re: ANN Tricky Dick Fun Bills.
Post by: m4xp0w3r7 on April 30, 2015, 06:31:43 AM
https://pbmo.files.wordpress.com/2012/05/nixon-shock.png


Title: Re: ANN Tricky Dick Fun Bills.
Post by: ramtony on April 30, 2015, 07:54:58 AM
Is it time for a ROADMAP yet

Here is one that can apply to 90% of the coins out there  ;)

https://i.imgur.com/lcCGDJH.png?1


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: Paycoinzzz on April 30, 2015, 09:40:40 AM
Someone needs to launch reading comprehension coin. It's desperately needed.


Title: Re: ANN Tricky Dick Fun Bills.
Post by: TrickyDick on April 30, 2015, 09:52:00 AM
Is it time for a ROADMAP yet

Here is one that can apply to 90% of the coins out there  ;)

https://i.imgur.com/lcCGDJH.png?1

Ya. this would be ok if i want to bullshit you.  Here at TDFB we are not going to bullshit you. We make no promises. No empty bullshit. Community driven backed by nothing but what you make of it. A real crypto.


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: ramtony on April 30, 2015, 09:58:35 AM
exactly, thats why its a refreshing change and Im still mining it  ;D

https://i.imgur.com/3pVaCEo.png?1


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: TrickyDick on April 30, 2015, 10:09:31 AM
exactly, thats why its a refreshing change and Im still mining it  ;D

https://i.imgur.com/3pVaCEo.png?1

Make sure u wallet that coin. staking starts in 50 blocks.


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: m4xp0w3r7 on April 30, 2015, 11:14:26 AM
I got my first stake, nice  8)


Title: Re: ANN Tricky Dick Fun Bills.
Post by: pc888 on April 30, 2015, 11:20:14 AM
Is it time for a ROADMAP yet

Here is one that can apply to 90% of the coins out there  ;)

https://i.imgur.com/lcCGDJH.png?1

Ya. this would be ok if i want to bullshit you.  Here at TDFB we are not going to bullshit you. We make no promises. No empty bullshit. Community driven backed by nothing but what you make of it. A real crypto.

good on you for saying what others are thinking re road map. nice.


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: WigitGetIt on April 30, 2015, 01:24:01 PM
Started Mining. Just a bit ago.


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: MickGhee on April 30, 2015, 01:28:18 PM
Started Mining. Just a bit ago.

welcome to the party


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: MickGhee on April 30, 2015, 02:07:31 PM
I staked 16 coins so p[os is working


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: tyz on April 30, 2015, 02:37:38 PM
I am getting an error running the client. It terminates because of some missing conf-files   ;) Please correct it!


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: MickGhee on April 30, 2015, 03:50:15 PM
I am getting an error running the client. It terminates because of some missing conf-files   ;) Please correct it!

 i have no problems are u on 64 bit windows


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: MickGhee on April 30, 2015, 04:11:59 PM
https://scontent-ord.xx.fbcdn.net/hphotos-xap1/v/t1.0-9/11164776_10152692980731114_666959798243045735_n.jpg?oh=ff3da4ca012bcd1fdce82609ab9fcbab&oe=559AF1C8

okay his should fix the transparency please update

nope why does it keep doing that, i think its the host converting to jpg hold on


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: m4xp0w3r7 on April 30, 2015, 05:04:16 PM
i am received coins, im staking... but it says me i am out of sync.. wtf?


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: Neosaan on April 30, 2015, 05:13:15 PM
someday this coin will be exchanged?


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: m4xp0w3r7 on April 30, 2015, 05:14:46 PM
ok now windows wallet gives me only runtime erorr too


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: m4xp0w3r7 on April 30, 2015, 05:27:15 PM
after restart PC, everything works ok  :D


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: YoBit on April 30, 2015, 06:11:19 PM
Dear Forum Members!

TrickyDickFunBills [TDFB] is listed on YoBit.net Exchange! ( Twitter: https://twitter.com/YobitExchange/status/593839565598760960 )

English: https://yobit.net/en/trade/TDFB/BTC
Chinese: https://yobit.net/cn/trade/TDFB/BTC
Russian: https://yobit.net/ru/trade/TDFB/BTC

TrickyDickFunBills Dice: https://yobit.net/en/dice/TDFB

Our topic on BitcoinTalk: https://bitcointalk.org/index.php?topic=914975.0

https://yobit.net/i/small_logo.png

Logo img: https://yobit.net/i/small_logo.png


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: MickGhee on April 30, 2015, 06:25:19 PM
Dear Forum Members!

TrickyDickFunBills [TDFB] is listed on YoBit.net Exchange! ( Twitter: https://twitter.com/YobitExchange/status/593839565598760960 )

English: https://yobit.net/en/trade/TDFB/BTC
Chinese: https://yobit.net/cn/trade/TDFB/BTC
Russian: https://yobit.net/ru/trade/TDFB/BTC

TrickyDickFunBills Dice: https://yobit.net/en/dice/TDFB

Our topic on BitcoinTalk: https://bitcointalk.org/index.php?topic=914975.0

https://yobit.net/i/small_logo.png

Logo img: https://yobit.net/i/small_logo.png

wow that is great news


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: Kaenguru on April 30, 2015, 06:29:36 PM
Dear Forum Members!

TrickyDickFunBills [TDFB] is listed on YoBit.net Exchange! ( Twitter: https://twitter.com/YobitExchange/status/593839565598760960 )

English: https://yobit.net/en/trade/TDFB/BTC
Chinese: https://yobit.net/cn/trade/TDFB/BTC
Russian: https://yobit.net/ru/trade/TDFB/BTC

TrickyDickFunBills Dice: https://yobit.net/en/dice/TDFB

Our topic on BitcoinTalk: https://bitcointalk.org/index.php?topic=914975.0

https://yobit.net/i/small_logo.png

Logo img: https://yobit.net/i/small_logo.png

wow that is great news


I dont think thats good news, now let the dump begin....


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: Neosaan on April 30, 2015, 06:33:11 PM
and immediately poured tens of idiots for nothing coin


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: TrickyDick on April 30, 2015, 06:34:21 PM
Going to let you in on a little known fact...  THEY ARE ALL NOTHING COINS!  We here at TDFB dont lie to you. Backed by nothing... right on the logo


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: Kaenguru on April 30, 2015, 06:39:09 PM
We here at TDFB dont lie to you. Backed by nothing... right on the logo

how could I forget ;) honest dev ever ;)


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: MickGhee on April 30, 2015, 06:41:24 PM
Going to let you in on a little known fact...  THEY ARE ALL NOTHING COINS!  We here at TDFB dont lie to you. Backed by nothing... right on the logo

right -- these folks think they know about economics when in reality they circle jerk each other waiting to dump on the next idiot in line

this coin is a tribute to the CURRENT MONETARY SYSTEM  established at BRENTONWOODS where the us dollar was officially declared "Backed by NOTHING"  do your homework and go FUD yourself


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: TrickyDick on April 30, 2015, 06:58:55 PM
Tricky Dick thinks MickGhee should run for a political office!


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: MickGhee on April 30, 2015, 07:11:41 PM
SETTING TRANSPARENCIES
https://i.imgur.com/bDfxUdB.png
like a boss
change logo to this it removed the ugly white box
Tricky Dick thinks MickGhee should run for a political office!

they'd kill me before i made a speach


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: MickGhee on April 30, 2015, 07:52:22 PM
moar pikshoors
https://scontent-ord.xx.fbcdn.net/hphotos-xfa1/v/t1.0-9/10632837_10152693319256114_6121960404803152971_n.jpg?oh=5d4deb58bf46b3e02a7d15cef635e8ec&oe=55D60024
https://scontent-ord.xx.fbcdn.net/hphotos-xpf1/v/l/t1.0-9/11027512_10152693319336114_8295711161972342805_n.jpg?oh=053c3723b58e33642077822aa8913c07&oe=55DFD026
https://scontent-ord.xx.fbcdn.net/hphotos-xfa1/v/t1.0-9/11163739_10152693319566114_8705913757162814078_n.jpg?oh=bbcebff237a154168f6d3603433745fb&oe=55D7F217
https://scontent-ord.xx.fbcdn.net/hphotos-xpt1/v/t1.0-9/11202591_10152693319786114_1385155885244478380_n.jpg?oh=42c0c4d84cb8e851d592365d1a00f724&oe=55D488F5


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: MickGhee on April 30, 2015, 07:59:09 PM
nice holding skills u twerps


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: TrickyDick on April 30, 2015, 08:01:53 PM
Can you make 1 more for block explorer?  Also. Thank you for the art. I am sending you more coins :)

Let the weak hands leave. They are scared since we offer blatant honesty.


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: MickGhee on April 30, 2015, 08:18:03 PM
https://scontent-ord.xx.fbcdn.net/hphotos-xfp1/v/t1.0-9/11205011_10152693363516114_7062898346582927964_n.jpg?oh=59614dc16195408c35ad6689083e2a6d&oe=55E30CAD

they will cry when they realize this is rare and they dumped for pennies


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: MickGhee on April 30, 2015, 08:34:57 PM
put this at the top

https://i.imgur.com/snWen6F.png


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: TrickyDick on April 30, 2015, 09:39:47 PM
Thanks again McGhee  Op is looking good!

As for the weak hands i don't worry.

As for other pools. They don't want to touch it because it is not part of the crypto mafia and they have no hands in it.

In conclusion.  No pump and dump plans here.  Honest coin being honestly built by the community. No whales needed.


Title: Re: ANN Tricky Dick Fun Bills. Staking starting soon!!!!
Post by: leroyjankins on April 30, 2015, 09:45:14 PM
In conclusion.  No pump and dump plans here.  Honest coin being honestly built by the community. No whales needed.

This is exactly why i'm mining... your being honest about your coin... no BS. I like it. thanks.


Title: Re: ANN Tricky Dick Fun Bills. Staking Live! New O.P. art by McGhee Thanks!!!!
Post by: TrickyDick on April 30, 2015, 10:03:15 PM
about 160 blocks to go before the 200 stake blocks start!

Let us begin by committing ourselves to the truth to see it like it is, and tell it like it is, to find the truth, to speak the truth, and to live the truth.
Richard M. Nixon


Title: Re: ANN Tricky Dick Fun Bills. Staking Live! New O.P. art by McGhee Thanks!!!!
Post by: MickGhee on April 30, 2015, 10:04:40 PM
looking good


Title: Re: ANN Tricky Dick Fun Bills. Staking Live! New O.P. art by McGhee Thanks!!!!
Post by: TrickyDick on April 30, 2015, 11:12:24 PM
TDFB fans!!!   I will be doing a giveaway on Twitter tonight!  Watch for the post! @TDfunbills

Coins for giveaway were donated, mined, and bought.  Honest crypto!


Title: Re: ANN Tricky Dick Fun Bills. Staking Live! Twitter Giveaway TONIGHT!
Post by: TrickyDick on April 30, 2015, 11:59:36 PM
PoW is over!   Please withdraw your coins from suchpool so he can free up resources!  Once again thanks to SuchPool for giving us a pool to mine on.

I believe in the battle-whether it's the battle of a campaign or the battle of this office, which is a continuing battle.
Richard M. Nixon


Title: Re: ANN Tricky Dick Fun Bills. PoW over! Staking Live! Twitter Giveaway TONIGHT!
Post by: TrickyDick on May 01, 2015, 01:41:05 AM
I got something good in the pipeline for this coin.  I can't say much right now since i cannot guarantee with 100% certainty that i will be able to do it.  but i am working on two things.

- Fair Distribution.  Trying to give out most of the coins i earned by mining to the largest group of people possible so everyone has at least 1.

- Larger acceptance of the coin.  We don't have to be the best coin out there but we CAN be the most honest.

I also state again.  I AM NOT 100% on this happening. So don't go buying and selling in panic mode. As soon as i know more and get the wheels turning i will report back.  If we can get these wheels in motion it will insure a fair dispersal of coins to the whole crypto community.
This move is going to wipe out most of my coins in wallet.  I am doing this for the community. For the people. For crypto.

If you would like to make a donation to help the project along i could use some more TDFB for this promotion.
TbWb8cGMGtFmWgwWgrqJMFEXdMUrELZfqH  <--- TDFB donations.

If i cannot make what i want to happen actually happen i will gladly return all the TDFB donated.

I will let you all know as soon as i know if i can get this going.


Title: Re: ANN Tricky Dick Fun Bills. Bounty for Faucet!
Post by: TrickyDick on May 01, 2015, 02:39:30 AM
A quick message from the Dev



Title: Re: ANN Tricky Dick Fun Bills. Bounty for Faucet!
Post by: Penetrator10 on May 01, 2015, 06:18:39 AM
Hi whats the min stake age ?


Title: Re: ANN Tricky Dick Fun Bills. Bounty for Faucet!
Post by: ramtony on May 01, 2015, 07:16:20 AM
out of sync today, tried removing everything and starting again but didn't fix it, anyone having same problem?


Title: Re: ANN Tricky Dick Fun Bills. Bounty for Faucet!
Post by: TrickyDick on May 01, 2015, 07:25:40 AM
out of sync today, tried removing everything and starting again but didn't fix it, anyone having same problem?

Everything should be working fine.  load your wallet and wait 5 or 10 minutes.


Title: Re: ANN Tricky Dick Fun Bills. Bounty for Faucet!
Post by: ramtony on May 01, 2015, 07:35:57 AM
out of sync today, tried removing everything and starting again but didn't fix it, anyone having same problem?

Everything should be working fine.  load your wallet and wait 5 or 10 minutes.

Its working now but have got loads of confilicts on mined coins (about 20K worth I think)

https://i.imgur.com/7r7ihxy.png



Title: Re: ANN Tricky Dick Fun Bills. Bounty for Faucet!
Post by: TrickyDick on May 01, 2015, 08:06:38 AM
As far as i know you are the only one with this problem.  I will talk to the coder when he wakes up and see what is up.


Title: Re: ANN Tricky Dick Fun Bills. Bounty for Faucet!
Post by: ramtony on May 01, 2015, 08:27:07 AM
As far as i know you are the only one with this problem.  I will talk to the coder when he wakes up and see what is up.

just my luck :)

On a seperate note, I was going to run a rescan command from the console and got a runtime error, so tried it on a new wallet and just typed help, see image. hope this helps, not trying to be awkward

https://i.imgur.com/ewCXhb9.png


Title: Re: ANN Tricky Dick Fun Bills. Bounty for Faucet!
Post by: TrickyDick on May 01, 2015, 08:45:56 AM
Make a backup of your wallet.dat

try to do -salvagewallet and rescan


if that does not work

get new wallet and delete trickydickfunbills from the roaming folder.

run new wallet and sync

try adding you wallet.dat  -salvagewallet and rescan


plz back up wallet.dat in a safe place so u don't lose it.


Title: Re: ANN Tricky Dick Fun Bills. Bounty for Faucet!
Post by: ramtony on May 01, 2015, 08:49:10 AM
Make a backup of your wallet.dat

try to do -salvagewallet and rescan


if that does not work

get new wallet and delete trickydickfunbills from the roaming folder.

run new wallet and sync

try adding you wallet.dat  -salvagewallet and rescan


plz back up wallet.dat in a safe place so u don't lose it.

Thanks for the reply but this error was gernrated on a different PC with a new wallet that had just synced


Title: Re: ANN Tricky Dick Fun Bills. Bounty for Faucet!
Post by: TrickyDick on May 01, 2015, 08:52:10 AM
Make a backup of your wallet.dat

try to do -salvagewallet and rescan


if that does not work

get new wallet and delete trickydickfunbills from the roaming folder.

run new wallet and sync

try adding you wallet.dat  -salvagewallet and rescan


plz back up wallet.dat in a safe place so u don't lose it.

Thanks for the reply but this error was gernrated on a different PC with a new wallet that had just synced

No worries. I will contact the coder as soon as possible and get you taken care of.  hang in there.


Title: Re: ANN Tricky Dick Fun Bills. Bounty for Faucet!
Post by: ramtony on May 01, 2015, 08:56:48 AM
Make a backup of your wallet.dat

try to do -salvagewallet and rescan


if that does not work

get new wallet and delete trickydickfunbills from the roaming folder.

run new wallet and sync

try adding you wallet.dat  -salvagewallet and rescan


plz back up wallet.dat in a safe place so u don't lose it.

Thanks for the reply but this error was gernrated on a different PC with a new wallet that had just synced

No worries. I will contact the coder as soon as possible and get you taken care of.  hang in there.

no worries, cheers


Title: Re: ANN Tricky Dick Fun Bills. Bounty for Faucet!
Post by: m4xp0w3r7 on May 01, 2015, 11:54:01 AM
try restart PC, it helps me  ;)


Title: Re: ANN Tricky Dick Fun Bills. Bounty for Faucet!
Post by: ramtony on May 01, 2015, 02:18:56 PM
200 confirmations for mined coins is quite a lot?


Title: Re: ANN Tricky Dick Fun Bills. Bounty for Faucet!
Post by: TrickyDick on May 01, 2015, 05:43:51 PM
how many coins? wheres the block explorer? come on...

How about you read the thread?  all the stuff you are whining about is there.


Title: Re: Tricky Dick Fun Bills. NOT a one week coin. Here for long run! Backed by nothing
Post by: TrickyDick on May 01, 2015, 10:04:48 PM
To anyone having wallet issues..  Just hang in there. We are working on a fix.


Title: Re: Tricky Dick Fun Bills. NOT a one week coin. Here for long run! Backed by nothing
Post by: TrickyDick on May 02, 2015, 12:44:35 AM
Pushing out a new wallet in a couple hours. should fix the issue.


Title: Re: ANN Tricky Dick Fun Bills. Mandatory Windows wallet update
Post by: TrickyDick on May 02, 2015, 08:21:37 AM
Wallet update out.  Should fix wallet issues.  BACKUP YOUR WALLET.dat

Instructions.
1. backup wallet.dat in a safe place.  <-- most important. you should ALWAYS have a backup of this.

2. delete the old wallet folders.  

3. delete trickydickfunbills out of appdata/roaming/

4. download, extract, run new wallet and let it sync up.

5. close wallet.

6. go to appdata/roaming/trickydickfunbills and copy your old wallet.dat back into folder replacing the one that was just made for the fresh wallet.

7. run wallet and you are good.


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: leroyjankins on May 02, 2015, 08:48:06 AM
Wallet update out.  Should fix wallet issues.  BACKUP YOUR WALLET.dat

Instructions.
1. backup wallet.dat in a safe place.  <-- most important. you should ALWAYS have a backup of this.

2. delete the old wallet folders. 

3. delete trickydickfunbills out of appdata/roaming/

4. download, extract, run new wallet and let it sync up.

5. close wallet.

6. go to appdata/roaming/trickydickfunbills and copy your old wallet.dat back into folder replacing the one that was just made for the fresh wallet.

7. run wallet and you are good.

Works perfectly. 1 thing though, if you had coins staking you will probably have to run -rescan when you restart the wallet as i did. thanks.


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: xinbinbin on May 02, 2015, 08:56:05 AM
The wallet out of sync?


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: leroyjankins on May 02, 2015, 08:58:07 AM
The wallet out of sync?

there is a mandatory update that came out 40min ago

Wallet update out.  Should fix wallet issues.  BACKUP YOUR WALLET.dat

Instructions.
1. backup wallet.dat in a safe place.  <-- most important. you should ALWAYS have a backup of this.

2. delete the old wallet folders. 

3. delete trickydickfunbills out of appdata/roaming/

4. download, extract, run new wallet and let it sync up.

5. close wallet.

6. go to appdata/roaming/trickydickfunbills and copy your old wallet.dat back into folder replacing the one that was just made for the fresh wallet.

7. run wallet and you are good.


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: TrickyDick on May 02, 2015, 08:58:16 AM
The wallet out of sync?

If you updated to wallet 1.1 just close the wallet and open again.  It should sync up fine.

It has been tested on win7 win8.1 and win10 tech preview.


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: xPooky on May 02, 2015, 09:01:22 AM
this is mandatory update only for win users?


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: TrickyDick on May 02, 2015, 09:06:08 AM
this is mandatory update only for win users?

Yes for Windows wallet only. We only have Windows wallets. No change to source.


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: xPooky on May 02, 2015, 09:10:51 AM
this is mandatory update only for win users?

Yes for Windows wallet only. We only have Windows wallets. No change to source.
great, thanks


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: leroyjankins on May 02, 2015, 09:52:55 AM
New wallet is working and staking nicely.  thanks TD


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: TrickyDick on May 02, 2015, 11:09:38 PM
I will set up a tipbot on IRC tonight and we will throw a little stimulus money around.


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: leroyjankins on May 02, 2015, 11:15:42 PM
I will set up a tipbot on IRC tonight and we will throw a little stimulus money around.

Hell yeah.. Now I need to remeber my regged id and password for freenode... hmmm

Whats your channel on freenode, didnt see it in the op


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: TrickyDick on May 03, 2015, 02:46:54 AM
I like this coin, will you make any updates at the OP dev?

I'm around most of the time.  We have recently updated the wallets and fixed all issues.  If there is something you need just ask.


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: m4xp0w3r7 on May 03, 2015, 06:23:42 AM
maybe you can add exchange to OP  ;)


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: trid on May 03, 2015, 07:09:38 AM
maybe you can add exchange to OP  ;)

somewhere trades already?


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: m4xp0w3r7 on May 03, 2015, 07:41:47 AM
here https://yobit.net/en/trade/TDFB/BTC


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: trid on May 03, 2015, 07:52:43 AM
here https://yobit.net/en/trade/TDFB/BTC

thanx

no volume  :(


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: ramtony on May 03, 2015, 10:59:50 AM
My wallet is back in business now, thanks dev


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: m4xp0w3r7 on May 03, 2015, 11:33:55 AM
staking stop working for me... everything is rejected


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: ramtony on May 03, 2015, 12:00:19 PM
staking stop working for me... everything is rejected

Are you using the latest wallet


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: jadaking on May 03, 2015, 12:27:12 PM
shitcoin forever!!!


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: m4xp0w3r7 on May 03, 2015, 01:19:29 PM
staking stop working for me... everything is rejected

Are you using the latest wallet

it is ok now, but 4 hours of staking is rejected


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: leroyjankins on May 03, 2015, 01:25:42 PM
staking stop working for me... everything is rejected

Are you using the latest wallet

it is ok now, but 4 hours of staking is rejected

I had the same issue on the old wallet, it was almost like it started working on it's own fork. the new wallet has been working flawlessly and generating very few orphans.


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: trid on May 03, 2015, 01:48:36 PM
staking stop working for me... everything is rejected

Are you using the latest wallet

it is ok now, but 4 hours of staking is rejected

I had the same issue on the old wallet, it was almost like it started working on it's own fork. the new wallet has been working flawlessly and generating very few orphans.

op link contain new wallet?


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: leroyjankins on May 03, 2015, 02:04:38 PM
staking stop working for me... everything is rejected

Are you using the latest wallet

it is ok now, but 4 hours of staking is rejected

I had the same issue on the old wallet, it was almost like it started working on it's own fork. the new wallet has been working flawlessly and generating very few orphans.

op link contain new wallet?

contains wallet 1.1 but now my wallet, ver 1.1 is out of sync... so not sure what the deal is


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: Kaenguru on May 03, 2015, 02:11:58 PM

v1.0.9.1-g32a928ebeta is this the last wallet?


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: trid on May 03, 2015, 02:17:42 PM
staking stop working for me... everything is rejected

Are you using the latest wallet

it is ok now, but 4 hours of staking is rejected

I had the same issue on the old wallet, it was almost like it started working on it's own fork. the new wallet has been working flawlessly and generating very few orphans.

op link contain new wallet?

contains wallet 1.1 but now my wallet, ver 1.1 is out of sync... so not sure what the deal is

my wallet out of sync too


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: leroyjankins on May 03, 2015, 02:31:22 PM
mine says its synced up again. i just closed it out. too many staking wallets on that machine lol it might be causing my issues.


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: ihascryptos on May 04, 2015, 12:47:46 AM
I am having wallet issues.  May be forked.   Tried to send money to the tipbot earlier and nothing....  hmmm...  but who knows. it may be my wallet


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: Kaenguru on May 04, 2015, 05:03:58 AM

My Wallet stakes without issues

https://i.imgur.com/krj5Fy6.jpg


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: m4xp0w3r7 on May 04, 2015, 05:47:38 AM
i am out of sync again, and i have 5 connection  :(


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: m4xp0w3r7 on May 04, 2015, 07:21:47 AM
ok a redownload  blockchain and i sync again, but whole day of staking is rejected.... what i have confirmed before

seem there is two blockchains !


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: xPooky on May 04, 2015, 09:03:59 AM
coin keeps forking, code needs to be fixed


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: Kaenguru on May 04, 2015, 12:08:24 PM
and now my wallet is stuck ...359 block(s) remaining  ???

Close Wallet
Save wallet.dat
delete all in Roaming\TDFB folder
Start wallet
Wait for sync
Close again
Replace wallet.dat
Open Wallet again.


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: m4xp0w3r7 on May 04, 2015, 04:47:53 PM
i think some node use old wallet


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: TrickyDick on May 06, 2015, 04:13:28 AM
I have done what i can. I cannot get this working properly.  If a member of the community can get it straightened out please let us know. As for now i am calling this coin dead.

-This will be my last press conference. You won't have Tricky Dick to kick around anymore.


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: m4xp0w3r7 on May 06, 2015, 05:28:47 AM
I have done what i can. I cannot get this working properly.  If a member of the community can get it straightened out please let us know. As for now i am calling this coin dead.

-This will be my last press conference. You won't have Tricky Dick to kick around anymore.

wtf? what a honest dev  ;D

for me everythings working fine 3 days, after redownload blockchain


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: Kaenguru on May 06, 2015, 05:37:56 AM

wtf? what a honest dev  ;D

for me everythings working fine 3 days, after redownload blockchain

Me the same

https://i.imgur.com/aDoeFMQ.jpg


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: antzz on May 06, 2015, 06:23:11 AM
its just work for windows 64 maybe...


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: ramtony on May 06, 2015, 07:49:30 AM
I have done what i can. I cannot get this working properly.  If a member of the community can get it straightened out please let us know. As for now i am calling this coin dead.

-This will be my last press conference. You won't have Tricky Dick to kick around anymore.

It was fun while it lasted, maybe someone will offer to take it over.....

Regards


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: joseuribez on May 06, 2015, 01:10:33 PM
after reboot and re-sync blockchain, works for me too. Lets keep it going dev.


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: TentacleMan on May 08, 2015, 02:59:12 PM
Confirmed working coin, managed to stake 7.20 TDFB earlier today after wallet backup and resyncing the blockchain anew. Let's keep the fun going :D
EDIT: I should perhaps say that I'm using the Linux version compiled from source.


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: TentacleMan on May 10, 2015, 07:35:28 AM
Fun fact: In the 1970's, Norwegian-Swedish artist Kjartan Slettemark morphed together a picture of his own hair and beard with the face of Nixon and used it in his passport. He had no problem traveling around the world with it :)

https://secure.flickr.com/photos/43686206@N00/426134446/in/set-72157600008019734/


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: m4xp0w3r7 on May 13, 2015, 08:39:11 AM
come back dev, all workings fine  ;D


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: TentacleMan on May 14, 2015, 07:36:26 AM
Can only find one node online now.
Insert this in your conf if you have problems with syncing.
Code:
addnode=109.121.254.24


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: ramtony on May 14, 2015, 01:19:32 PM
come back dev, all workings fine  ;D

haha, I was just thinking the same, always time for more fun.....


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: TentacleMan on June 05, 2015, 12:06:04 PM
Anybody still running this? Had to delete the blockchain because of syncing problems (still have the wallet.dat though) and now I can't find any running nodes.


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: Manipulator on June 05, 2015, 01:40:54 PM
Anybody still running this? Had to delete the blockchain because of syncing problems (still have the wallet.dat though) and now I can't find any running nodes.

Dev dropped off. some say they have it working and most likely it has passed on to the crypto repository in the sky.


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: TentacleMan on June 06, 2015, 03:13:18 PM
I had contact with one node when syncing halted. I should perhaps made a note of the ip but I didn't. Ah well, I'll zip up the wallet and save it for future crypto-archaeologists :)


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: tampazeus on June 15, 2015, 02:21:18 PM
Game over, DEV IS GONE! Investment loss, TOTAL.

Better luck next time.


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: elnuna on August 20, 2016, 04:58:24 PM
where faucet?


Title: Re: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1
Post by: tb78dub on October 01, 2017, 10:06:00 PM
What is the TOTAL amount of coins?