Jump to content
MakeWebGames

Houses By Richard


Scorpio

Recommended Posts

Richards House Mod works fine but theres one problem. It doesn't take away money from the person who rented the house out.

It only gives money to the person who giving out the rent.

 

I fixed bit of the mod.

And Anonymous I believe fixed it a lot by the forums errors.

 

<?php
include_once('globals.php');







switch ($_GET['page'])
{
  case 'move': move_house(); break;
  case 'move_out': move_out(); break;
  case 'estate': estate_agent(); break;
  case 'sell': sell_house(); break;
  case 'rentals': rental_market(); break;
  case 'rent': rent_house(); break;
  case 'upgrade': upgrade_house(); break;
  case 'rented': view_rentals(); break;
  default: houses_index(); break;
}

function houses_index()







{
  global $ir;
  $houses = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) LEFT JOIN `users` ON (`userid` = `uhouseOwner`) WHERE (`uhouseOwner` = '%u' || `uhouseTenant` = '%u') AND `uhouseId` != '%d'", $ir['userid'], $ir['userid'], $ir['house']));
  echo '<table width="600">
  <tr>

                                      Your Houses


  <td width="50%" align="center"><a href="houses.php?page=estate">Estate Agent</a></td>
  <td width="50%" align="center"><a href="houses.php?page=rentals">Rent A House</a></td>
  </tr>
  </table>

';
  if($ir['house'])
   {
     $fetch = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) WHERE (`uhouseId` = '%u')", $ir['house']));
     $h = mysql_fetch_assoc($fetch);
     echo '<b>Current House:</b>








     <table width="300" class="table">
     <tr>
     <th width="50%">Current House</th>
     <th width="50%">Move Out</th>
     </tr>
     <tr>
     <td>'.stripslashes($h['hNAME']).'</td>
     <td><a href="houses.php?page=move_out">Move Out</a></td>
     </tr>
     </table>

