Bitcoin Forum

Economy => Digital goods => Topic started by: Netpyder on March 03, 2015, 05:18:59 AM



Title: Selling Bitcoin Games
Post by: Netpyder 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.


Title: Re: Selling Bitcoin Games
Post by: Bardman on March 03, 2015, 05:41:31 AM
Why would anyone buy this from you? Another shitty strategy that doesnt work? And 2 btc???


Title: Re: Selling Bitcoin Games
Post by: Netpyder on March 03, 2015, 07:53:22 AM
Why would anyone buy this from you? Another shitty strategy that doesnt work? And 2 btc???

thats why there is a demo


Title: Re: Selling Bitcoin Games
Post by: yenzae0215 on March 03, 2015, 08:07:05 AM
Why would anyone buy this from you? Another shitty strategy that doesnt work? And 2 btc???

thats why there is a demo

can you give proof that you are the owner the the demo site?


Title: Re: Selling Bitcoin Games
Post by: electronicfactura on March 03, 2015, 08:50:06 AM
Why would anyone buy this from you? Another shitty strategy that doesnt work? And 2 btc???

thats why there is a demo

can you give proof that you are the owner the the demo site?
Looks cool but need to come out with owing proof and price is too high to be sold quickly. You should think well before demand the selling price.


Title: Re: Selling Bitcoin Games
Post by: Netpyder on March 03, 2015, 09:21:05 AM
Why would anyone buy this from you? Another shitty strategy that doesnt work? And 2 btc???

thats why there is a demo

can you give proof that you are the owner the the demo site?
Looks cool but need to come out with owing proof and price is too high to be sold quickly. You should think well before demand the selling price.

hmm how much should i be pricing it?

dude which part of the code you want me to post?
just let me know :)


Title: Re: Selling Bitcoin Games
Post by: coingamblingreviews on March 04, 2015, 12:48:57 AM
Fun demo! I like it  :)


Title: Re: Selling Bitcoin Games
Post by: Vortex20000 on March 04, 2015, 01:05:22 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.

User is not original creator of this script and has no right to sell it. (I think. Looks like Johny's scripts.)


Title: Re: Selling Bitcoin Games
Post by: Netpyder on March 04, 2015, 01:07:46 AM
Fun demo! I like it  :)

thanks. appreciate it :)


sorry bought but modified them i already said that in my other posts.

was sold on crypto something website. can post the link if needed


Title: Re: Selling Bitcoin Games
Post by: sed on March 04, 2015, 01:10:00 AM
Surprising that someone would try to sell a few lines of  javascript as if it's some kinda working program.  Clearly anyone with the skills to evaluate what's for sale here has the skills just to do it for themself.  This thread is funny.


Title: Re: Selling Bitcoin Games
Post by: M28MmickT on March 04, 2015, 01:10:31 AM
Lovely big red writing lol so if he has no right to sell it can you tell me how he has it please i am confused and a little new to the buying of software  ??? Thanks in advance for your clearing this up for me  :)


Title: Re: Selling Bitcoin Games
Post by: sed on March 04, 2015, 01:17:10 AM
Lovely big red writing lol so if he has no right to sell it can you tell me how he has it please i am confused and a little new to the buying of software  ??? Thanks in advance for your clearing this up for me  :)

What's there is hilllariously trivial.  It's incredibly naive to think there's any value in these lines.  I mean, it's crazy to think that this is "for sale".  If you ask me.


Title: Re: Selling Bitcoin Games
Post by: Netpyder on March 04, 2015, 01:19:20 AM
plus..

you say those in such big sized fonts like that and THEN at the end put a small (i think)????




looks like you bought your account.. saw many sr members sold here


Lovely big red writing lol so if he has no right to sell it can you tell me how he has it please i am confused and a little new to the buying of software  ??? Thanks in advance for your clearing this up for me  :)
i would love to hear what he has to say now LMFAO



here is to who dont believe it will work :


<div id="placer_">
            <br><br>
            <table style="margin-left: auto; margin-right: auto; text-align: center;"><tr>
              <td class="spins_s"><i>Your spins:</i><br><big><span id="yspins"><?php $zsp=mysql_fetch_array(mysql_query("SELECT `t_spins` FROM `players` WHERE `id`=$player[id] LIMIT 1")); echo $zsp['t_spins'] ?></span></big></td>
              <td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
              <td class="spins_s"><i>Total spins:</i><br><big><span id="tspins"><?php echo mysql_num_rows(mysql_query("SELECT `id` FROM `spins`")); ?></span></big></td>
            </tr></table>
          </div>
        </div>
      </div>
      <div class="dole">
      <div id="centerer">
        <ul id="stats-menu">
          <li><a id="stats_recent_spins" href="#" onclick="javascript:_stats_content('recent_spins');return false;">Recent Spins</a></li>
          <li><a id="stats_leaderbord" href="#" onclick="javascript:_stats_content('leaderbord');return false;">Leaderboard</a></li>
          <li><a id="stats_news" href="#" onclick="javascript:_stats_content('news');return false;">News</a></li>
          <li><a id="stats_fair" href="#" onclick="javascript:_stats_content('fair');return false;">Fair?</a></li>
        </ul>
      </div>
      <div id="stats-content">

      </div>
      <script type="text/javascript">
        _stats_content('recent_spins');
      </script>

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


