Jump to content
MakeWebGames

Serin

Members
  • Posts

    135
  • Joined

  • Last visited

Everything posted by Serin

  1. Serin

    game for sale

    will post the month of march
  2. Serin

    game for sale

    23/03/2013 15:26 GMT 1K2537496S893044V Sent 6GK65398VM8207045 22/03/2013 18:12 GMT 3F950425K3005122R Sent 46H72080LY9526948 22/03/2013 15:18 GMT 33U43678DF392384S Sent 24M919507J3506437 22/03/2013 15:03 GMT 8AN49119AE1390531 Sent 45360400E3696993K
  3. Serin

    game for sale

    minimum pack is 5 bucks
  4. Serin

    game for sale

    Date/time created Message ID Status Transaction ID 16/04/2013 16:28 BST 1AM76018AN744425T Sent 5AL519821K3747508 16/04/2013 09:38 BST 5X3645207U731553E Sent 0N466343LE512090F 14/04/2013 15:25 BST 95F703069D453870U Sent 9Y067077VY760480Y 11/04/2013 13:07 BST 6PH443386J3674300 Sent 0E627555G5716262D 08/04/2013 16:32 BST 5DH228004S6632237 Sent 0C359532YV571902V 05/04/2013 16:40 BST 5RR921900Y494853W Sent 5S163031CC900834A 01/04/2013 15:06 BST 7H466595NP484744H Sent 87L665236G641354G 31/03/2013 09:29 BST 5HE68513TD609792P Sent 3UR56690AG974580N 26/03/2013 20:42 GMT 3GE5532460316915W Sent 34S760908L340402J 26/03/2013 20:41 GMT 3HE73072XA2117016 Sent 78F43764EN255092E 26/03/2013 07:25 GMT 2AW416110M330612E Sent 31B65102G1803954L 26/03/2013 07:19 GMT 43S46040PV4698346 Sent 8BV349497H410231H 26/03/2013 07:18 GMT 1T864449SF605970Y Sent 0EF2248173290194W 26/03/2013 07:17 GMT 33V93196BM641260G Sent 9406774808106702H 26/03/2013 07:16 GMT 0PR277608P5325748 Sent 6W539700BH848501D 25/03/2013 12:26 GMT 4M629134P8675832N Sent 7V868428FK846763P 24/03/2013 19:58 GMT 76C167007E422090D Sent 1CL678096S543812X 24/03/2013 19:57 GMT 6D423805420959811 Sent 28C523816N246683S 24/03/2013 19:52 GMT 01C21815F80343053 Sent 3YV82227P5281272V 24/03/2013 19:51 GMT 5T774075GN325580R Sent 75328864GG109002P 24/03/2013 18:31 GMT 0JG70796E8702042H Sent 5W240395GS5165941 24/03/2013 18:28 GMT 8DW03553DJ643332N Sent 0AE80751VA522504A 24/03/2013 13:50 GMT 81W268426A2427612 Sent 6J3539559W2219231 23/03/2013 22:31 GMT 1NY26806TS5358444 Sent 7EL61931FW779732B 23/03/2013 15:27 GMT 0F0489484X313634P Sent 12U49879XJ0877938
  5. Serin

    game for sale

    il try pull up the last 2 months paypal statements, and nothing seperates it, it needs work a story line needs adding bonus schemes missions quests ect i dont have enough time for it
  6. Serin

    game for sale

    im not posting sesitive details here and yes i have license, serious buyers will recieve this information
  7. http://makewebgames.io/showthread.php/43271-game-for-sale?p=289234#post289234
  8. Serin

    game for sale

    hi im thinking of selling the game if anyone intrested. i want 1500$ and makes around 700$ a month without advertising has an active app on google play has around 40 active users per day (will; increase massivly with advertising) domain is http://www.pimp-wars.net we have made lots of upgrades fixed lots of bugs and glitches, theres still a couple bugs here and there. we have a rental feature nearly completed. serious buyers can either take over my cpanel or i will transfer the site to their hosting choice, also domain name will be transfereed across too please no flaming on this post i dont want an argument
  9. $owned_houses is the database table name
  10. thanks il try that and get back to you
  11. didnt worl :(
  12. im having a problem with this, there have been some changes made by my coder but the changing of money from the rentee to the renter is not working anybody help? this is the page i have right now.   <?php include_once('globals.php'); echo '<p class="heading"><b>Your Houses</b></p>'; 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; 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> <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> <p><a href=houses.php?page=sell&id='.$r['uhouseId'].'>Sell house </a> <p><a href=houses.php?page=rent&id='.$r['uhouseId'].'>Rent house </a> <p><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', `will` = '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'])) { $houses = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `users` ON (`userid` = `uhouseTenant`) WHERE `uhouseTenant` > '0'")); $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($ir['money'] < $owned_houses['uhouseRent']*$owned_houses['uhouseRTime']) { echo 'You cannot afford this house.'; } else if($ir['money'] > $owned_houses['uhouseRent']*$owned_houses['uhouseRTime']) { mysql_query(sprintf("UPDATE `users` SET `money` = `money` - '%d' WHERE `userid` = '%u'", $r['uhouseRent'], $r['uhouseTenant'])); 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?id='.$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']).' Will</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(); ?>
  13. yeah i must write a email to virgin media complaining lol
  14. no i just pay for 100mb fiber optic broadband
  15. that didnt work :(
  16. okay il add them in thanks for the advice
  17. sp i should put them both in immediatly?
  18. <a href="http://www.bbspot.com/News/2004/10/extension_quiz.php"><img src="http://www.bbspot.com/Images/News_Features/2004/10/file_extensions/doc.jpg" width="300" height="90" border="0" alt="You are .doc You change from year to year, just to make things tough on your competition. Only your creator really has a handle on you."><br>Which File Extension are You?</a>
  19. yeah virgin media are pretty decent
  20. Thankyou i can address my reasoning for some points others i will look into. there is no failure for crime yet as the game is new and i didnt want people to be put off by been stuck in jail on their first crime, this will be changed as the game is more established,   the economy is fairly high due to properties being high in cost, along with the property add ons it evens itself out. the leveling is only fast at first this to encourage fast development and give users intrest instantly, leveling slows down about level 100. i have captcha codes ready to put in for sign up and gym/crimes again im waiting a while for the game to become more established before i install these the welcome page is new, we plan on adding a to do list for this to help new players understand how to get started. i will address other issues maybe we can have a rereview in a couple of weeks? thankyou for taking your time to review the game
  21. thankyou please also be brutally honest, i cant improve anything if im not aware please also note we have some developments in progress
  22. hi i was wondering if a couple people non biased can review my game, pimp-wars.net along with the review any suggestions, advice i will gladly take them on board.
  23. Thankyou il take a look at it, and its not me its my coder, the whole game is coded like that so hes just working off that
  24. the whole game is coded like that so im just following whats there
×
×
  • Create New...