';
   }
  echo '<table width="700" class="table">
  <tr>
  <th width="25%">House Name</th>
  <th width="25%">Owner</th>
  <th width="25%">Will Value</th>
  <th width="25%">Manage</th>
  </tr>';
  if(!mysql_num_rows($houses))
   {
     echo '<tr>
     <td colspan="5">You have no houses at this time, purchase one at the estate agent.</td>
     </tr>';
   }
  while($r = mysql_fetch_assoc($houses))
   {
     echo '<tr>
     <td>'.stripslashes($r['hNAME']).'</td>
     <td><a href="viewuser.php?u='.$r['userid'].'">'.stripslashes($r['username']).'</a></td>
     <td>'.number_format($r['uhouseMood']).' Will Bar</td><br />
    <td>


       <a href="houses.php?page=move&id='.$r['uhouseId'].'">Move In</a><br />
       <a href="houses.php?page=sell&id='.$r['uhouseId'].'">Sell House</a><br />
       <a href="houses.php?page=rent&id='.$r['uhouseId'].'">Rent House</a><br />
       <a href="houses.php?page=upgrade&id='.$r['uhouseId'].'">Add Upgrades</a></td>
     </tr>';
   }
  echo '</table>';
}
function move_house()
{
  global $ir;
  $fetch = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) LEFT JOIN `users` ON (`userid` = `uhouseOwner`) WHERE (`uhouseId` = '%u')", abs((int) $_GET['id'])));
  if(!isset($_GET['id']))
   {
     echo 'You did not select a house to move in to.';
   }
  else if(!mysql_num_rows($fetch))
   {
     echo 'You cannot move into a non-existant house.';
   }
  else
   {
     $r = mysql_fetch_assoc($fetch);
     if($r['uhouseOwner'] != $ir['userid'] AND $r['uhouseTenant'] != $ir['userid'])
      {
        echo 'You are not permitted to move into this house.';
      }
     else if($r['uhouseRTime'] AND $r['uhouseOwner'] == $ir['userid'])
      {
        echo 'You cannot move into a house while it is being rented to another member.';
      }
     else
      {
        mysql_query(sprintf("UPDATE `users` SET `house` = '%d', `maxwill` = '%d' WHERE (`userid` = '%u')", abs((int) $_GET['id']), $r['uhouseMood'], $ir['userid']));
        echo 'You have moved into the '.stripslashes($r['hNAME']).', You now have a maximum Will Bar of '.number_format($r['uhouseMood']).'.';
      }
   }
}
function move_out()
{
  global $ir;
  $fetch = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) LEFT JOIN `users` ON (`userid` = `uhouseOwner`) WHERE (`uhouseId` = '%u')", $ir['house']));
  if(!mysql_num_rows($fetch))
   {
     echo 'You cannot move out of a non-existant house.';
   }
  else
   {
     $r = mysql_fetch_assoc($fetch);
     if($r['uhouseOwner'] != $ir['userid'] AND $r['uhouseTenant'] != $ir['userid'])
      {
        echo 'You are not permitted to move out of this house.';
      }
     else
      {
        mysql_query(sprintf("UPDATE `users` SET `house` = '0', `maxwill` = '100' WHERE (`userid` = '%u')", $ir['userid']));
        echo 'You have moved out of the '.stripslashes($r['hNAME']).', You now have a maximum Will Bar of 100.';
      }
   }
}
function sell_house()
{
  global $ir;
  $fetch = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) LEFT JOIN `users` ON (`userid` = `uhouseOwner`) WHERE (`uhouseOwner` = '%u') AND (`uhouseId` = '%u')", $ir['userid'], abs((int) $_GET['id'])));
  if(!isset($_GET['id']))
   {
     echo 'You did not select a house to sell.';
   }
  else if(!mysql_num_rows($fetch))
   {
     echo 'You cannot attempt to sell a non-existant house.';
   }
  else
   {
     $r = mysql_fetch_assoc($fetch);
     if($r['uhouseOwner'] != $ir['userid'])
      {
        echo 'You do not own this house, so don\'t attempt to sell it.';
      }
     else if($r['uhouseTenant'])
      {
        echo 'You cannot sell a house while it is being rented to another member.';
      }
     else
      {
        mysql_query(sprintf("UPDATE `users` SET `money` = `money` + '%d' WHERE (`userid` = '%u')", $r['hPRICE'], $ir['userid']));
        mysql_query(sprintf("DELETE FROM `owned_houses` WHERE (`uhouseId` = '%u')", abs((int) $_GET['id'])));
        echo 'You have sold the '.stripslashes($r['hNAME']).' for a total of $'.number_format($r['hPRICE']).'.';
      }
   }
}
function estate_agent()
{
  global $ir;
  if(isset($_GET['id']))
   {
     $house = mysql_query(sprintf("SELECT * FROM `houses` WHERE (`hID` = '%u')", abs((int) $_GET['id'])));
     $r = mysql_fetch_assoc($house);
     if(!mysql_num_rows($house))
      {
        echo 'You cannot attempt to purchase a non-existant house.';
      }
     else if($ir['money'] < $r['hPRICE'])
      {
        echo 'You cannot afford to purchase this house right now, come back another time.';
      }
     else
      {
        mysql_query(sprintf("UPDATE `users` SET `money` = `money` - '%d' WHERE (`userid` = '%u')", $r['hPRICE'], $ir['userid']));
        mysql_query(sprintf("INSERT INTO `owned_houses` (`uhouseId`, `uhouseOwner`, `uhouseHouse`, `uhouseMood`) VALUES ('NULL','%u', '%d', '%d')", $ir['userid'], $r['hID'], $r['hWILL']));
        echo 'You have purchased the '.stripslashes($r['hNAME']).' for a total of $'.number_format($r['hPRICE']).'!';
      }
   }
  else
   {
     $houses = mysql_query(sprintf("SELECT * FROM `houses` ORDER BY `hWILL` ASC"));
     echo '<table width="600" class="table">
     <tr>
     <th>House Name</th>
     <th>Will Value</th>
     <th>Cost</th>
     </tr>';
     while($r = mysql_fetch_assoc($houses))
      {
        echo '<tr>
        <td><a href="houses.php?page=estate&id='.$r['hID'].'">'.stripslashes($r['hNAME']).'</a></td>
        <td>'.number_format($r['hWILL']).' Will Bar</td>
        <td>$'.number_format($r['hPRICE']).'</td>
        </tr>';
      }
     print '</table>';
   }
}
function rental_market()
{
  global $ir;
  if(isset($_GET['id']))
   {
     $house = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) LEFT JOIN `users` ON (`userid` = `uhouseOwner`) WHERE (`uhouseId` = '%u')", abs((int) $_GET['id'])));
     $r = mysql_fetch_assoc($house);
     if(!mysql_num_rows($house))
      {
        echo 'You cannot rent a house that does not exist.';
      }
     else if($r['uhouseOwner'] == $ir['userid'])
      {
        echo 'You own this house at this time, You cannot rent it aswell.';
      }
      else if ($r['uhouseRent'] > $ir['money'])
      {
       echo "You do not have enough money to rent the house out";
       }
   else
   {
mysql_query(sprintf("UPDATE `users` SET `money` = `money` - '%d' WHERE `userid` = '%u'", $r['uhouseTenant'], $r['uhouseRent']));

  mysql_query(sprintf("UPDATE `users` SET `money` = `money` + '%d' WHERE `userid` = '%u'", $r['uhouseRent'], $r['uhouseOwner']));


        mysql_query(sprintf("UPDATE `owned_houses` SET `uhouseTenant` = '%d' WHERE (`uhouseId` = '%u')", $ir['userid'], abs((int) $_GET['id'])));
        echo 'You are now renting the '.stripslashes($r['hNAME']).' for a total of $'.number_format($r['uhouseRent']).' each night!';

event_add($r['uhouseOwner'],"".stripslashes($ir['username'])." has rented your {$r['hNAME']} for ".money_formatter($r['uhouseRent'])." each night!",$c);


      }
   }
  else
   {
     $houses = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) LEFT JOIN `users` ON (`userid` = `uhouseOwner`) WHERE `uhouseTenant` = '0' AND `uhouseRent` > '0' ORDER BY `uhouseRent` ASC"));
     echo '<table width="600" class="table">
     <tr>
     <th>House name</th>
     <th>Owner</th>
     <th>Will value</th>
     <th>Cost each night</th>
     <th>Rental time</th>
     <th>Manage</th>
     </tr>';
     while($r = mysql_fetch_assoc($houses))
      {
        echo '<tr>
        <td>'.stripslashes($r['hNAME']).'</td>
        <td><a href="viewuser.php?u='.$r['userid'].'">'.stripslashes($r['username']).'</a></td>
        <td>'.number_format($r['uhouseMood']).' will bar</td>
        <td>$'.number_format($r['uhouseRent']).'</td>
        <td>'.number_format($r['uhouseRTime']).' nights</td>
        <td><a href="houses.php?page=rentals&id='.$r['uhouseId'].'">Rent house</a></td>
        </tr>';
      }
     print '</table>';
   }
}
function rent_house()
{
  global $ir;
  $fetch = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) LEFT JOIN `users` ON (`userid` = `uhouseOwner`) WHERE (`uhouseOwner` = '%u') AND (`uhouseId` = '%u')", $ir['userid'], abs((int) $_GET['id'])));
  if(!isset($_GET['id']))
   {
     echo 'You did not select a house to rent out to members.';
   }
  else if(!mysql_num_rows($fetch))
   {
     echo 'You cannot attempt to rent out a non-existant house.';
   }
  else
   {
     $r = mysql_fetch_assoc($fetch);
     if($r['uhouseOwner'] != $ir['userid'])
      {
        echo 'You do not own this house, so don\'t attempt to rent it out to people.';
      }
     else if($r['uhouseTenant'])
      {
        echo 'You cannot rent out a house while it is being rented to another member.';
      }
     else
      {
        if(isset($_POST['time']) AND isset($_POST['cost']))
         {
           mysql_query(sprintf("UPDATE `owned_houses` SET `uhouseRent` = '%d', `uhouseRTime` = '%d' WHERE (`uhouseId` = '%u')", abs((int) $_POST['cost']), abs((int) $_POST['time']), abs((int) $_GET['id'])));
           echo 'You have added the '.stripslashes($r['hNAME']).' the the rental market at a cost of $'.number_format($_POST['cost']).' per night.';
         }
        else
         {
           echo '<form action="houses.php?page=rent&id='.$_GET['id'].'" method="post">
           <table width="600">
           <tr>
           <td><b>Amount Of Nights:</b></td>
           <td><input type="text" name="time" value="30" /></td>
           </tr>
           <tr>
           <td><b>Cost Per Nights:</b></td>
           <td><input type="text" name="cost" value="250" /></td>
           </tr>
           <tr>
           <td colspan="2" align="center"><input type="submit" value="Submit rental" /></td>
           </tr>
           </table>
           </form>';
         }
      }
   }
}

