Bitcoin Forum
May 06, 2024, 12:47:56 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 [3]
41  Economy / Speculation / Bitcoin Price on: March 03, 2015, 08:48:44 PM
i predicted a rise this week.

from 235$ and now up to 285.57$ as this is posted.

buy VERY slow guys. even by 0.000001 btc per 15minutes.

it will keep it rising up to 400$ +

Then will stabilised on the 400$

Keep it going.

Thats an increment of 50$ in 4days.

by Tuesday NEXT week. it will reach 450$ MINIMUM!!


Dont say didnt tell..

2 weeks from here, start selling and make profits. it will get down again if not able to keep stable

42  Economy / Services / Video Upload Script on: March 03, 2015, 10:20:47 AM
anyone can hand me a video uploading script?

something like youtube uploading thing.

i need to have a video upload script for my website. it will be a full video uploading website for various categories.

categories will be specific and not general uploads

thanks

p.s if selling, kindly let me know the price, if affordable for me, ill buy it
43  Economy / Digital goods / Video Upload Script on: March 03, 2015, 09:34:59 AM
anyone can hand me a video uploading script?

something like youtube uploading thing.

i need to have a video upload script for my website. it will be a full video uploading website for various categories.

categories will be specific and not general uploads

thanks

p.s if selling, kindly let me know the price, if affordable for me, ill buy it

