Jump to content
MakeWebGames

HauntedDawg

Members
  • Posts

    476
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by HauntedDawg

  1. Optionally, you can send me the specific file you are having trouble with? [email protected] Skype is a mere 20mb, won't take half hour even on a 1mbp/s connection.
  2. I would rather post here so people know it's getting attention. I'm willing to help you out, but, only via skype. So, Skype me :D PS: My skype is on my profile.
  3. Preston is known as Cronus on here.
  4. Believe what you want. Your just one pathetic man in this game, why should i even CARE what you think? Have you brought me money? NO, have you taken money from me? No, have i lost business cause of you? No. If and when Peter see this, he will hopefully clarify what i wanted to do with the $20 he was going to pay me for some work. Which is 1 year after, and i did not even hear from you in past 6 month's, but i still thought of it. I won't say anything else, cause you will just think it's another excuse. But whatever... Not once have i scammed, and because you lost $20 due to my hard drive failing, now i'm being classified as a scammer, o wait. Only you are classifying me as a scammer. I've done way more work for this community than you have, been here since 2005/6 (Late 2005), and not once have i actually scammed anyone. Get over it.
  5. @RoZ, I don't have a paypal account, so you can forget about your $20 until prior notice. And Scammer? It's a big difference if my hard drive failed and didnt have any of my applications nor a pc for 2 months. On the other hand, please do ask Peter what i wanted to do with $20 like a month ago. Just mention i was going to do work on his resistance website. He will then telll you what i wanted to do with that $20. So don't think i've forgotten about the $20 either. But your still on a high horse.
  6. A hobo? A kid? A person who wants to do it for fun? A person who is not cared about the money? this list can go on. Now please, if you have nothing better to say than just a 1liner, then kindly move to the next thread. It seems as tho, because your game has not made you some cash, that you can bloat around like you own the place, like everyone must listen to you. But, you are just another person in this world, I've had a game thats made $1,200 in just 3 weeks. Do you see me bloating, do you see me saying "Who works for $5"? No. So neither should you. Shut up and move along, im sure im not the only person that feels this way about all your 5 worded comments.
  7. Linux Mint for Server/FTP/Development/Backup work because it has a nice GUI.
  8. firefox.com and download new version?
  9. Anyone can fake conversation logs. So we do not care about your conversation logs and actually reply to people who are trying to find an answer. If you (chavdave), can't answer my question. Your the scammer. Final.
  10. ChavDave, how did his design land up on your game? When Peter has clearly stated and i quote "PS. I did the work TechTiser site though, so not sure how it ended up on ChavDave site." So, answer the first question at hand. You had his FTP details, which means you could of stolen a backup of his game. It does not matter if you or him has a license, what matter's is, you stole his design.
  11. Infact i did, and i made a typo
  12. I doubt modernmafia would accuse you of stealing that. Sorry but this thread is useless. You can not open a collaboration thread because someone was arguing with you, how they wanted their own thing's created. Learn business ethics please.
  13. You got to understand, everyone is different time zones. He is un the US, your most probably in the UK. big difference!
  14. Peter is not online at this moment, he should be online in the next half an hour, ill report him to this thread immediately. As far as i know, his service is not automated for the domain.
  15. Stop trying to be a smartASS where ever you go. If your blind, he said "Your hosts", which mean, shared hosting. Now how is he going to get someone to set up their server properly when they can't? Get off your high horse.
  16. Bump, need more vote's guy's :)
  17. Asynchronous is the way to go now a day's to provide a smooth user experience.
  18. Are you using Firebug to debug also?
  19. You will need a table to make the check to see if $ir has already rated $r. Also, i updated my code, i had $us['useranme'] instead of $us['username'] incase you've done changes to your side. I'll be busy here on out, so might not get a reply so fast anymore.
  20. Please use my updated code.
  21. @Alain: Sorry i thought i read the First winner only get's $50 :P. Wanted to know about the multiple module's cause, i have couple idea's they small modules but potential :)
  22. UPDATED CODE @ 03:33PM   <?php session_start(); require_once('global_func.php'); if(!$_SESSION['loggedin']) { header('Location: login.php'); exit; } require_once('header.php'); $h = new headers(); $h->startheaders(); include_once('mysql.php'); $is = mysql_query('SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid='.intval($_SESSION['userid']), $c) or die(mysql_error()); $ir = mysql_fetch_assoc($is); check_level(); $fm = '$'.number_format($ir['money']); $cm = number_format($ir['crystals'); $lv = date('F j, Y, g:i a', $ir['laston']); $h->userdata($ir, $lv, $fm, $cm); $h->menuarea(); $user = isset($_GET['u']) ? intval($_GET['u']) : FALSE; if(!$user) { echo 'No user selected!'; exit($h->endpage()); } $user = mysql_query('SELECT `userid`,`username` FROM `users` WHERE `userid` = '.$user); if(!mysql_num_rows($user)) { echo 'No user found!'; exit($h->endpage()); } $user = mysql_fetch_assoc($user); switch ($_GET['action']) { case 'plus_rate': do_plus_rating($user); break; case 'minus_rate': do_minus_rating($user); break; default: wrong(); break; } function wrong() { echo 'You have not selected to rate up or down!'; } function do_plus_rating($us) { if($us['userid'] == $_SESSION['userid']) { echo 'You can not rate yourself!'; } else { mysql_query('UPDATE `users` SET `prate` = (`prate` + 1) WHERE `userid` = '.$us['userid']); echo 'You have rated '.$us['username'].' up!<a href="viewuser.php?u='.$us['userid'].'">Back</a>'; } } function do_minus_rating($us) { if($us['userid'] == $_SESSION['userid']) { echo 'You can not rate yourself!'; } else { mysql_query('UPDATE `users` SET `mrate` = (`mrate` + 1) WHERE `userid` = '.$us['userid']); echo 'You have rated '.$us['username'].' down!<a href="viewuser.php?u='.$us['userid'].'">Back</a>'; } } $h->endpage(); ?>   Also, please change your links to this: Ratings: Up - <a href='ratings.php?action=plus_rate&u={$r['userid']}'>$rup</a> Down - <a href='ratings.php?action=minus_rate&u={$r['userid']}'>$rdown</a>
  23. Post up your hole code. Also, post up the link you go to when you rate up. You can hide your domain. Sorry thought you were using v2.
  24. Old Code   --too short
×
×
  • Create New...