Jump to content
MakeWebGames

Kieran-R

Members
  • Posts

    551
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Kieran-R

  1. What do you mean?
  2. You would be surprised to how much domains are worth to domain resellers... I know it's not worth millions - but if a domains pretty much sold out TLD's, and there's a pretty decent demand for the domain name, then they will buy it. I've sold plenty of domain names before to domain resellers, and I have plenty more to sell. But I was just looking for a suggestion to how much this kind of domain is worth. Ive never sold a domain with the kind of 'one word' 'city name' type. Now please, domain valuations only.
  3. All these are is mascots C&Ped from Google (MafiaDeath.com to be precise), and some text put on them. It's a free text found on the net, with a simple PS stroke. If someone can't do this themeselve, then I really can't understand how they figured out how to register for this forum in the first place... Simple stuff. Not worth money never mind $15.
  4. Im not 'advertising the sale' here. I have my own places where I will advertise if I wabt to sell a domain. However im just looking for some opinions on how much you think this domain is worth. The fact that its a one word city name, it changes a lot of factors than what im used too. Mabe this is the wrong place - esspecially if you believe its worth the registration cost. But im here for your opinions, and thats what you gave me. :)
  5.   Then use your brain. Look at the code where it will say something like: if (bla == bla) { echo "your account may be broken"; } Look at the 'if' statement. It is true if you are receiving this message. Work backwards...
  6. It does work if you make it work. C&P the errors into Google, and look for possible solutions, and why this error may be appearing.
  7. Actually, I registered it only 2 days after it was deleted... I use domain software to keep an eye on quality expiring domain names.   Thats completely wrong. Ive sold many domain names before less quality than this for a lot more than the registration cost.
  8. You paid for an MCCodes license (at least you say you did). But I highly doubt you have permission to use the layout. Making it illegal.
  9. Good luck with your game. However I recommend that you stick to MCCodes until you get a better understanding of PHP. MCCodes may be messy, but you can learn a lot from it even though you didn't create it first hand. As previously said, download the MCCodes Lite recode made by Danny I think. I've not had a look at it, but I assume is easier to understand, and the code has been cleaned up a little. And no doubt it will also be secure.     Let me guess: Failbro wanted to have a partnership with Dreamcoder. Correct?
  10. Fair enough. Give me a mod suggestion, and ill give it a go if I want to make it ;)   EDIT: Decided ill make a voting sites mod. Only a little better than you may think ;)
  11.   Actually, I meant to mean that how are we supposed to know what line line 27 ect is? No code tags = no line numbers....
  12. How are we supposed to know what lines what?
  13. http://makewebgames.io/showthread.php/39357-Updated-Profiles-5.00-USD The actual live demo of that mod is down, however there is screenshots.   On a side note: I can make mods in AJAX also. So even if you want a mod made which works with part, or all of the AJAX, I can do that.
  14. Still avalible :)
  15. You have said $health == 100; Therefore $health is ALWAYS going to be 100 no matter who runs the file. You have to make it user specific by using a WHERE statement in the mysql query, or using selecting the 'health' value from the db for the user.
  16. Mabe you are trying to use the cron file in a separate folder?
  17. http://php.net/manual/en/function.mail.php Look at the examples there. And as said before, don't come here expecting to demand code, then get it given to you. Give that a good read, then come back and ask for help if your still having trouble learning it. Explain what you don't understand of which you are trying to learn, then you will get the help you require. This way you learn something...
  18. <?php include 'header.php'; if($_GET['buy'] > 3){ echo Message("That point pack doesn't exist."); include 'footer.php'; die(); } if($_GET['buy'] == 1 || $_GET['buy'] == 2 || $_GET['buy'] == 3){ if ($_GET['buy'] == 1) { $amount = 100; $cost = 1000000; } if ($_GET['buy'] == 2) { $amount = 750; $cost = 7200000; } if ($_GET['buy'] == 3) { $amount = 1000; $cost = 9500000; } if($user_class->money < $cost){ echo Message("Not enough money"); include 'footer.php'; die(); }else{ $newmoney = $user_class->money - $cost; $take = "UPDATE grpgusers SET money='".$newmoney."' WHERE id='".$user_class->id."'"; mysql_query($take); //give pts $newpoints = $user_class->points + $amount; $give = "UPDATE grpgusers SET points='".$newpoints."' WHERE id='".$user_class->id."'"; mysql_query($give); echo Message("You bought the $amount points pack. <a href=pointdealer.php>back</a>"); } } ?> <tr><td class="contenthead">Point Dealer</td></tr> <tr><td class="contentcontent">Here you can purchase point packs if you are low on points.<table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td><strong>Points</strong></td> <td><strong>Price</strong></td> <td><strong>Action</strong></td> </tr> <tr> <td>100</td> <td>$1,000,000</td> <td><a href="pointdealer.php?buy=1">Buy</a></td> </tr> <tr> <td>750</td> <td>$7,200,000</td> <td><a href="pointdealer.php?buy=2">Buy</a></td> </tr> <tr> <td>1,000</td> <td>$9,500,000</td> <td><a href="pointdealer.php?buy=3">Buy</a></td> </tr> </table> </td></tr> <?php include 'footer.php'; ?>   Give that a try. Does same thing in less lines of code.
  19. Just switch about some of the numbers in the code. floor($x+1500*pow(2, ($x/7))); << Looks like the part which decides the max EXP. But make sure you make it the same for all the functions.
  20. I recently registered Inverness.biz. I'm looking for some honest valuations onto how much you think it's worth after reading the following notes: - Inverness is a medium sized city in Scotland witch is a popular tourist destination. - Consider that almost all other TLD's are registered for 'Inverness(.)'.   Thanks :)
  21. Nevermind... (delete)
  22. Post the domain that the license is under, and we would be happy to help you. :)
  23. Honestly, whether this is copyrighted or not, ALL you have done is copy and pasted some pics from Google then slapped some text on it! ANYONE on this forum with MS paint on their computer could do something to these standards if not better.
  24. http://w3schools.com/css/default.asp Explains at all... and more...
  25. I didn't ask you to make me anything?
×
×
  • Create New...