Jump to content
MakeWebGames

Dayo

Administrators
  • Posts

    2,491
  • Joined

  • Last visited

  • Days Won

    196

Everything posted by Dayo

  1. I may have work for you can ingest examples?
  2. Djk I am still active just don't post as much :)
  3. I think it could be the SQL try removing the MRES and replace with abs(intval()) it would always show as 5 if the query is empty as the default values would be 0
  4. What's the error ur getting? Plus you don't need to call global $db, $ir; and try changing MRES to abs(intval($user))
  5. Dayo

    Game engine

    Not all engines cost there are good free ones available look on the forum boards (can't remember the category) but its near the bottom (I think)
  6. ahh what DJK+danny said lol how did i miss that
  7. change if ($i % 2 == 0) { $color = '#FFFFFF'; } else { $color = '#000000'; } to if ($p % 2 == 0) { $color = '#FFFFFF'; } else { $color = '#000000'; }
  8. Im looking for some one who is able to design the "Game User Interface" I don't want it to look like anything like MCCodes/any existing game engine as it dosent use a game engine and is built from scratch ;) If you think this sounds intresting and want to give it a go PM me and we will talk a bit more about the project. Please note this will only be a one-off cash payment NO percentage of the site will be given out!
  9. Hiya im looking for a creative writer, im going to approach my current project from a different angle one i think that will make a better flow to the game and be more interesting for the users to play. Basically i need a story writer this story would have 25 chapters each chapter being about 400-500 words from this i would use as a model to make the game (like they do with the movies IE taking bits out putting bits in etc...). For more information please contact me and we shall discuss a price range
  10. why dont you just use PHP something like this if ($i % 2 == 0) { $color = '#XXXXXX'; } else { $color = '#XXXXXX'; } echo '<tr style="background-color:#'.$color.'"> ....... </tr>';
  11. what do you mean by "consistency"
  12. i just got a bit bored so decided to make a script to automatically generate a isometric map via PHP you can make it more advanced/read the layout from a database, just got bored so thought i would share it. i know for the more advanced people this will be easy but its for the new people who may think it is hard to dynamicly generate an isometric map <?php echo '<div style="width:672px; height:480px;">'; while ($rows<30) { while ($cols<10) { if ($rows % 2!=0) { $left = ($cols*64)+32; } else { $left = ($cols*64); } $top = $rows*16; echo '<div style="background:url(\''.rand(1, 2).'.png\') no-repeat;position:fixed; height:32px; width:64px; top:'.$top.'px; left:'.$left.'px;"></div>'; $cols++; $top=0; $left=0; } $cols=0; $rows++; } echo '<div style="position:fixed; height:448px; border:32px solid #000; width:608px; top:0px; left:0px; "></div>'; echo '</div>'; ?>
  13. if you are learning you can look at http://makewebgames.io/showthread.php/38932-Simple-Website-Building-Blockls it has the login/register and its well commented if i remeber correctly so would be good to learn from
  14. Also(sorry of you think I'm hijacking) Im also selling toptextgam.es would work well with the above URL
  15. just ran it throgh the validator and it does, i may make the register later aswell altho i dont think it will be finished untill i get back from holiday
  16. There would still be the error for placeholder and the script tag hasnt got a type but I'll fix that when I get home Also when I get home I'll also optimise the images so if loads faster
  17. First of all thanks dave for sharing this with the community :) also the template isnt 100% to the PSD as this was only a quick code up ;) Links: Download With PSD - Coming Soon Download Without PSD (faster) - http://www.mediafire.com/?myq74oy4lbfwi6k Demo - http://cddesigns.org/demos/mobster city/
  18. what font did you use dave?
  19. Im currently coding this up, it will be avalable tonight about 21:00 GMT (estimated time ill be finished (got to pop to the shops in a bit))
  20. i like 5 the most suits the color scheme and date of the site ;)
  21. Lol that is a third of what I'm wanting so it's going to be a no
  22. The ds one is not sold as the user has still not paid so it's still for sale
  23. I have Peter at the bottom of my first post ;)
  24. Do you say that about every template you see for sale on the web, I'm selling a simple HTML/CSS template with a little bit of jQuery what's the problem? You don't like it not my problem! It's there for the people who can't afford to buy a £200 template And just want a simple clean template to use until they can afford one
  25. Zip File will include: css/ - style.css (2KB) images/ - background.png (105KB) - logo.png (4KB) js/ - JQuery.js (91KB) / - index.html (4KB) soz for the double post
×
×
  • Create New...