Jump to content

please can anyone help with this?


imhere2009

Recommended Posts

hi

i have a website: www.ladwars.com/club/ which works fine, though i have an addon though it doesnt have an sql file with it. the php addon file is below,  can anyone make an sql file for this? is it possible?

<?
include("game_html.php");$game="yes";
mysql_query("UPDATE $tab[pimp] SET currently='Constructing' WHERE id='$id' AND rid='$rid'");

$msg="";
$user = mysql_fetch_array(mysql_query("SELECT turn,cash,clubup,occupancy,hoes,thugs,guests,ren1,ren2,ren3,ren4,ren5,ren6,ren7,ren8,ren9,ren10,ren11,ren12,ren13,ren14,ren15,ren16,ren17,ren18,ren19,ren20,ren21 FROM $tab[pimp] WHERE id='$id' AND rid='$rid';"));
$count = $user[hoes]+$user[thugs]+$user[guests];

if($club){

    if ($user["clubup"] == 1)
        { $msg="&#149 You have already got this upgrade!"; }
    elseif ($user["clubup"] == 2)
        { $msg="&#149 You have already got a better upgrade than this!"; }   
  elseif ($user["clubup"] == 3)
        { $msg="&#149 You have already got a better upgrade than this!"; }   
    elseif ($user["cash"] < 25000)
        { $msg="&#149 You need at least $25,000 to construct a new club!"; }
    else {
        $msg="&#149 Build Complete!";
        mysql_query("UPDATE $tab[pimp] SET clubup=1, cash=cash-25000 WHERE id='$id' AND rid='$rid'");
        }
}


