Jump to content
MakeWebGames

Richard

Members
  • Posts

    277
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Richard

  1. Well i most likely would be making an inside, And nope when it is completed i would most likely sell it whole.
  2. Thank you man, Much appreciated :)
  3. Thanks mate, Any ideas for it?
  4. Well i got bored decided to practice more with graphics and so on.. This is unfinished!!! Screenshot: Comments are welcome, Any ideas give us a shout! Thank you.
  5. Haha ok.. :] good luck with your meeting ( i don;t know what type of meeting it is but good luck anyway. )
  6. Looks nice well done, Maybe for the content do a greyish with some blood stains in the lower corners?....
  7. Great game, one of the best i have seen............ "Just a joke.... Please put effort into making a game your breaking my heart here..."
  8. Want that parse error fixed maybe...? if you do why dont you atleast ask not just post up a code, Were not slaves.... Have some manners and someone will do it for you. ;)
  9. Your welcome :)
  10. Hmm that's good i admit, But i would just use Lightbox or something or create my own.
  11. Looking good Spudinski, I Am liking the idea, Well done.
  12. Brilliant illusions! Well done mate, It looks great!
  13. Happy Birthday Illusions, Hope you have had a great day.
  14. Okay, I Have added you to MSN, I will look forward to hearing from you. Thanks.
  15. Hi Peter, I Would like to maybe hire you in the near future.. Would you be interested? It would be for a full layout and maybe a couple of banners. Thank you. NOTE: Good work, I look forward to seeing more.
  16. Thanks everyone for the nice comments, I will be updating this modification and creating a fully working V1 Version off it also.
  17. Thanks everyone for the comment's, Also i am updating this Mailbox soon. i will be releasing a working V1/V2 Version with a few new features.
  18. Looking good Djkanna.
  19. Re: gang-staff-function No problem at all :)
  20. Re: gang-staff-function How about this?   function gang_staff_name() { global $db, $ir, $userid, $gangdata, $h, $leaders; if(in_array($userid, $leaders)) { if(isset($_POST['subm'])) { $_POST['subm'] = trim($_POST['subm']); $check=$db->query(sprintf("SELECT `gangNAME` FROM `gangs` WHERE `gangNAME` = '%s'", clean($_POST['vp']))); $checking=$db->query($check) if($db->num_rows == 1)) { print "ERROR. [url='yourgang.php?action=staff']> Back[/url]"; } else if(strlen($_POST['vp']) < 8) { print "Your gang name must be at least 8 characters"; } else if(eregi('[^0-9a-z]', $_POST['vp'])) { print "Invalid name."; } else { $sql = sprintf("UPDATE gangs SET gangNAME = '%s' WHERE (gangID = %u)", clean($_POST['vp']), $gangdata['gangID']); $db->query($sql); echo "Gang name changed! [url='yourgang.php?action=staff']> Back[/url]"; } } else { echo "Current Name: "; echo sprintf("%s ", format($gangdata['gangNAME'])); echo " <form action='yourgang.php?action=staff&act2=name' method='post'>"; echo "<input type='hidden' name='subm' value='submit' />"; echo "<table class='table' width='75%'>"; echo "<tr>"; echo "<th>New name</th>"; echo sprintf("<td style='text-align:center;'><input type='text' name='vp' value='%s' size='40%%' /></td>", format($gangdata['gangNAME'])); echo "</tr>"; echo "<tr>"; echo "<td colspan='2' style='text-align:center;'><input type='submit' value='Change' /></td>"; echo "</tr>"; echo "</table>"; echo "</form>"; } } }
  21. Re: [mccode v2] Simple Job Specials I think the most recent houses mod I made should work properly, Try that :)
  22. Re: [mccode v2] Simple Job Specials   Well, this mod I have tested quite a few times, It always works great for me on any standard version of mccodes
  23. Re: [mccode v2] Simple Job Specials Could you post lines 83 - 88?
  24. Re: [V2] Item Weight I like this idea +1 I think it could be expanded upon a little, Perhaps to make it so each equipped item adds to your carried weight, But very nice
  25. Re: Requesting - [Mccodes V2} Shared house mod I am not too sure whether this will work, I found a little bit of code laying around on my computer, Perhaps with a little modification it might work Shared housing   SQL Data:   ALTER TABLE users ADD shared text NOT NULL DEFAULT 'none';   Add into header.php:   if($ir['married']) { $do_1 = mysql_query("SELECT * FROM users WHERE userid={$ir['married']}"); $r = $db->fetch_row($do_1); if($r['maxwill'] > $ir['maxwill']) { $db->query("UPDATE users SET shared = maxwill, maxwill = {$r['maxwill']} WHERE userid = $userid"); $db->query("UPDATE users SET shared = 'owner' WHERE userid = {$ir['married']}"); } else if($ir['maxwill'] > $r['maxwill']) { $db->query("UPDATE users SET shared = maxwill, maxwill = {$ir['maxwill']} WHERE userid = {$ir['married']}"); $db->query("UPDATE users SET shared = 'owner' WHERE userid = $userid"); } else { $db->query("UPDATE users SET shared = 'owner' WHERE userid = {$ir['married']}"); $db->query("UPDATE users SET shared = 'owner' WHERE userid = $userid"); } }   Add into viewuser.php:   if($r['shared'] != 'none') { print "Property: {$r['hNAME']} [with: [url='viewuser.php?u={$ma[']{$ma['username']}[/url]] "; } else { print "Property: {$r['hNAME']} "; }   Then add into the divorce section:   $db->query("UPDATE users SET maxwill = shared, shared = 0 WHERE shared != 'owner' AND userid = {$ir['married']}"); $db->query("UPDATE users SET maxwill = shared, shared = 0 WHERE shared != 'owner' AND userid = $userid");   Then in the sell function of estate.php add:   if($ir['married'] AND ($ir['shared'] != 'owner')) { print "You are living in your partner\'s house at this time, it cannot be sold."; $h->endpage(); exit; }
×
×
  • Create New...