if (empty($_GET['_unique']) || mysql_num_rows(mysql_query("SELECT `id` FROM `players` WHERE `hash`='".prot($_GET['_unique'])."' LIMIT 1"))==0) exit();
$player=mysql_fetch_array(mysql_query("SELECT * FROM `players` WHERE `hash`='".prot($_GET['_unique'])."' LIMIT 1"));
$player['server_seed_']=$player['server_seed'];
$player['server_seed']=(double)substr($player['server_seed'],27);

$settings=mysql_fetch_array(mysql_query("SELECT * FROM `system` LIMIT 1"));

if (!isset($_GET['w']) || (double)$_GET['w']<0 || (double)$_GET['w']>$player['balance']) {     // bet amount
  echo json_encode(array('error'=>'yes','data'=>'invalid_bet'));
  exit();
}
if (!isset($_GET['m']) || !is_numeric((double)$_GET['m']) || (double)$_GET['m']<1.01202 || (double)$_GET['m']>9900) {      // multiplier
  echo json_encode(array('error'=>'yes','data'=>'invalid_m'));
  exit();

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


who wants more, just let me know which part you want to know??

i would love to see someone buy it, then comes ram up your face saying it works.

mate, would you like escrow?
find your escrow, pay the fees. you got a deal.. @ M28MmickT


@sed, i CLEARLY said, these are portions of codes, i am not so stupid to put the full codes here, then how do i sell it then? by begging maybe


Title: Re: Selling Bitcoin Games
Post by: sed on March 04, 2015, 01:27:29 AM
Well, I don't think you're going to sell anything either way.  All your "posted code" shows is that you know something about javascript and html.  Those are valuable skills, don't get me wrong.  If anyone actually wants you to code something for them, perhaps this will help you find this job. 

My point is that no one is going to buy your javascript/html unless they see it working somewhere.  Furthermore, if you wrote more of it in shellscript or C or php or something server-side then you could set up your demo without giving away your code.

Yah, good luck man.


Title: Re: Selling Bitcoin Games
Post by: Netpyder on March 04, 2015, 01:31:54 AM
Well, I don't think you're going to sell anything either way.  All your "posted code" shows is that you know something about javascript and html.  Those are valuable skills, don't get me wrong.  If anyone actually wants you to code something for them, perhaps this will help you find this job. 

My point is that no one is going to buy your javascript/html unless they see it working somewhere.  Furthermore, if you wrote more of it in shellscript or C or php or something server-side then you could set up your demo without giving away your code.

Yah, good luck man.


have you read the post well?
or just came to comment?

saw a link up or something? just saying yeah..


Title: Re: Selling Bitcoin Games
Post by: Vortex20000 on March 04, 2015, 01:39:38 AM
Lovely big red writing lol so if he has no right to sell it can you tell me how he has it please i am confused and a little new to the buying of software  ??? Thanks in advance for your clearing this up for me  :)
Looks like he bought it and is now reselling more copies. What he forgot to include, at the top of every page in the script:

Code:
/*
 *  © CoinDice
 *  Demo: http://www.btcircle.com/dice
 *  Please do not copy or redistribute.
 *  More licences we sell, more products we develop in the future. 
*/

Not sure about the CoinWheel script. Didn't buy that [from Johny] (I've never bought from this guy).


Title: Re: Selling Bitcoin Games
Post by: Netpyder on March 04, 2015, 01:42:28 AM
Lovely big red writing lol so if he has no right to sell it can you tell me how he has it please i am confused and a little new to the buying of software  ??? Thanks in advance for your clearing this up for me  :)
Looks like he bought it and is now reselling more copies. What he forgot to include, at the top of every page in the script:

Code:
/*
 *  © CoinDice
 *  Demo: http://www.btcircle.com/dice
 *  Please do not copy or redistribute.
 *  More licences we sell, more products we develop in the future. 
*/

Not sure about the CoinWheel script. Didn't buy that [from Johny] (I've never bought from this guy).


exactly that was the blackjack game mate...

this one is NOT blackjack.. clearly stated that.