if($ren1){

    if ($user[ren1] == 1)
        { $msg="&#149 You have already got this renovation built!"; }
    elseif ($user["cash"] < 200000)
        { $msg="&#149 You need at least $200,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren1=1, occupancy=occupancy+5000, cash=cash-200000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren2){

    if ($user[ren2] == 1)
        { $msg="&#149 You have already got this renovation built!"; }
    elseif ($user["cash"] < 500000)
        { $msg="&#149 You need at least $500,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren2=1, occupancy=occupancy+10000, cash=cash-500000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren3){

    if ($user[ren3] == 1)
        { $msg="&#149 You have already got this renovation built!"; }
    elseif ($user["cash"] < 1000000)
        { $msg="&#149 You need at least $1,000,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren3=1, occupancy=occupancy+15000, cash=cash-1000000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren4){

    if ($user[ren4] == 1)
        { $msg="&#149 You have already got this renovation built!"; }
    elseif ($user["cash"] < 10000000)
        { $msg="&#149 You need at least $10,000,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren4=1, occupancy=occupancy+50000, cash=cash-10000000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren5){

    if ($user[ren5] == 1)
        { $msg="&#149 You have already got this renovation built!"; }
    elseif ($user["cash"] < 50000000)
        { $msg="&#149 You need at least $50,000,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren5=1, occupancy=occupancy+100000, cash=cash-50000000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren6){

    if ($user["cash"] < 100000000)
        { $msg="&#149 You need at least $100,000,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren6=ren6+1, occupancy=occupancy+200000, cash=cash-100000000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren7){

    if ($user["cash"] < 500000000)
        { $msg="&#149 You need at least $500,000,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren7=ren7+1, occupancy=occupancy+1500000, cash=cash-500000000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren8){

    if ($user["cash"] < 2000000000)
        { $msg="&#149 You need at least $2,000,000,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren8=ren8+1, occupancy=occupancy+8000000, cash=cash-2000000000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren9){

    if ($user["cash"] < 10000000000)
        { $msg="&#149 You need at least $10,000,000,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren9=ren9+1, occupancy=occupancy+32000000, cash=cash-10000000000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren10){

    if ($user["cash"] < 50000000000)
        { $msg="&#149 You need at least $50,000,000,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren10=ren10+1, occupancy=occupancy+128000000, cash=cash-50000000000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren11){

    if ($user["cash"] < 100000000000)
        { $msg="&#149 You need at least $100,000,000,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren11=ren11+1, occupancy=occupancy+256000000, cash=cash-100000000000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren12){

    if ($user["cash"] < 200000000000)
        { $msg="&#149 You need at least $200,000,000,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren12=ren12+1, occupancy=occupancy+512000000, cash=cash-200000000000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren13){

    if ($user["cash"] < 400000000000)
        { $msg="&#149 You need at least $400,000,000,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren13=ren13+1, occupancy=occupancy+1024000000, cash=cash-400000000000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren14){

    if ($user["cash"] < 800000000000)
        { $msg="&#149 You need at least $800,000,000,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren14=ren14+1, occupancy=occupancy+2048000000, cash=cash-800000000000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren15){

    if ($user["cash"] < 1600000000000)
        { $msg="&#149 You need at least $1,600,000,000,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren15=ren15+1, occupancy=occupancy+4096000000, cash=cash-1600000000000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren16){

    if ($user["cash"] < 3200000000000)
        { $msg="&#149 You need at least $3,200,000,000,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren16=ren16+1, occupancy=occupancy+8192000000, cash=cash-3200000000000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren17){

    if ($user["cash"] < 10000000000000)
        { $msg="&#149 You need at least $10,000,000,000,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren17=ren17+1, occupancy=occupancy+27033600000, cash=cash-10000000000000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren18){

    if ($user["cash"] < 1000000000000000)
        { $msg="&#149 You need at least $1,000,000,000,000,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren18=ren18+1, occupancy=occupancy+2703360000000, cash=cash-1000000000000000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren19){

    if ($user["cash"] < 1000000000000000000)
        { $msg="&#149 You need at least $1,000,000,000,000,000,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren20=ren20+1, occupancy=occupancy+2703360000000000, cash=cash-1000000000000000000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren20){

    if ($user["cash"] < 1000000000000000000000)
        { $msg="&#149 You need at least $1,000,000,000,000,000,000,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren20=ren20+1, occupancy=occupancy+2703360000000000000, cash=cash-1000000000000000000000 WHERE id='$id' AND rid='$rid'");
        }
}

if($ren21){

    if ($user["cash"] < 10000000000000000000000)
        { $msg="&#149 You need at least $10,000,000,000,000,000,000,000 to make this renovation"; }
    else {
        $msg="&#149 Renovation Complete!";
        mysql_query("UPDATE $tab[pimp] SET ren21=ren21+1, occupancy=occupancy+27033600000000000000, cash=cash-10000000000000000000000 WHERE id='$id' AND rid='$rid'");
        }
}







//--------------- CHECKMARKS ------------------------

$check = mysql_fetch_array(mysql_query("SELECT clubup,ren1,ren2,ren3,ren4,ren5,ren6,ren7,ren8,ren9,ren10,ren11,ren12,ren13,ren14,ren15,ren15,ren16,ren17,ren18 FROM $tab[pimp] WHERE id='$id' AND rid='$rid';"));

if ($check[clubup] == 1){$club1="<img src=images/check.gif width=16 height=16 align=absmiddle>";}else{$club1='';}
if ($check[ren1] == 1){$ren1="<img src=images/check.gif width=16 height=16 align=absmiddle>";}else{$ren1='';}
if ($check[ren2] == 1){$ren2="<img src=images/check.gif width=16 height=16 align=absmiddle>";}else{$ren2='';}
if ($check[ren3] == 1){$ren3="<img src=images/check.gif width=16 height=16 align=absmiddle>";}else{$ren3='';}
if ($check[ren4] == 1){$ren4="<img src=images/check.gif width=16 height=16 align=absmiddle>";}else{$ren4='';}
if ($check[ren5] == 1){$ren5="<img src=images/check.gif width=16 height=16 align=absmiddle>";}else{$ren5='';}
if ($check[ren6] >= 1){$ren6="<img src=images/check.gif width=16 height=16 align=absmiddle>";}else{$ren6='';}
if ($check[ren7] >= 1){$ren7="<img src=images/check.gif width=16 height=16 align=absmiddle>";}else{$ren7='';}
if ($check[ren8] >= 1){$ren8="<img src=images/check.gif width=16 height=16 align=absmiddle>";}else{$ren8='';}
if ($check[ren9] >= 1){$ren9="<img src=images/check.gif width=16 height=16 align=absmiddle>";}else{$ren9='';}
if ($check[ren10] >= 1){$ren10="<img src=images/check.gif width=16 height=16 align=absmiddle>";}else{$ren10='';}
if ($check[ren11] >= 1){$ren11="<img src=images/check.gif width=16 height=16 align=absmiddle>";}else{$ren11='';}
if ($check[ren12] >= 1){$ren12="<img src=images/check.gif width=16 height=16 align=absmiddle>";}else{$ren12='';}
if ($check[ren13] >= 1){$ren13="<img src=images/check.gif width=16 height=16 align=absmiddle>";}else{$ren13='';}

//--------------- CHECKMARKS ------------------------

$occ = mysql_fetch_array(mysql_query("SELECT occupancy FROM $tab[pimp] WHERE id='$id' AND rid='$rid';"));

secureheader();
?>
<form method="post" name="nname" action="construct.php?rid=<?=$rid?>">
<font size="+1"><b>Construction</b></font>
<br>

<br><br><font color="#FFCC00"><?=$msg?></font><br><br>

<center>Max Club Occupancy: <b><font color="#2B61A5"><?=commas($occ[occupancy])?></font> people.</b><br>
Current Occupancy: <b><font color="#2B61A5"><?=commas($count)?></font> people.</b>
</center><br><br>


      <table width="90%" cellpadding="3">
      <tr>
        <td><font color="#CCCCCC"><b>Build Club</b></font><table width="100%" height="5" cellspacing="0" cellpadding="0"><tr><td><img src="images/line.gif"></td></tr></table>
</td>
      </tr>
      <tr>
        <td height="15"><font color="#CCCCCC">Construct a brand new club (built for you on startup), max occupancy is 5000 people.</td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$25,000</font> cash<td align="right"><input type="submit" class="submit" name="club" value="Build"> &nbsp; &nbsp;<?=$club1?></td></tr></table></td>

      </tr>
      </table>

<table width="100%" height="40" cellspacing="0" cellpadding="0"><tr><td align="center"><font size="+1">Renovations</font></td></tr></table>

    <center><img src="images/sideadd.gif"></center>
      <table width="90%" cellpadding="3">
      <tr>
        <td><font color="#CCCCCC"><b>Side Addition</b></font><table width="100%" height="5" cellspacing="0" cellpadding="0"><tr><td><img src="images/line.gif"></td></tr></table>
</td>
      </tr>
      <tr>
        <td height="15"><font color="#CCCCCC">Do a little remodeling by adding on a new side area to your club, increases occupancy by <b>5000 people.</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$200,000</font> cash<td align="right"><input type="submit" class="submit" name="ren1" value="Build"> &nbsp; &nbsp;<?=$ren1?></td></tr></table></td>

      </tr>
      </table>

<table width="100%" height="20" cellspacing="0" cellpadding="0"><tr><td align="center"></td></tr></table>

    <center><img src="images/dancefloor.gif"></center>
      <table width="90%" cellpadding="3">
      <tr>
        <td><font color="#CCCCCC"><b>Dance floor</b></font><table width="100%" height="5" cellspacing="0" cellpadding="0"><tr><td><img src="images/line.gif"></td></tr></table>
</td>
      </tr>
      <tr>
        <td height="15"><font color="#CCCCCC">Need some more room? get the people a new dance floor so they get there groove on, increases occupancy by <b>10,000 people</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$500,000</font> cash<td align="right"><input type="submit" class="submit" name="ren2" value="Build"> &nbsp; &nbsp;<?=$ren2?></td></tr></table></td>

      </tr>
      </table>

<table width="100%" height="20" cellspacing="0" cellpadding="0"><tr><td align="center"></td></tr></table>

    <center><img src="images/seatingarea.gif"></center>
      <table width="90%" cellpadding="3">
      <tr>
        <td><font color="#CCCCCC"><b>New Seating Area</b></font><table width="100%" height="5" cellspacing="0" cellpadding="0"><tr><td><img src="images/line.gif"></td></tr></table>
</td>
      </tr>
      <tr>
        <td height="15"><font color="#CCCCCC">With this new addition people will be able to get off there feet for a bit, kick back and relax. Increases occupnacy by <b>15,000 people.</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$1,000,000</font> cash<td align="right"><input type="submit" class="submit" name="ren3" value="Build"> &nbsp; &nbsp;<?=$ren3?></td></tr></table></td>

      </tr>
      </table>


<table width="100%" height="20" cellspacing="0" cellpadding="0"><tr><td align="center"></td></tr></table>

    <center><img src="images/size1.gif"></center>
      <table width="90%" cellpadding="3">
      <tr>
        <td><font color="#CCCCCC"><b>Increase size</b></font><table width="100%" height="5" cellspacing="0" cellpadding="0"><tr><td><img src="images/line.gif"></td></tr></table>
</td>
      </tr>
      <tr>
        <td height="15"><font color="#CCCCCC">Increases the overall size of your club giving you a increase in occupancy by <b>50,000 people</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$10,000,000</font> cash<td align="right"><input type="submit" class="submit" name="ren4" value="Build"> &nbsp; &nbsp;<?=$ren4?></td></tr></table></td>

      </tr>
      </table>

<table width="100%" height="20" cellspacing="0" cellpadding="0"><tr><td align="center"></td></tr></table>

    <center><img src="images/2ndfloor.gif"></center>
      <table width="90%" cellpadding="3">
      <tr>
        <td><font color="#CCCCCC"><b>Add a 2nd floor</b></font><table width="100%" height="5" cellspacing="0" cellpadding="0"><tr><td><img src="images/line.gif"></td></tr></table>
</td>
      </tr>
      <tr>
        <td height="15"><font color="#CCCCCC">Club getting a bit crouded? build on a 2nd floor and let people space out a bit, no one likes a crouded club. Increases occupancy by <b>100,000 people</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$50,000,000</font> cash<td align="right"><input type="submit" class="submit" name="ren5" value="Build"> &nbsp; &nbsp;<?=$ren5?></td></tr></table></td>

<table width="100%" height="20" cellspacing="0" cellpadding="0"><tr><td align="center"></td></tr></table>

    <center><img src="images/size2.gif"></center>
      <table width="90%" cellpadding="3">
      <tr>
        <td><font color="#CCCCCC"><b>Increase size</b></font><table width="100%" height="5" cellspacing="0" cellpadding="0"><tr><td><img src="images/line.gif"></td></tr></table>
</td>
      </tr>
      <tr>
        <td height="15"><font color="#CCCCCC">If you still need to increase your club occupancy u must be doin really good! keep up the good work! this renovation can be repeated as many times as nessesary unlike the prevous renovations. each time your occupancy will increase by <b>200,000 people</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$100,000,000</font> cash<td align="right"><input type="submit" class="submit" name="ren6" value="Build"> </td></tr></table></td>

<table width="100%" height="20" cellspacing="0" cellpadding="0"><tr><td align="center"></td></tr></table>

      </tr>
      <tr>
        <td height="15"><font color="#CCCCCC">So you have hit the best of the best and u want something thats gonna get u somewhere fast, this is what ur gonna need. this renovation can be repeated as many times as nessesary, each time your occupancy will increase by <b>1,500,000 people</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$500,000,000</font> cash<td align="right"><input type="submit" class="submit" name="ren7" value="Build"></td></tr></table></td>
      </tr>
      <tr>
        <td height="15"><font color="#CCCCCC">So your probably so high you have outranked the rest of those noobs, take it easy and grab a few of these if needed. this renovation can be repeated as many times as nessesary, each time your occupancy will increase by <b>8,000,000 people</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$2,000,000,000</font> cash
        <td align="right"><input type="submit" class="submit" name="ren8" value="Build"></td></tr></table></td>

      </tr>

          <tr>
        <td height="15"><font color="#CCCCCC">So your probably so high you have outranked the rest of those noobs, take it easy and grab a few of these if needed. this renovation can be repeated as many times as nessesary, each time your occupancy will increase by <b>32,000,000 people</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$10,000,000,000</font> cash
        <td align="right"><input type="submit" class="submit" name="ren9" value="Build"></td></tr></table></td>

      </tr>

          <tr>
        <td height="15"><font color="#CCCCCC">So your probably so high you have outranked the rest of those noobs, take it easy and grab a few of these if needed. this renovation can be repeated as many times as nessesary, each time your occupancy will increase by <b>128,000,000 people</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$50,000,000,000</font> cash
        <td align="right"><input type="submit" class="submit" name="ren10" value="Build"></td></tr></table></td>

      </tr>

          <tr>
        <td height="15"><font color="#CCCCCC">So your probably so high you have outranked the rest of those noobs, take it easy and grab a few of these if needed. this renovation can be repeated as many times as nessesary, each time your occupancy will increase by <b>256,000,000 people</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$100,000,000,000</font> cash
        <td align="right"><input type="submit" class="submit" name="ren11" value="Build"></td></tr></table></td>


      </tr>

          <tr>
        <td height="15"><font color="#CCCCCC">So your probably so high you have outranked the rest of those noobs, take it easy and grab a few of these if needed. this renovation can be repeated as many times as nessesary, each time your occupancy will increase by <b>512,000,000 people</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$200,000,000,000</font> cash
        <td align="right"><input type="submit" class="submit" name="ren12" value="Build"></td></tr></table></td>

      </tr>

          <tr>
        <td height="15"><font color="#CCCCCC">So your probably so high you have outranked the rest of those noobs, take it easy and grab a few of these if needed. this renovation can be repeated as many times as nessesary, each time your occupancy will increase by <b>1,024,000,000 people</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$400,000,000,000</font> cash
        <td align="right"><input type="submit" class="submit" name="ren13" value="Build"></td></tr></table></td>

      </tr>

          <tr>
        <td height="15"><font color="#CCCCCC">So your probably so high you have outranked the rest of those noobs, take it easy and grab a few of these if needed. this renovation can be repeated as many times as nessesary, each time your occupancy will increase by <b>2,048,000,000 people</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$800,000,000,000</font> cash
        <td align="right"><input type="submit" class="submit" name="ren14" value="Build"></td></tr></table></td>

      </tr>

          <tr>
        <td height="15"><font color="#CCCCCC">So your probably so high you have outranked the rest of those noobs, take it easy and grab a few of these if needed. this renovation can be repeated as many times as nessesary, each time your occupancy will increase by <b>4,096,000,000 people</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$1,600,000,000,000</font> cash
        <td align="right"><input type="submit" class="submit" name="ren15" value="Build"></td></tr></table></td>

      </tr>

          <tr>
        <td height="15"><font color="#CCCCCC">So your probably so high you have outranked the rest of those noobs, take it easy and grab a few of these if needed. this renovation can be repeated as many times as nessesary, each time your occupancy will increase by <b>8,192,000,000 people</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$3,200,000,000,000</font> cash
        <td align="right"><input type="submit" class="submit" name="ren16" value="Build"></td></tr></table></td>

      </tr>

          <tr>
        <td height="15"><font color="#CCCCCC">So your probably so high you have outranked the rest of those noobs, take it easy and grab a few of these if needed. this renovation can be repeated as many times as nessesary, each time your occupancy will increase by <b>27,033,600,000 people</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$10,000,000,000,000</font> cash
        <td align="right"><input type="submit" class="submit" name="ren17" value="Build"></td></tr></table></td>

      </tr>

          <tr>
        <td height="15"><font color="#CCCCCC">So your probably so high you have outranked the rest of those noobs, take it easy and grab a few of these if needed. this renovation can be repeated as many times as nessesary, each time your occupancy will increase by <b>2,703,360,000,000 people</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$1,000,000,000,000,000</font> cash
        <td align="right"><input type="submit" class="submit" name="ren18" value="Build"></td></tr></table></td>

      </tr>

          <tr>
        <td height="15"><font color="#CCCCCC">So your probably so high you have outranked the rest of those noobs, take it easy and grab a few of these if needed. this renovation can be repeated as many times as nessesary, each time your occupancy will increase by <b>2,703,360,000,000,000 people</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$1,000,000,000,000,000,000</font> cash
        <td align="right"><input type="submit" class="submit" name="ren19" value="Build"></td></tr></table></td>

      </tr>

          <tr>
        <td height="15"><font color="#CCCCCC">So your probably so high you have outranked the rest of those noobs, take it easy and grab a few of these if needed. this renovation can be repeated as many times as nessesary, each time your occupancy will increase by <b>2,703,360,000,000,000,000 people</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$1,000,000,000,000,000,000,000</font> cash
        <td align="right"><input type="submit" class="submit" name="ren20" value="Build"></td></tr></table></td>

      </tr>

          <tr>
        <td height="15"><font color="#CCCCCC">So your probably so high you have outranked the rest of those noobs, take it easy and grab a few of these if needed. this renovation can be repeated as many times as nessesary, each time your occupancy will increase by <b>27,033,600,000,000,000,000 people</b></td>
      </tr>
      <tr>
        <td><table width="100%" cellspacing="0" cellpadding="0"><tr><td><font color="#ffcc00">$10,000,000,000,000,000,000,000</font> cash
        <td align="right"><input type="submit" class="submit" name="ren21" value="Build"></td></tr></table></td>



      </tr>
      </table>
<br>
<br>

</form>
<br>
<br>
<?=bar($id)?>
<?
gamefooter();
?>

Thanks
steve
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.