function upgrade_house()
{
  global $ir;
  if(!isset($_POST['id']))
   {
     if(isset($_GET['id']))
      {
        echo '<form action="houses.php?page=upgrade&id='.$_GET['id'].'" method="post" name="upgrades">
        <table class="table" width="600">
        <tr>
        <th width="45%">Upgrade name</th>
        <th width="25%">Will gain</th>
        <th width="25%">Cost</th>
        <th width="5%"></th>
        </tr>';
        $fetch = mysql_query("SELECT * FROM `house_upgrades` ORDER BY `upgradeMood` ASC");
        while ($r = mysql_fetch_assoc($fetch))
         {
           echo '<tr>
           <td>'.stripslashes($r['upgradeName']).'</td>
           <td>'.number_format($r['upgradeMood']).' mood</td>
           <td>$'.number_format($r['upgradeCost']).'</td>
           <td><input type="radio" name="id" value="'.$r['upgradeId'].'" onClick="document.upgrades.submit();" /></td>
           </tr>';
         }
        echo '</table>';
      }
     else
      {
        echo 'You did not select a house to add upgrades to.';
      }
   }
  else
   {
     $upgrade = mysql_query(sprintf("SELECT * FROM `house_upgrades` WHERE `upgradeId` = '%u'", abs((int) $_POST['id'])));
     if(!mysql_num_rows($upgrade))
      {
        echo 'This upgrade does not exist at this time, if this problem continues report it to staff.';
      }
     else if(!isset($_GET['id']))
      {
        echo 'You did not select a house to add upgrades to.';
      }
     else
      {
        $house = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) LEFT JOIN `users` ON (`userid` = `uhouseOwner`) WHERE (`uhouseId` = '%u')", abs((int) $_GET['id'])));
        $h = mysql_fetch_assoc($house);
        $r = mysql_fetch_array($upgrade);
        if(!mysql_num_rows($house))
         {
           echo 'You cannot add upgrades to a non-existant house.';
         }
        else if($h['uhouseOwner'] != $ir['userid'])
         {
           echo 'You are not permitted to add upgrades to this house.';
         }
        else if($ir['money'] < $r['upgradeCost'])
         {
           echo 'You do not have enough cash to purchase this upgrade right now.';
         }
        else
         {
           $check = mysql_query(sprintf("SELECT * FROM `owned_upgrades` WHERE (`ownupHouse` = '%u') AND (`ownupUpgrade` = '%d')", abs((int) $_GET['id']), abs((int) $_POST['id'])));
           if(mysql_num_rows($check))
            {
              echo 'This house has this upgrade at this time, it cannot be bought again.';
            }
           else
            {
              mysql_query(sprintf("UPDATE `users` SET `money` = `money` - '%d' WHERE `userid` = '%u'", $r['upgradeCost'], $ir['userid']));
              mysql_query(sprintf("UPDATE `owned_houses` SET `uhouseMood` = `uhouseMood` + '%d' WHERE `uhouseId` = '%u'", $r['upgradeMood'], abs((int) $_GET['id'])));
              mysql_query(sprintf("INSERT INTO `owned_upgrades` (`ownupId`, `ownupHouse`, `ownupUpgrade`) VALUES ('NULL','%u', '%d')", abs((int) $_GET['id']), abs((int) $_POST['id'])));
              echo 'You have purchased the '.stripslashes($r['upgradeName']).' for $'.number_format($r['upgradeCost']).'.';
            }
         }
      }
   }
}
$h->endpage();
?>
Edited by Scorpio
Link to comment
Share on other sites

