Bitcoin Forum
June 21, 2024, 03:13:12 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Warning: One or more bitcointalk.org users have reported that they strongly believe that the creator of this topic is a scammer. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
Pages: [1] 2 »  All
  Print  
Author Topic: Selling Bitcoin Games  (Read 1917 times)
Netpyder (OP)
Full Member
***
Offline Offline

Activity: 196
Merit: 100

Scam / Scammer Hunter


View Profile WWW
March 03, 2015, 05:18:59 AM
 #1

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

Bardman
Hero Member
*****
Offline Offline

Activity: 952
Merit: 516



View Profile
March 03, 2015, 05:41:31 AM
 #2

Why would anyone buy this from you? Another shitty strategy that doesnt work? And 2 btc???

  █
 ▐ █  
  █
 ▐ █  


▄████████████████████▄
██████▀░░░░░░░░███████
████▀░░░▄████▄░░░░████
███░░▄█▀▀░░░░▀▀██░░███
██░░░█▌░██████░░██░░██
██░░█▌░████████░▐█░░██
██░░█▌░████████░▐█░░██
██░░█▌░███████████░░██
██░░░█▌░░█████▌░▐█░▐██
███░░▀█▌░░█▀░░▄██▀░▐██
████▄░░▀██████████████
██████▄░░░░███████████
▀████████████████████


▄████████████████████▄
██████████████████████
██████████░░██████████
█████████░░░░█████████
████████░░░░░░████████
███████░░░▐▌░░░███████
██████░░░░██░░░░██████
█████░░░░████░░░░█████
████░░░░██████░░░░████
███░░░░░░░░░░░░░░░░███
██░░░░░░░░░░░░░░░░░░██
██████████████████████
▀████████████████████

.a.


░░██████████████████████████████████████░░
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████░░░░░░░░░░░░░░░░░░░░██████████
██████████░█████████████████████░█████████
█████████░████░░░░░░░░░░░░░░░░███░████████
████████░███░█████████████████░████░██████
██████░███░░███░░░░░░░░░░░░░████░███░░████
█████░███░████░█████████████░████░████░███
███░░███░████░░██████████████░████░████░██
████░░███░░████░███████████░░████░████░███
██████░░███░░███░░████████░████░████░█████
████████░████░░███░░████░████░████░███████
█████████░░████░████░███████░████░████████
███████████░░███░░███░░████████░██████████
█████████████░████░████░█████░████████████
███████████████░████░░███░░███████████████
█████████████████░████░███████████████████
██████████████████░░███░░█████████████████
████████████████████░░████████████████████
█████████████████████░████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
░░██████████████████████████████████████


▄████████████████████▄
█████████████████▀░░██
██████████▀░███▀░░░░██
█████████▀░░██░░░░░░██
███████▀░░░░█░░░░░░░██
██████▀░░░░░▒░░░░░░░██
█████▀░░░░░░▒░░░░░░░██
████▀░░░░░░░▒░░░░░░░██
████░░░░░░░░▒░░░░░░░██
███▀░░░░░░░░▒░░░░░░░██
██▀░░░░░░░░░▒░░░░░░░██
██░░░░░░░░░░▒░░░░░░░██
▀████████████████████


▄████████████▀███████▄
████▀▀▀▀▀▀▀▀▀░▀▀▀▀▀▀▀█
████░░██░░░░█░░░████░█
███░░█░░░░██░░░░░░░░░█
██░░░░░░░░░░███░░░░░██
█████████░░░██░░░█████
████████░░░█░░░░██████
███████░░░░░░░░░██████
██████░░░░░░█░░███████
█████░░░░░███░░███████
████░░░░░███░░░███████
██████░░░░░░░░░███████
▀████████████████████
Netpyder (OP)
Full Member
***
Offline Offline

Activity: 196
Merit: 100

Scam / Scammer Hunter


View Profile WWW
March 03, 2015, 07:53:22 AM
 #3

Why would anyone buy this from you? Another shitty strategy that doesnt work? And 2 btc???

thats why there is a demo

yenzae0215
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
March 03, 2015, 08:07:05 AM
 #4

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?

Banned**
electronicfactura
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500


View Profile
March 03, 2015, 08:50:06 AM
 #5

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.
Netpyder (OP)
Full Member
***
Offline Offline

Activity: 196
Merit: 100

Scam / Scammer Hunter


View Profile WWW
March 03, 2015, 09:21:05 AM
 #6

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 Smiley

coingamblingreviews
Legendary
*
Offline Offline

Activity: 1043
Merit: 1032


★Bitcoin Gambling Reviews★


View Profile WWW
March 04, 2015, 12:48:57 AM
 #7

