News
Working on the RPG again!
I was bored today, and decided to return to an old project. I have quite a few projects that I've been working on, but I always seem to get distracted and forget about them for a while.

Anyway, here's a list of stuff I did today:
  • Fixed: Tiles on map now have a description for both the base tile, and the object on top. (ie, a grassy area with trees is now described as such)
  • Changed: Modified some of the base and object descriptions to give the complete description better 'flow'
  • Added: The weapons and armour tables now have more in them. (This isn't visible yet, because I haven't coded the front end for the shops and inventories. The buy/sell system is ready for this, however.)
It's here if you want to go take a look: RPG!

Anyway, I'll be working on it more soon, hope everyone will like it!
0 comments | 05:06 AM - 24/10/08

At Uni now!
So, I'm at Uni! I'm doing Computer Science with Games Development, and it seems pretty awesome so far.

Also, I've started working on an online RPG in PHP and MySQL. You can check that out here: RPG Login Page

This means I DO know MySQL after all! So I'll probably be shifting most of the site over to using it soon too.

Also, if you're into/want to learn some programming, check out Project Euler. Over 100 challenges which you can solve in any way you like. There's an emphasis on using programming to do it though.

Anyway, from Uni, Tyranic-Moron out!
0 comments | 03:56 AM - 20/10/07

Learnt MySQL (or not, as it turned out)
I've just learned how to use MySQL databases. So I should be able to improve the site even more now, without the need to use text files to store my data. And I think it makes it less hack-able too, which is also a bonus.

*edit 02/05/2007*
Actually, I failed at learning MySQL. Maybe I'll have another go, but I'm a bit busy with college work right now.
0 comments | 02:18 AM - 27/10/06

The art page is set up
Well, I've now got my artwork page set up. It seems to be working pretty well, all I have to do to add a picture is upload the image to the right folder, and add it's name and description to a list. Simple!

Now I just need to get busy with the uploading process ;)

Here's my script, if you're interested. Feel free to steal it :D
(A lot of the echo's can be removed. I separated them out so that the script would fit in the code box :P)

CODE
<?php
   if (isset($gallery)) {
      $path = "images/artwork/" . $gallery . "/";
      $list = file($path . $gallery . ".lst");
      echo "<center>";
      foreach ($list as $image) {
         $image = explode("#", $image);
         echo "<a href=\"" . $path . $image[1] . "\">";
         echo "<img src=" . $path . $image[1] . "'";
         echo " width='100px'" . " title=\"" . $image[0]";
         echo "\nDate: " . $image[2] . "\"></a>";
      }
      echo "</center>";
   } else {
      echo "gallery not set";
   }
?>
0 comments | 02:03 AM - 22/10/06

Random Projects
Well, I've decided to reveal all my secret php projects on my server. These have only been available by me giving people direct links before now, but here they are: Test Center
0 comments | 08:26 PM - 30/08/06

View all news
Submit news