Jump to content
MakeWebGames

Dave

Administrators
  • Posts

    3,368
  • Joined

  • Last visited

  • Days Won

    126

Everything posted by Dave

  1. Dave

    Payment

    It's hilarious that LR $'s are worth more then the real amount. Due to the difficulty of withdrawing the money. I see it used for transactions where there is no way to dispute the transaction.
  2. Contact the original creator for support first... I'm sure they'll help you.
  3. Dave

    Payment

    I've used them quite a bit but they're not really used by the average person and they're mental about account security.
  4. I believe they re-released Mono District as EuroGangster.
  5. It's going to make living for me a nightmare, tons of people everywhere. I'm really unexcited about the whole thing.
  6. Yeah I agree with you. Most the games about have the same features, same look, basically are the same game.
  7. This is actually GRPG like he says in the original post. But like a_bertrand has said this looks so much like the default template for GRPG, even though it has nice improvement it still looks the same.
  8. Dave

    Good FREE web host?

    Indeed you're correct, most of my websites are static content with the odd connecting to a database etc. If you want to host a decent game you should really think about something a bit bigger then shared hosting, providing you plan to do well.
  9. Dave

    Good FREE web host?

    This is awkwardly my old hosting company that I sold on, they even provide a plan now that is the same price... They need to remove my name from the website though.
  10. Dave

    Good FREE web host?

    You're forgetting that this $0.99 plan would have something like 250mb disc space maybe to the max of 1gb. So for your 140 clients you'd only need around 35gb (supplying 250mb per client) and 140gb (supplying 1gb per client). I didn't spend much time on this maths, so I know it's not exact. Along with some high performance server stats and a decent management team stopping the abuse of system resources I think this is totally doable. Especially with the new CloudLinux option provided for cPanel which can actually limit the amount of CPU resources, iNodes etc per customer. Considering you'd get $138.60 from those clients, I'm sure you could get something, even basic that could house the clients. http://cpanel.net/cpanel-whm/cloudlinux/ Bearing in mind I've only got 1gb of disc space on my account that I'm paying $2.50 a month for.
  11. This thread is from 2009. Closing it to avoid confusion.
  12. Dave

    Good FREE web host?

    No it's not... You can buy good, cheap hosting. But you'll struggle finding it. If you buy yearly you can probably easily find a plan that works out to $0.99 a month. I'm paying about $2.50 a month and it's fine for me. One note, don't go for a company that offers the 'Unlimited' lie of a plan.
  13. That link really doesn't give the user an answer at all? We're meant to help, not just redirect people to Google and insult them. I did find this link which may provide a bit more help, seems that all you have to do is pass get variables to the script (I skimmed the post). http://www.hasoffers.com/blog/creating-a-virtual-goods-offer-wall/
  14. I edited the password in your code out, just cause that's never a great idea to post something like that.
  15. Dave

    Forum issue.

    I'm guessing you're using 2.0.5? They have a session_name() but I can't recall what it is, pop open globals.php and check.
  16. If a product has errors, contact the creator! In this case contact McCodes, I'm sure they'll support you in the bugs/issues.
  17. The fact he said "add me..." means that he wants people to add him on MSN (Windows Live Messenger) and even though you can setup custom emails for it, it's generally easier to live with a .hotmail.co.uk/.live.com. I don't get your reply at all.
  18. Very handy post, I remember there being many posts around here about which methods are better/quicker to do with coding and you've just nailed it on the head. Don't suppose you could do a nice benchmark test on the differences between ++$i; $i++ As this came up a few years ago.
  19. Modernmafia has posted this up for free: http://makewebgames.io/showthread.php/42028-Free-space-template
  20. It's a nice template, but you really should look more into your typography, the font you decide on for the content/menus etc can make a template really stand apart. Currently you're just using standard boring fonts. Also there is nothing massively advanced about your template. Basic gradients with the standard box design. Should try and be different, use more textures/renders etc. Nice job overall though!
  21. To write something perfect first time is incredibly hard even for the best coders. The amount of revisions I make upon codes before release is ridiculous. Finding new methods to shorten how I'm doing things, finding interesting bugs/errors that need to be repaired. Writing code perfect first time is just... somewhat impossible.
  22. If McCodes did employ any form of inspectors I think they'd have the sense to employ someone with basic English skills. Something this scammer is missing. Ignore and block him, maybe block his IP to just in case.
  23. Indented your code for you. <?php include "config.php"; echo "<h3>New Tournament</h3>"; if ($_POST['s2']) { $gettheid = mysql_fetch_assoc(mysql_query("SELECT tid FROM settings WHERE active=1 LIMIT 1")); $maxentry = ($_POST['numgrps'] * $_POST['tpg']); $z1 = 1; while ($z1 < ($maxentry + 1)) { $grpdc = ceil($z1 / $_POST['tpg']); mysql_query("INSERT INTO groups VALUES('{$gettheid['tid']}','{$grpdc}','{$_POST[$z1]}','0','0','0','0','0','0','0','0','0')"); $z1++; } echo "League setup complete.<a href='index.php'>View</a>"; exit ; } if ($_POST['s1']) { mysql_query("INSERT INTO settings VALUES(NULL, '{$_POST['name']}', '{$_POST['numgrps']}', '{$_POST['tpg']}', '1')") or die(mysql_error()); $n = 0; echo "<form method='post'>"; while ($n < $_POST['numgrps']) { $ng = $n + 1; echo "<h4>Group {$ng}</h4><table>"; $nt = 0; while ($nt < $_POST['tpg']) { $ntm = $nt + 1; $loop = ($nt + 1) * $ng; $teamsel = mysql_query("SELECT * FROM teams ORDER BY name"); echo "<tr><td>Team {$ntm}: </td><td><select name='{$loop}'><option value=''>Select...</option>"; while ($tmg = mysql_fetch_assoc($teamsel)) { echo "<option value='{$tmg['name']}'>{$tmg['name']}</option>"; } echo "</select></td></tr>"; $nt++; } echo "</table>"; $n++; } echo "<input type='hidden' name='numgrps' value='{$_POST['numgrps']}'> <input type='hidden' name='tpg' value='{$_POST['tpg']}'> <input type='hidden' name='s2' value='1'> <input type='submit' value='Submit'></form>"; exit ; } echo "<form method='post'> <table><tr><td>Name: </td><td><input type='text' name='name'></td></tr> <tr><td>Number of Groups: </td><td> <select name='numgrps'> <option value='1'>1</option> <option value='2'>2</option> <option value='3'>3</option> <option value='4'>4</option> <option value='5'>5</option> <option value='6'>6</option> <option value='7'>7</option> <option value='8'>8</option> </select></td></tr> <tr><td>Teams per Group: </td><td> <select name='tpg'> <option value='3'>3</option> <option value='4'>4</option> <option value='5'>5</option> <option value='6'>6</option> <option value='7'>7</option> <option value='8'>8</option> </select></td></tr></table> <input type='hidden' name='s1' value='1'> <input type='submit' value='Submit'> </form>"; ?>
  24. SMF has a package like this. A single file which is the installer and pulls all the files from the server and then the install is done. I think it's a great idea. Good work.
  25. This post clears up all your moaning about this being an McCodes game. Now stay on topic.
×
×
  • Create New...