Fun demo! I like it  Smiley

Vortex20000
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500

sucker got hacked and screwed --Toad


View Profile WWW
March 04, 2015, 01:05:22 AM
 #8

$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.)

Netpyder (OP)
Full Member
***
Offline Offline

Activity: 196
Merit: 100

Scam / Scammer Hunter


View Profile WWW
March 04, 2015, 01:07:46 AM
 #9

Fun demo! I like it  Smiley

thanks. appreciate it Smiley


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

sed
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500


View Profile
March 04, 2015, 01:10:00 AM
 #10

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.
M28MmickT
Sr. Member
****
Offline Offline

Activity: 433
Merit: 250


BTG CEO


View Profile
March 04, 2015, 01:10:31 AM
 #11

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  Huh Thanks in advance for your clearing this up for me  Smiley

sed
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500


View Profile
March 04, 2015, 01:17:10 AM
 #12

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  Huh Thanks in advance for your clearing this up for me  Smiley

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.
Netpyder (OP)
Full Member
***
Offline Offline

Activity: 196
Merit: 100

Scam / Scammer Hunter


View Profile WWW
March 04, 2015, 01:19:20 AM
 #13

plus..

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




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  Huh Thanks in advance for your clearing this up for me  Smiley
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

sed
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500


View Profile
March 04, 2015, 01:27:29 AM
 #14

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.
Netpyder (OP)
Full Member
***
Offline Offline

Activity: 196
Merit: 100

Scam / Scammer Hunter


View Profile WWW
March 04, 2015, 01:31:54 AM
 #15

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..

Vortex20000
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500

sucker got hacked and screwed --Toad


View Profile WWW
March 04, 2015, 01:39:38 AM
 #16

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  Huh Thanks in advance for your clearing this up for me  Smiley
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).

Netpyder (OP)
Full Member
***
Offline Offline

Activity: 196
Merit: 100

Scam / Scammer Hunter


View Profile WWW
March 04, 2015, 01:42:28 AM
 #17

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  Huh Thanks in advance for your clearing this up for me  Smiley
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.

Hazir
Legendary
*
Offline Offline

Activity: 1596
Merit: 1005


★Nitrogensports.eu★


View Profile
March 04, 2015, 01:44:01 AM
 #18

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.


           █████████████████     ████████
          █████████████████     ████████
         █████████████████     ████████
        █████████████████     ████████
       ████████              ████████
      ████████              ████████
     ████████     ███████  ████████     ████████
    ████████     █████████████████     ████████
   ████████     █████████████████     ████████
  ████████     █████████████████     ████████
 ████████     █████████████████     ████████
████████     ████████  ███████     ████████
            ████████              ████████
           ████████              ████████
          ████████     █████████████████
         ████████     █████████████████
        ████████     █████████████████
       ████████     █████████████████
▄▄
██
██
██
██
██
██
██
██
██
██     
██
██
▬▬ THE LARGEST & MOST TRUSTED ▬▬
      BITCOIN SPORTSBOOK     
   ▄▄
██
██
██
██
██
██
██
██
██
██     
██
██
             ▄▄▄▄▀▀▀▀▄
     ▄▄▄▄▀▀▀▀        ▀▄▄▄▄          
▄▀▀▀▀                 █   ▀▀▀▀▀▀▀▄▄
█                    ▀▄          █
 █   ▀▌     ██▄        █          █              
 ▀▄        ▐████▄       █        █
  █        ███████▄     ▀▄       █
   █      ▐████▄█████████████████████▄
   ▀▄     ███████▀                  ▀██
    █      ▀█████    ▄▄        ▄▄    ██
     █       ▀███   ████      ████   ██
     ▀▄        ██    ▀▀        ▀▀    ██
      █        ██        ▄██▄        ██
       █       ██        ▀██▀        ██
       ▀▄      ██    ▄▄        ▄▄    ██
        █      ██   ████      ████   ██
         █▄▄▄▄▀██    ▀▀        ▀▀    ██
               ██▄                  ▄██
                ▀████████████████████▀




  CASINO  ●  DICE  ●  POKER  
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
   24 hour Customer Support   

▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
Netpyder (OP)
Full Member
***
Offline Offline

Activity: 196
Merit: 100

Scam / Scammer Hunter


View Profile WWW
March 04, 2015, 01:45:40 AM
 #19

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 Smiley happy bro?

Vortex20000
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500

sucker got hacked and screwed --Toad


View Profile WWW
March 04, 2015, 01:47:44 AM
 #20

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  Huh Thanks in advance for your clearing this up for me  Smiley
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.

Pages: [1] 2 »  All
  Print  
 
Jump to:  

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