Jump to content
MakeWebGames

$-Chinion-$

Members
  • Posts

    44
  • Joined

  • Last visited

Everything posted by $-Chinion-$

  1. On my game when I click the "Players Online" button it brings up the page and the donators names are different colours from the rest, how do I change that colour? it is hard to see for some users?
  2. I'll take a look, thanks for the reply.
  3. I don't know if this would cost or someone could post this for free, I was looking but couldn't find it. I want a Hack/Mug Crystals function where when you view a users profile you can try and Hack/Mug there crystals they have on hand... A reply would be nice thank you.
  4. I know that I'm late, very late infact to this thread but why do you use BBCode in the script?
  5. No I'm sure that I haven't made a typo, at first I thought I did then I looked through the code. here's my code.   <?php include "globals.php"; $mpq=$db->query("SELECT * FROM houses WHERE hWILL={$ir['maxwill']}"); $mp=$db->fetch_row($mpq); $_GET['property']=abs((int) $_GET['property']); if($_GET['property']) { $npq=$db->query("SELECT * FROM houses WHERE hID={$_GET['property']}"); $np=$db->fetch_row($npq); if($np['hWILL'] < $mp['hWILL']) { print "You cannot go backwards in houses!"; } else if ($np['hPRICE'] > $ir['money']) { print "You do not have enough money to buy the {$np['hrNAME']}."; } else { $db->query("UPDATE users SET money=money-{$np['hPRICE']},will=0,maxwill={$np['hWILL']} WHERE userid=$userid"); print "Congrats, you bought the {$np['hNAME']} for \${$np['hPRICE']}!"; } } else if (isset($_GET['sellhouse'])) { $npq=$db->query("SELECT * FROM houses WHERE hWILL={$ir['maxwill']}"); $np=$db->fetch_row($npq); if($ir['maxwill'] == 100) { print "You already live in the lowest property!"; } else { $db->query("UPDATE users SET money=money+{$np['hPRICE']},will=0,maxwill=100 WHERE userid=$userid"); print "You sold your {$np['hNAME']} and went back to your shed."; } } else { print "Your current property: <b>{$mp['hNAME']}</b><b>{$np['hPRICE']}</b><br /> The houses you can buy are listed below. Click a house to buy it.<br />"; if($ir['maxwill'] > 100 && $ir['marriedwill'] == 0) { echo'<a href="?sellhouse">Sell Your House</a><br /><br />'; } $hq=$db->query("SELECT * FROM houses WHERE hWILL>{$ir['maxwill']} ORDER BY hWILL ASC"); while($r=$db->fetch_row($hq)) { print "<a href='estate.php?property={$r['hID']}'>{$r['hNAME']}</a> &nbsp - Cost: \${$r['hPRICE']} &nbsp - Will Bar: {$r['hWILL']}<br />"; } } $h->endpage(); ?>
  6. I know I shouldn't post it here, I just couldn't define where it should go... I got a suggestion from one of my players asking for when it displays there house, it displays the price of it to. I have this line of code for the house name..   print "Your current property: <b>{$mp['hNAME']}</b><br />   to display the price I put this, but it didn't work   print "Your current property: <b>{$mp['hNAME']}</b><b>{$np['hPRICE']}</b><br />   Can anyone suggest what I would do?
  7. Delete this please, i did it myself
  8. I joined your game, if you're thinking of actually keeping this game you seriously need to add some stuff. - Better Domain - Inside Layout - Modifications
  9. Well like some things in life, they die out and nobody uses them anymore. How long do you think it will be before people stop playing/making games? Mccodes or any other kind!?
  10. It wouldn't matter that I was paying in GBP would it?
  11. I'm quite late to post to this, why do you post error when it tells you what you have to do to fix it? Looking at "Parse error: syntax error, unexpected '<'" I think there might be a un-needed < somewhere, don't you think?
  12. I did, I added my links. I just backed up my explore page and put this one, with tables I think I may be ables to have what I want. Thanks for your help, if you have anything else you feel like adding then please do so ( I don't know what, but if there is anything please post )
  13. This is the same person, I just changed my name. Thanks I may work on this, I don't see how this would give me what I want but I'm sure I could add to it.
  14. Wrong section for this I think, I posted a thread in the "Request & Development Stages" I think you should post this there aswell, even though my post was asking for a new explore page.
  15. This is a few months late but if you cannot help you didn't need to post saying so, if you read the original post he actually said. "Send me a PM if you can do it for me"
  16. Well,I have seen a few explore layouts on the forums but the one I want isn't there and I got confused with the code. All it is, is placement of the tables. I want it so there is four parts 1st Placement: Top/Center 2nd Placement: Middle/Left 3rd Placement: Middle/Right 4th Placement: Bottom/Center This would create a diamond effect, if anyone is willing to spend a couple of minutes to do that for me, then that would be great. If it was a much bigger project then I would offer some $$$ but I don't rate this as a very big project, I'm just getting a little confused. Excuse the name, it was random. If you are unsure what I mean by this thread, by all means ask me.
  17. Where you have put "Now for the staff section" would I create a new file called "staff_multis.php" I would like to asap if you don't mind.
×
×
  • Create New...