Title: Re: Selling Bitcoin Games
Post by: Hazir on March 04, 2015, 01:44:01 AM
Well, I don't think you're going to sell anything either way.  All your "posted code" shows is that you know something about javascript and html.  Those are valuable skills, don't get me wrong.  If anyone actually wants you to code something for them, perhaps this will help you find this job. 

My point is that no one is going to buy your javascript/html unless they see it working somewhere.  Furthermore, if you wrote more of it in shellscript or C or php or something server-side then you could set up your demo without giving away your code.

Yah, good luck man.


have you read the post well?
or just came to comment?

saw a link up or something? just saying yeah..
What is wrong with commenting this bro? You can earn some money but not like that. You want some easy way to earn 2btc with modified scripts and no warranty at all that this is something worth such money.


Title: Re: Selling Bitcoin Games
Post by: Netpyder on March 04, 2015, 01:45:40 AM
Well, I don't think you're going to sell anything either way.  All your "posted code" shows is that you know something about javascript and html.  Those are valuable skills, don't get me wrong.  If anyone actually wants you to code something for them, perhaps this will help you find this job. 

My point is that no one is going to buy your javascript/html unless they see it working somewhere.  Furthermore, if you wrote more of it in shellscript or C or php or something server-side then you could set up your demo without giving away your code.

Yah, good luck man.


have you read the post well?
or just came to comment?

saw a link up or something? just saying yeah..
What is wrong with commenting this bro? You can earn some money but not like that. You want some easy way to earn 2btc with modified scripts and no warranty at all that this is something worth such money.



you want to buy?
let do it, use any escrow you want. and release the btc only after checking that the scripts will work :) happy bro?


Title: Re: Selling Bitcoin Games
Post by: Vortex20000 on March 04, 2015, 01:47:44 AM
Lovely big red writing lol so if he has no right to sell it can you tell me how he has it please i am confused and a little new to the buying of software  ??? Thanks in advance for your clearing this up for me  :)
Looks like he bought it and is now reselling more copies. What he forgot to include, at the top of every page in the script:

Code:
/*
 *  © CoinDice
 *  Demo: http://www.btcircle.com/dice
 *  Please do not copy or redistribute.
 *  More licences we sell, more products we develop in the future. 
*/

Not sure about the CoinWheel script. Didn't buy that [from Johny] (I've never bought from this guy).


exactly that was the blackjack game mate...

this one is NOT blackjack.. clearly stated that.

$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 {

Code is from CoinDice. Exact same code.


Title: Re: Selling Bitcoin Games
Post by: Netpyder on March 04, 2015, 01:59:49 AM
you rank are newbi how people will believe in you ??
2 BTC is not a small amount

i understand that. but that does not mean that everybody who is new is a scammer. scammers dont make so much efforts to prove themselves.

i am tired of having to justify everything i do man.  :-[

everytime i post something, negatives going on. they dont even want to know if the guy is legit, or if they are mistaken, they just come here and blame me direct from my post.

there is this other guy who clearly came to set the fire here. he posted big red characters of a blame. then smaller ones of [ i think] and the fire started from there..

i left a forum because of scammers, come to this one and i am the scammer now..

anyways. if anyone wants to buy it, he use any escrow he wants as long as its from a reputed member of this forum. he release the escrow when he finish making the script work. not a problem for me.


Title: Re: Selling Bitcoin Games
Post by: Bitcoin Explorer on March 04, 2015, 06:43:51 AM
Lovely big red writing lol so if he has no right to sell it can you tell me how he has it please i am confused and a little new to the buying of software  ??? Thanks in advance for your clearing this up for me  :)
Looks like he bought it and is now reselling more copies. What he forgot to include, at the top of every page in the script:

Code:
/*
 *  © CoinDice
 *  Demo: http://www.btcircle.com/dice
 *  Please do not copy or redistribute.
 *  More licences we sell, more products we develop in the future. 
*/

Not sure about the CoinWheel script. Didn't buy that [from Johny] (I've never bought from this guy).


exactly that was the blackjack game mate...

this one is NOT blackjack.. clearly stated that.

$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 {

Code is from CoinDice. Exact same code.
Lol, thanks for the alert, i was going to ask him for a custom script for a virtual game


Title: Re: Selling Bitcoin Games
Post by: Netpyder on March 04, 2015, 06:46:57 AM
:facepalm


Title: Re: Selling Bitcoin Games
Post by: Omikifuse on March 04, 2015, 08:52:33 AM
why 2 btc ????

there are cheaper scripts.

And that we know have no backdoors


Title: Re: Selling Bitcoin Games
Post by: Netpyder on March 04, 2015, 01:29:43 PM
why 2 btc ????

there are cheaper scripts.

And that we know have no backdoors


you check, you make it work, then escrow release the money.

you scan everything or i can give it to you file by file. nothing is a problem when you remove the negativity and put in positivity