I have the house mod from richard, theres alot of bugs.

Example with the rental market. When its rental time 0 it wont remove. Or the owner of the house cant remove the house from rent. Someon help me out please

 

<?php
include_once('globals.php');

if($ir['user_level'] == 1){
echo "Get out of here";
$h->endpage();
exit;
}





switch ($_GET['page'])
{
  case 'move': move_house(); break;
  case 'move_out': move_out(); break;
  case 'estate': estate_agent(); break;
  case 'sell': sell_house(); break;
  case 'rentals': rental_market(); break;
  case 'rent': rent_house(); break;
  case 'upgrade': upgrade_house(); break;
  case 'rented': view_rentals(); break;
  default: houses_index(); break;
}

function houses_index()







{
  global $ir;
  $houses = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) LEFT JOIN `users` ON (`userid` = `uhouseOwner`) WHERE (`uhouseOwner` = '%u' || `uhouseTenant` = '%u') AND `uhouseId` != '%d'", $ir['userid'], $ir['userid'], $ir['house']));
  echo '<table width="600">
  <tr>

                                      Your Houses


  <td width="50%" align="center"><a href="houses.php?page=estate">Estate agent</a></td>
  <td width="50%" align="center"><a href="houses.php?page=rentals">Rent a house</a></td>
  </tr>
  </table>