44  Economy / Digital goods / Selling Bitcoin Games on: March 03, 2015, 05:18:59 AM
 $content.='<table id="bets_st_table">';
      $content.='<tr>';
      $content.='<th>BET ID</th>';
      $content.='<th>PLAYER</th>';
      $content.='<th>TIME</th>';
      $content.='<th>BET</th>';
      $content.='<th>MULTIPLIER</th>';
      $content.='<th>TARGET</th>';
      $content.='<th>ROLL</th>';
      $content.='<th>PROFIT</th>';
      $content.='</tr>';
      $suda=0;
      while ($my_bet=mysql_fetch_array($my_bets)) {
        $content.=($suda==0)?'<tr>':'<tr class="suda">';
       
        $username=mysql_fetch_array(mysql_query("SELECT `alias` FROM `players` WHERE `id`=$my_bet[player] LIMIT 1"));
       
        $chance['under']=floor((1/($my_bet['multiplier']/100)*((100-$settings['house_edge'])/100))*100)/100;
        $chance['over']=100-$chance['under'];

        $target=($my_bet['under_over']==0)?'<'.sprintf("%.2f",$chance['under']):'>'.sprintf("%.2f",$chance['over']);
        $profit=-$my_bet['bet_amount'];
        $profit_class='lose';
        $plusko=($my_bet['bet_amount']==0)?'-':'';
        if ($my_bet['win_lose']==1) {
          $profit+=$my_bet['bet_amount']*$my_bet['multiplier'];
          $profit_class='win';
          $plusko='+';
        }

        $content.='<td class="betId first">'.$my_bet['id'].'</td>';
        $content.='<td>'.$username['alias'].'</td>';
        $content.='<td>'.date('H:i:s',strtotime($my_bet['time'])).'</td>';
        $content.='<td>'.sprintf("%.8f",$my_bet['bet_amount']).'</td>';
        $content.='<td>'.sprintf("%.2f",$my_bet['multiplier']).'</td>';
        $content.='<td>'.$target.'</td>';
        $content.='<td>'.sprintf("%.2f",$my_bet['result']).'</td>';
        $content.='<td class="'.$profit_class.' right last">'.$plusko.sprintf("%.8f",floor($profit*100000000)/100000000).'</td>';
        $content.='</tr>';
        $suda=($suda==0)?1:0;
      }
      $content.='</table>';
    }
  break;
  case 'all_bets':
    $all_bets=mysql_query("SELECT * FROM `bets` WHERE `bet_amount`!=0 ORDER BY `time` DESC LIMIT 30");
    if (mysql_num_rows($all_bets)==0) $content.='<br><br><br><i>No one has bet yet.</i>';
    else {



this is for a dice game, of course its just a fraction of its content.


---------------------------------------------------------------------------------------------


$content.='<th>Bet</th>';
    $content.='<th>Result</th>';
    $content.='<th>Return</th>';
    $content.='<th>Time</th>';
    $content.='</tr>';
    $query=mysql_query("SELECT * FROM `spins` ORDER BY `time` DESC LIMIT 30");
    $sl=false;
    while ($row=mysql_fetch_array($query)) {
      if (mysql_num_rows(mysql_query("SELECT `alias` FROM `players` WHERE `id`=$row[player] LIMIT 1"))!=0) {
        $player_inf_=mysql_fetch_array(mysql_query("SELECT `alias` FROM `players` WHERE `id`=$row[player] LIMIT 1"));
        $row['player']=$player_inf_['alias'];
      }
      else $row['player']='-';     
     
      $class=($sl==true)?' class="odd"':'';
      $content.='<tr'.$class.'>';
      $content.='<td>'.$row['id'].'</td>';
      $content.='<td>'.$row['player'].'</td>';
      $content.='<td><b>'.rtrim(rtrim(sprintf("%0.12f",$row['wager']),'0'),'.').'</b> '.$settings['currency_sign'].'</td>';
      $content.='<td><b>'.rtrim(rtrim(sprintf("%0.12f",$row['multiplier']),'0'),'.').'</b>x</td>';
      $content.='<td><b>'.rtrim(rtrim(sprintf("%0.12f",($row['wager']*$row['multiplier'])),'0'),'.').'</b> '.$settings['currency_sign'].'</td>';
      $content.='<td>'.$row['time'].' CET</td>';
      $content.='</tr>';
      if ($sl==false) $sl=true; else $sl=false;
    }
    $content.='</table>';
  break;
  case 'leaderbord':
    $content.='<table id="stats-table">';
    $content.='<tr>';
    $content.='<th>ID</th>';
    $content.='<th>Alias</th>';
    $content.='<th>Bet</th>';
    $content.='<th>Result</th>';
    $content.='<th>Return</th>';
    $content.='<th>Time</th>';
    $content.='</tr>';
    $query=mysql_query("SELECT *,(`wager`*`multiplier`) AS `return` FROM `spins` ORDER BY `return` DESC LIMIT 30");
    $sl=false;
    while ($row=mysql_fetch_array($query)) {
      if (mysql_num_rows(mysql_query("SELECT `alias` FROM `players` WHERE `id`=$row[player] LIMIT 1"))!=0) {
        $player_inf_=mysql_fetch_array(mysql_query("SELECT `alias` FROM `players` WHERE `id`=$row[player] LIMIT 1"));
        $row['player']=$player_inf_['alias'];
      }
      else $row['player']='-';     
     
      $class=($sl==true)?' class="odd"':'';
      $content.='<tr'.$class.'>';
      $content.='<td>'.$row['id'].'</td>';
      $content.='<td>'.$row['player'].'</td>';
      $content.='<td><b>'.$row['wager'].'</b> '.$settings['currency_sign'].'</td>';
      $content.='<td><b>'.$row['multiplier'].'</b>x</td>';
      $content.='<td><b>'.rtrim(rtrim(sprintf("%0.12f",($row['wager']*$row['multiplier'])),'0'),'.').'</b> '.$settings['currency_sign'].'</td>';
      $content.='<td>'.$row['time'].' CET</td>';
      $content.='</tr>';
      if ($sl==false) $sl=true; else $sl=false;
    }
    $content.='</table>';

  break;
  case 'news':
    $query=mysql_query("SELECT * FROM `news` ORDER BY `time` DESC");
    while ($row=mysql_fetch_array($query)) {
      $content.='<div class="news_single">';
      $content.=str_replace('','<i>',str_replace('','</i>',str_replace('
','<br>',str_replace('[/B]','</b>',str_replace('','<b>',$row['content']))))).'<br><span class="news_single_time">'.$row['time'].'</span>';
      $content.='</div>';
    }
    $content.=' <br>';
   
  break;
  case 'fair':
    $unique=$_GET['_unique'];
    $player=mysql_num_rows(mysql_query("SELECT `id` FROM `players` WHERE `hash`='".prot($unique)."' LIMIT 1"));
    if ($player!=0) $player=mysql_fetch_array(mysql_query("SELECT `id`,`server_seed`,`client_seed`,`old_server_seed`,`old_client_seed` FROM `players` WHERE `hash`='".prot($unique)."' LIMIT 1"));
    else exit();
    $content.='<div id="fair_nice">';
    $content.='<span class="seed_hash">Server seed hash: <b>'.hash('sha256',$player['server_seed']).'</b></span>';
    $content.='<br><span class="seed_hash">Client seed: <b>'.$player['client_seed'].'</b></span>';
    $content.='<br><a href="#" onclick="javascript:randomize();return false;" class="randomize">Set client seed for next spin</a><br>';
    $content.='<br><span class="seed_hash">Old server seed: <b>'.$player['old_server_seed'].'</b></span>';
    $content.='<br><span class="seed_hash">Old client seed: <b>'.$player['old_client_seed'].'</b></span><br>';
    $content.='<br><span class="seed_hash">Formula: <b>((<i>client_seed</i> * 9) Mod 16) + 1</b> = final order in server seed</span><br><br>';
    $content.='<br><span class="seed_hash"><b>Served seed values:</b></span>';
    $content.='<br><span class="seed_hash">0 = 1.25x</span>';
    $content.='<br><span class="seed_hash">1 = 0.25x</span>';
    $content.='<br><span class="seed_hash">2 = 2x</span>';
    $content.='<br><span class="seed_hash">3 = 0x</span>';
    $content.='<br><span class="seed_hash">4 = 2x</span>';
    $content.='<br><span class="seed_hash">5 = 0.25x</span>';
    $content.='<br><span class="seed_hash">6 = 2x</span>';




this one is for a Wheel game.

BOTH for BITCOINS GAMBLING.

Selling both for 2 bitcoins

http://imgur.com/lre90JQ

http://imgur.com/XNuoKxp


demo : www.wheelofsatoshi.com


Pm or Post, i usually reply very quickly.
45  Economy / Services / Website Development on: March 01, 2015, 06:01:35 PM
hello,

I have a domain, intriguebox.net

i want to create a webcam website.
live.com, chaturbate.com

anyone who can create it, kindly post me with price and whatever i need to know from you. also in how many time you will be able to do it.

that is plan number 1.

the second option is, if you can create a video uploading website for SPECIFIC categories which i will post when requested.

finally, i will need to know where to host it, i have hosting packages but i cant take risks with those kind of websites.

do not forget to mention price, detailed pricing PLEASE.
thank you.
46  Economy / Currency exchange / Need to SELL 4.1 Bitcoins to USD on: February 27, 2015, 09:45:23 AM
a
47  Economy / Trading Discussion / BitCoins to Bank-to-Bank Transfer on: February 27, 2015, 09:31:14 AM
hello people... i need advice and a very good vouch for those guys.

will be selling bitcoins to usd to the guy called :  "Cryptology"

anyone vouch for him? i would prefer senior or legendary members to vouch.

deal will be 4 bitcoins for a start. bank to bank transfer, using escrow service of "cooldgamer " if he replies to my post.

i need people who dealt with them, (both guys) to vouch for them. proofs would be very much appreciated. thank you very much.
48  Economy / Digital goods / Complete established website for sale on: February 26, 2015, 11:31:32 AM
www.chancetowinsomething.com

costs which i will pay : $15 x 12 months : 180$ yearly
cost of advertising which i will pay : 150$ / yearly
totalling 230$ = 1 Btc

those cost i will have to pay because they are already billed from my paypal account

what do you get by buying?

RESELLER HOSTING
Includes The 2,000 Item Master Reseller Website

The Reseller Hosting Website INCLUDES OVER 2,000 Items:
Ebooks, Website Downloads, One Click Installation Websites,
Domain Reseller and Resell Hosting

INCLUDES :
+ WEBSITE RESELLER BUSINESS
 + HOSTING RESELLER BUSINESS
+ DOMAIN RESELLER BUSINESS
Plus 1,600 DOWNLOADABLE ITEMS
Plus 200 WEBSITES YOU CAN HOST

Comes Pre-Installed With eBooks & Websites With Full Resell Rights Just To Get You Started!!
Search Engine Optimized with title, description, keywords and body. You can edit everything - title, description, keywords and body anytime you wish.

You are an independent WEBSITE / DOMAIN / EBOOK RESELLER company.
Your customers will not know that you are reselling our hosting, ebooks or
our one click install websites.
 As a reseller you keep 100% of the money you collect.
This is your business. You can advertise on ebay, classifieds, papers -
you decide how to run and advertise your business.

You can sell each one click website anywhere you wish, sell on ebay,
in classifieds newspapers, to your friends, neighbors, and etc....

Whats great about these websites? You are actually selling only charging a monthly hosting fee for the website. When a clients signs up for you website, the client will automatically sign up for a paypal.com monthly hosting subscription. The client will pay you the same hosting fee month after month. Website are easy to install with the one click Auto Installer .
You can now sell Hosting + Websites and Ebooks + Domains.

Recap::::


Reseller Website
Ebooks & Websites & Software scripts
Photo Displayed
Keyword Search
You can add you own websites you wish to sell from the admin area.
Members can sign up automatically with or without a domain purchase - you do nothing but collect the money in your paypal account!!
Add Banners
Live Chat Contact Form
Add Content Articles, links or Content Pages About Anything You Wish with a click
Add Welcome Text via Admin on your main page from the admin area
You can add/edit/delete website listings
Admin can add/edit/delete unlimited categories
Manage the site settings - title, keywords, description, contact page phone number - address - your contact address and phone number
Admin info - change username, password, name, email
AND MORE MORE MORE
99% Uptime Guarantee
Reseller Hosting
WITH
AUTOMATED
HOSTING / EBOOK WEBSITE + CPANEL + DOMAIN RESELLER BUSINESS
WITH  One Click Auto-Installer AND eBooks/Scripts/Websites.
WITH DOMAIN CHECKER INCLUDED


Price? propose a price yourself. you got 10days from today 26 feb 2015

PLEASE dont propose stupid prices. i already totalled my expenses amounting to 1bitcoin at the beginning of this post. calculate an expected profit yourself and post a decent amount. will accept bitcoin, Western Union and Bank-to-Bank transaction (due to my location)


any additional information you need? proof its mine, admin panel. whatever you need, feel free to leave a PM, or post on this thread. i usually reply within the 4hour time unless i am caught up somewhere.

Reason for selling?

i already bought another domain, i am working on a diversified business which i dont know if it will work, but life is about taking risks.

last message : i am not a scammer, you can find my post in gambling thread where i posted gambling software.
i might be a newbie but doesnot mean i am a scammer!!

ThankYou very much. Cheers

p.s : i posted in auction page. but i just noticed you might need some more informations :


amongst services i propose :

PREMIUM HOSTING RESELLER PACKAGE
Positive feedback rating HOST UNLIMITED DOMAINS   Unlimited
Positive feedback rating SELL UNLIMITED WEBSITES    Unlimited
Positive feedback rating Server processor   Dual Core/Dual XEON Servers
Positive feedback rating Total Ram In Server   at least 2GB of RAM
Positive feedback rating Storage Space   Unlimited
Positive feedback rating Bandwidth   Unmetered
Positive feedback rating Uptime Guarantee   99%
Positive feedback rating cPanel Websites You Can Host   Unlimited
Positive feedback rating RvSkins (Stylish cPanel Skins)   
Positive feedback rating Free Site Builder (RvSiteBuilder)   
Positive feedback rating POP3 Mail Boxes   Unlimited
Positive feedback rating WebMail   NeoMail, SQMail, Horde
Positive feedback rating Autoresponders   Unlimited
Positive feedback rating Webalizer, Awstats, Analog Stats   Unlimited
Positive feedback rating Auto forwarders   Unlimited
Positive feedback rating Junk mail filters   Unlimited
Positive feedback rating PHP 5.0.5 / MySQL 4.1.22 / Zend 2.0.5   
Positive feedback rating CGI / PERL / ZEND / SSI / ect...   
Positive feedback rating Sub-domains   Unlimited
Positive feedback rating MySQL databases   Unlimited
Positive feedback rating FTP Accounts   Unlimited
Positive feedback rating Uptime Guarantee   99.9%
Positive feedback rating WHM 11 + cPanel 11 + Fantastico Script Installer   
Positive feedback rating Cost   PAID MONTHLY!
No Setup Fee!
  RESELLER WEBSITE PROVIDED
FREE INSTALLATION

RVSiteBuilder Included With
Every Hosting Cpanel You Create


600+ Templates
Access via cPanel hosting
Unlimited pages and sub pages
Variable screen resolutions
Backup and restore projects
Missing project recovery
Move logo, slogan, company name
Inline help
Training videos
Google Analytics Compatible
Google Adsense Compatible
Glitter Compatible
Royalty free website templates
General template features
XHTML 1.0 Transitional Compliance
Standard templates
Flash templates
Two tone colour, illustrations
Flash template styles
3 colour schemes for each template
2 image styles for each template
20 template categories
Switchable navigator 22 styles
The only limit is your imagination.

If you've used a word processor you should be able to use this with ease.


EXAMPLE: 20 WEBSITES X $9.95 HOSTING FEE PER MONTH = $199 PER MONTH
IMAGINE HOSTING 100 WEBSITES OR MORE!!!!

Make $$$ Selling RvSiteBuilder To Everyone!
Each Hosting Account You Create Automatically Has The "FREE" RvSiteBuilder Program. Sell RvSiteBuilder to anyone that needs a website. Anyone can create a website. Most people do not know how to create an online presence. You will find it easy to sell this to clients needing personal or business websites, and you make money by charging a hosting fee every month for your services


Fantastico Deluxe Scripts Included
With Every Cpanel You Create - One Click Install


http://imgur.com/0kDRsgo
49  Economy / Auctions / Chancetowinsomething.com Domain + Hosting on: February 26, 2015, 11:16:50 AM
costs which i will pay : $15 x 12 months : 180$ yearly
cost of advertising which i will pay : 150$ / yearly
totalling 230$ = 1 Btc

those cost i will have to pay because they are already billed from my paypal account

what do you get by buying?

RESELLER HOSTING
Includes The 2,000 Item Master Reseller Website

The Reseller Hosting Website INCLUDES OVER 2,000 Items:
Ebooks, Website Downloads, One Click Installation Websites,
Domain Reseller and Resell Hosting

INCLUDES :
+ WEBSITE RESELLER BUSINESS
 + HOSTING RESELLER BUSINESS
+ DOMAIN RESELLER BUSINESS
Plus 1,600 DOWNLOADABLE ITEMS
Plus 200 WEBSITES YOU CAN HOST

Comes Pre-Installed With eBooks & Websites With Full Resell Rights Just To Get You Started!!
Search Engine Optimized with title, description, keywords and body. You can edit everything - title, description, keywords and body anytime you wish.

You are an independent WEBSITE / DOMAIN / EBOOK RESELLER company.
Your customers will not know that you are reselling our hosting, ebooks or
our one click install websites.
 As a reseller you keep 100% of the money you collect.
This is your business. You can advertise on ebay, classifieds, papers -
you decide how to run and advertise your business.

You can sell each one click website anywhere you wish, sell on ebay,
in classifieds newspapers, to your friends, neighbors, and etc....

Whats great about these websites? You are actually selling only charging a monthly hosting fee for the website. When a clients signs up for you website, the client will automatically sign up for a paypal.com monthly hosting subscription. The client will pay you the same hosting fee month after month. Website are easy to install with the one click Auto Installer .
You can now sell Hosting + Websites and Ebooks + Domains.

Recap::::


Reseller Website
Ebooks & Websites & Software scripts
Photo Displayed
Keyword Search
You can add you own websites you wish to sell from the admin area.
Members can sign up automatically with or without a domain purchase - you do nothing but collect the money in your paypal account!!
Add Banners
Live Chat Contact Form
Add Content Articles, links or Content Pages About Anything You Wish with a click
Add Welcome Text via Admin on your main page from the admin area
You can add/edit/delete website listings
Admin can add/edit/delete unlimited categories
Manage the site settings - title, keywords, description, contact page phone number - address - your contact address and phone number
Admin info - change username, password, name, email
AND MORE MORE MORE
99% Uptime Guarantee
Reseller Hosting
WITH
AUTOMATED
HOSTING / EBOOK WEBSITE + CPANEL + DOMAIN RESELLER BUSINESS
WITH  One Click Auto-Installer AND eBooks/Scripts/Websites.
WITH DOMAIN CHECKER INCLUDED


Price? propose a price yourself. you got 10days from today 26 feb 2015

PLEASE dont propose stupid prices. i already totalled my expenses amounting to 1bitcoin at the beginning of this post. calculate an expected profit yourself and post a decent amount. will accept bitcoin, Western Union and Bank-to-Bank transaction (due to my location)


any additional information you need? proof its mine, admin panel. whatever you need, feel free to leave a PM, or post on this thread. i usually reply within the 4hour time unless i am caught up somewhere.

Reason for selling?

i already bought another domain, i am working on a diversified business which i dont know if it will work, but life is about taking risks.

last message : i am not a scammer, you can find my post in gambling thread where i posted gambling software.
i might be a newbie but doesnot mean i am a scammer!!

ThankYou very much. Cheers
50  Economy / Digital goods / Bit coin Casino Game - BlackJack on: February 26, 2015, 07:59:43 AM
You have opportunity to run your own casino game - blackjack.

 

lookalikeDemos:

http://www.btcircle.com/coinjack

 

 Use free bitcoin option to try it out for yourself!

 

 REQUIREMENTS:

- PHP (>= 5)

- MySQL

- Any bitcoin like wallet

 

MAIN FEATURES:

- 2 Factor Authentication

- No CRON required

- Auto Installation Script

- Adjustable House Edge

- Chat

- Provably Fair

- Options 3 TO 2 or 6 to 5

- Number od decks - 1, 2, 4, 6, 8, 10

- Dealer hits on soft 18 - Yes, No

- Administration full of options

- Detailed Statistics

- Full Support (Installation +  Support)

 

House edge is optional but hard to exactly predict. It depends on options - 3 to 2 or 6 to 5, number of decks, dealer hits on soft 18 and player strategy.

With default settings house edge is around 0.39 % but you can change it in administration.

Remember, whatever i post, i have already tried it first.
i dont want to get banned or something.

http://satoshibox.com/54eece414c347b12c500834d


let me know if you need more pictures (referring to the fact it was getting hectic yesterday at it was my first time)

http://imgur.com/DAobr9Q
51  Economy / Gambling / get your own bitcoin casino game on: February 25, 2015, 02:31:16 PM
well, not really a casino game. i mean not the complete casino game. but its all i could do with resources i have.
also, you can modify it if you want. resale. modification. whatever you want is fine

http://satoshibox.com/54edd1d34c347bece3008359

BTC
Pages: « 1 2 [3]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!