';
  if($ir['house'])
   {
     $fetch = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) WHERE (`uhouseId` = '%u')", $ir['house']));
     $h = mysql_fetch_assoc($fetch);
     echo '<b>Current house:</b>








     <table width="300" class="table">
     <tr>
     <th width="50%">Current house</th>
     <th width="50%">Move out</th>
     </tr>
     <tr>
     <td>'.stripslashes($h['hNAME']).'</td>
     <td><a href="houses.php?page=move_out">Move out</a></td>
     </tr>
     </table>

';
   }
  echo '<table width="600" class="table">
  <tr>
  <th width="25%">House Name</th>
  <th width="25%">Owner</th>
  <th width="25%">Will value</th>
  <th width="25%">Manage</th>
  </tr>';
  if(!mysql_num_rows($houses))
   {
     echo '<tr>
     <td colspan="5">You have no houses at this time, purchase one at the estate agent\'s.</td>
     </tr>';
   }
  while($r = mysql_fetch_assoc($houses))
   {
     echo '<tr>
     <td>'.stripslashes($r['hNAME']).'</td>
     <td><a href="viewuser.php?u='.$r['userid'].'">'.stripslashes($r['username']).'</a></td>
     <td>'.number_format($r['uhouseMood']).' will bar</td>
     <td><a href="houses.php?page=move&id='.$r['uhouseId'].'">Move in</a><br />

     <a href="houses.php?page=sell&id='.$r['uhouseId'].'">Sell house</a><br />

     <a href="houses.php?page=rent&id='.$r['uhouseId'].'">Rent house</a><br />

     <a href="houses.php?page=upgrade&id='.$r['uhouseId'].'">Add upgrades</a></td><br />
     </tr>';
   }
  echo '</table>';
}
function move_house()
{
  global $ir;
  $fetch = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) LEFT JOIN `users` ON (`userid` = `uhouseOwner`) WHERE (`uhouseId` = '%u')", abs((int) $_GET['id'])));
  if(!isset($_GET['id']))
   {
     echo 'You did not select a house to move in to.';
   }
  else if(!mysql_num_rows($fetch))
   {
     echo 'You cannot move into a non-existant house.';
   }
  else
   {
     $r = mysql_fetch_assoc($fetch);
     if($r['uhouseOwner'] != $ir['userid'] AND $r['uhouseTenant'] != $ir['userid'])
      {
        echo 'You are not permitted to move into this house.';
      }
     else if($r['uhouseRTime'] AND $r['uhouseOwner'] == $ir['userid'])
      {
        echo 'You cannot move into a house while it is being rented to another member.';
      }
     else
      {
        mysql_query(sprintf("UPDATE `users` SET `house` = '%d', `maxwill` = '%d' WHERE (`userid` = '%u')", abs((int) $_GET['id']), $r['uhouseMood'], $ir['userid']));
        echo 'You have moved into the '.stripslashes($r['hNAME']).', You now have a maximum will bar of '.number_format($r['uhouseMood']).'.';
      }
   }
}
function move_out()
{
  global $ir;
  $fetch = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) LEFT JOIN `users` ON (`userid` = `uhouseOwner`) WHERE (`uhouseId` = '%u')", $ir['house']));
  if(!mysql_num_rows($fetch))
   {
     echo 'You cannot move out of a non-existant house.';
   }
  else
   {
     $r = mysql_fetch_assoc($fetch);
     if($r['uhouseOwner'] != $ir['userid'] AND $r['uhouseTenant'] != $ir['userid'])
      {
        echo 'You are not permitted to move out of this house.';
      }
     else
      {
        mysql_query(sprintf("UPDATE `users` SET `house` = '0', `maxwill` = '100' WHERE (`userid` = '%u')", $ir['userid']));
        echo 'You have moved out of the '.stripslashes($r['hNAME']).', You now have a maximum will bar of 100.';
      }
   }
}
function sell_house()
{
  global $ir;
  $fetch = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) LEFT JOIN `users` ON (`userid` = `uhouseOwner`) WHERE (`uhouseOwner` = '%u') AND (`uhouseId` = '%u')", $ir['userid'], abs((int) $_GET['id'])));
  if(!isset($_GET['id']))
   {
     echo 'You did not select a house to sell.';
   }
  else if(!mysql_num_rows($fetch))
   {
     echo 'You cannot attempt to sell a non-existant house.';
   }
  else
   {
     $r = mysql_fetch_assoc($fetch);
     if($r['uhouseOwner'] != $ir['userid'])
      {
        echo 'You do not own this house, so don\'t attempt to sell it.';
      }
     else if($r['uhouseTenant'])
      {
        echo 'You cannot sell a house while it is being rented to another member.';
      }
     else
      {
        mysql_query(sprintf("UPDATE `users` SET `money` = `money` + '%d' WHERE (`userid` = '%u')", $r['hPRICE'], $ir['userid']));
        mysql_query(sprintf("DELETE FROM `owned_houses` WHERE (`uhouseId` = '%u')", abs((int) $_GET['id'])));
        echo 'You have sold the '.stripslashes($r['hNAME']).' for a total of $'.number_format($r['hPRICE']).'.';
      }
   }
}
function estate_agent()
{
  global $ir;
  if(isset($_GET['id']))
   {
     $house = mysql_query(sprintf("SELECT * FROM `houses` WHERE (`hID` = '%u')", abs((int) $_GET['id'])));
     $r = mysql_fetch_assoc($house);
     if(!mysql_num_rows($house))
      {
        echo 'You cannot attempt to purchase a non-existant house.';
      }
     else if($ir['money'] < $r['hPRICE'])
      {
        echo 'You cannot afford to purchase this house right now, come back another time.';
      }
     else
      {
        mysql_query(sprintf("UPDATE `users` SET `money` = `money` - '%d' WHERE (`userid` = '%u')", $r['hPRICE'], $ir['userid']));
        mysql_query(sprintf("INSERT INTO `owned_houses` (`uhouseId`, `uhouseOwner`, `uhouseHouse`, `uhouseMood`) VALUES ('NULL','%u', '%d', '%d')", $ir['userid'], $r['hID'], $r['hWILL']));
        echo 'You have purchased the '.stripslashes($r['hNAME']).' for a total of $'.number_format($r['hPRICE']).'!';
      }
   }
  else
   {
     $houses = mysql_query(sprintf("SELECT * FROM `houses` ORDER BY `hWILL` ASC"));
     echo '<table width="600" class="table">
     <tr>
     <th>House Name</th>
     <th>Will Value</th>
     <th>Cost</th>
     </tr>';
     while($r = mysql_fetch_assoc($houses))
      {
        echo '<tr>
        <td><a href="houses.php?page=estate&id='.$r['hID'].'">'.stripslashes($r['hNAME']).'</a></td>
        <td>'.number_format($r['hWILL']).' Will Bar</td>
        <td>$'.number_format($r['hPRICE']).'</td>
        </tr>';
      }
     print '</table>';
   }
}
function rental_market()
{
  global $ir;
  if(isset($_GET['id']))
   {
     $house = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) LEFT JOIN `users` ON (`userid` = `uhouseOwner`) WHERE (`uhouseId` = '%u')", abs((int) $_GET['id'])));
     $r = mysql_fetch_assoc($house);
     if(!mysql_num_rows($house))
      {
        echo 'You cannot rent a house that does not exist.';
      }
     else if($r['uhouseOwner'] == $ir['userid'])
      {
        echo 'You own this house at this time, You cannot rent it aswell.';
      }
     else
      {

mysql_query(sprintf("UPDATE `users` SET `money` = `money` - '%d' WHERE `userid` = '%u'", $r['uhouseRent'], $r['uhouseTenant']));
  mysql_query(sprintf("UPDATE `users` SET `money` = `money` + '%d' WHERE `userid` = '%u'", $r['uhouseRent'], $r['uhouseOwner']));


        mysql_query(sprintf("UPDATE `owned_houses` SET `uhouseTenant` = '%d' WHERE (`uhouseId` = '%u')", $ir['userid'], abs((int) $_GET['id'])));
        echo 'You are now renting the '.stripslashes($r['hNAME']).' for a total of $'.number_format($r['uhouseRent']).' each night!';

      }
   }
  else
   {
     $houses = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) LEFT JOIN `users` ON (`userid` = `uhouseOwner`) WHERE `uhouseTenant` = '0' AND `uhouseRent` > '0' ORDER BY `uhouseRent` ASC"));
     echo '<table width="600" class="table">
     <tr>
     <th>House name</th>
     <th>Owner</th>
     <th>Will value</th>
     <th>Cost each night</th>
     <th>Rental time</th>
     <th>Manage</th>
     </tr>';
     while($r = mysql_fetch_assoc($houses))
      {
        echo '<tr>
        <td>'.stripslashes($r['hNAME']).'</td>
        <td><a href="viewuser.php?u='.$r['userid'].'">'.stripslashes($r['username']).'</a></td>
        <td>'.number_format($r['uhouseMood']).' will bar</td>
        <td>$'.number_format($r['uhouseRent']).'</td>
        <td>'.number_format($r['uhouseRTime']).' nights</td>
        <td><a href="houses.php?page=rentals&id='.$r['uhouseId'].'">Rent house</a></td>
        </tr>';
      }
     print '</table>';
   }
}
function rent_house()
{
  global $ir;
  $fetch = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) LEFT JOIN `users` ON (`userid` = `uhouseOwner`) WHERE (`uhouseOwner` = '%u') AND (`uhouseId` = '%u')", $ir['userid'], abs((int) $_GET['id'])));
  if(!isset($_GET['id']))
   {
     echo 'You did not select a house to rent out to members.';
   }
  else if(!mysql_num_rows($fetch))
   {
     echo 'You cannot attempt to rent out a non-existant house.';
   }
  else
   {
     $r = mysql_fetch_assoc($fetch);
     if($r['uhouseOwner'] != $ir['userid'])
      {
        echo 'You do not own this house, so don\'t attempt to rent it out to people.';
      }
     else if($r['uhouseTenant'])
      {
        echo 'You cannot rent out a house while it is being rented to another member.';
      }
     else
      {
        if(isset($_POST['time']) AND isset($_POST['cost']))
         {
           mysql_query(sprintf("UPDATE `owned_houses` SET `uhouseRent` = '%d', `uhouseRTime` = '%d' WHERE (`uhouseId` = '%u')", abs((int) $_POST['cost']), abs((int) $_POST['time']), abs((int) $_GET['id'])));
           echo 'You have added the '.stripslashes($r['hNAME']).' the the rental market at a cost of $'.number_format($_POST['cost']).' per night.';
         }
        else
         {
           echo '<form action="houses.php?page=rent&id='.$_GET['id'].'" method="post">
           <table width="600">
           <tr>
           <td><b>Amount Of Nights:</b></td>
           <td><input type="text" name="time" value="30" /></td>
           </tr>
           <tr>
           <td><b>Cost Per Nights:</b></td>
           <td><input type="text" name="cost" value="250" /></td>
           </tr>
           <tr>
           <td colspan="2" align="center"><input type="submit" value="Submit rental" /></td>
           </tr>
           </table>
           </form>';
         }
      }
   }
}

function upgrade_house()
{
  global $ir;
  if(!isset($_POST['id']))
   {
     if(isset($_GET['id']))
      {
        echo '<form action="houses.php?page=upgrade&id='.$_GET['id'].'" method="post" name="upgrades">
        <table class="table" width="600">
        <tr>
        <th width="45%">Upgrade name</th>
        <th width="25%">Will gain</th>
        <th width="25%">Cost</th>
        <th width="5%"></th>
        </tr>';
        $fetch = mysql_query("SELECT * FROM `house_upgrades` ORDER BY `upgradeMood` ASC");
        while ($r = mysql_fetch_assoc($fetch))
         {
           echo '<tr>
           <td>'.stripslashes($r['upgradeName']).'</td>
           <td>'.number_format($r['upgradeMood']).' mood</td>
           <td>$'.number_format($r['upgradeCost']).'</td>
           <td><input type="radio" name="id" value="'.$r['upgradeId'].'" onClick="document.upgrades.submit();" /></td>
           </tr>';
         }
        echo '</table>';
      }
     else
      {
        echo 'You did not select a house to add upgrades to.';
      }
   }
  else
   {
     $upgrade = mysql_query(sprintf("SELECT * FROM `house_upgrades` WHERE `upgradeId` = '%u'", abs((int) $_POST['id'])));
     if(!mysql_num_rows($upgrade))
      {
        echo 'This upgrade does not exist at this time, if this problem continues report it to staff.';
      }
     else if(!isset($_GET['id']))
      {
        echo 'You did not select a house to add upgrades to.';
      }
     else
      {
        $house = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) LEFT JOIN `users` ON (`userid` = `uhouseOwner`) WHERE (`uhouseId` = '%u')", abs((int) $_GET['id'])));
        $h = mysql_fetch_assoc($house);
        $r = mysql_fetch_array($upgrade);
        if(!mysql_num_rows($house))
         {
           echo 'You cannot add upgrades to a non-existant house.';
         }
        else if($h['uhouseOwner'] != $ir['userid'])
         {
           echo 'You are not permitted to add upgrades to this house.';
         }
        else if($ir['money'] < $r['upgradeCost'])
         {
           echo 'You do not have enough cash to purchase this upgrade right now.';
         }
        else
         {
           $check = mysql_query(sprintf("SELECT * FROM `owned_upgrades` WHERE (`ownupHouse` = '%u') AND (`ownupUpgrade` = '%d')", abs((int) $_GET['id']), abs((int) $_POST['id'])));
           if(mysql_num_rows($check))
            {
              echo 'This house has this upgrade at this time, it cannot be bought again.';
            }
           else
            {
              mysql_query(sprintf("UPDATE `users` SET `money` = `money` - '%d' WHERE `userid` = '%u'", $r['upgradeCost'], $ir['userid']));
              mysql_query(sprintf("UPDATE `owned_houses` SET `uhouseMood` = `uhouseMood` + '%d' WHERE `uhouseId` = '%u'", $r['upgradeMood'], abs((int) $_GET['id'])));
              mysql_query(sprintf("INSERT INTO `owned_upgrades` (`ownupId`, `ownupHouse`, `ownupUpgrade`) VALUES ('NULL','%u', '%d')", abs((int) $_GET['id']), abs((int) $_POST['id'])));
              echo 'You have purchased the '.stripslashes($r['upgradeName']).' for $'.number_format($r['upgradeCost']).'.';
            }
         }
      }
   }
}
$h->endpage();
?>

It also lets players gominto negative money

Link to comment
Share on other sites

function move_house()
{
  global $ir;
  $fetch = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) LEFT JOIN `users` ON (`userid` = `uhouseOwner`) WHERE (`uhouseId` = '%u')", abs((int) $_GET['id'])));
  if(!isset($_GET['id']))
   {
     echo 'You did not select a house to move in to.';
   }

 

on richards SQL i cant see any mention of houses is this something youve renamed or ?

Link to comment
Share on other sites

function move_house()
{
  global $ir;
  $fetch = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `houses` ON (`hID` = `uhouseHouse`) LEFT JOIN `users` ON (`userid` = `uhouseOwner`) WHERE (`uhouseId` = '%u')", abs((int) $_GET['id'])));
  if(!isset($_GET['id']))
   {
     echo 'You did not select a house to move in to.';
   }

 

on richards SQL i cant see any mention of houses is this something youve renamed or ?

Hi illusionsthanks for taking the time to help everybody out

richards mod uses the houses table from the original mc codes.

And as you can see in the sql adds owned houses which is the table with all of the users houses and determines which ones are being rented etc

Link to comment
Share on other sites

I havent tested this mod but is the person who's renting the house suppose to get payment deducted weekly, daily or ??? or am i on another planet thinking this way

And it is meant to take themoneh daily from the day cron. But if the user doesnt have the money then it still lets them keepthe house and they cant even move out of it

Link to comment
Share on other sites

$houses = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `users` ON (`userid` = `uhouseTenant`) WHERE `uhouseTenant` > '0'"));
while ($r = mysql_fetch_array($houses))
{
  mysql_query("UPDATE `owned_houses` SET `uhouseRTime` = `uhouseRTime` - '1' WHERE `uhouseRTime` > '0'");
  mysql_query("UPDATE `owned_houses` SET `uhouseTenant` = '0' WHERE `uhouseRTime` <= '0'");

  mysql_query("UPDATE `owned_houses` SET `uhouseRent` = '0' WHERE `uhouseRTime` <= '0'");
}
Link to comment
Share on other sites

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.   Paste as plain text instead

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