Nice. New installation, activated Akismet, BOOM: notices everywhere. The functions register_sidebar_widget, register_widget_control, clean_url and _c are depreceated. I just edited the akismet.php to get rid of those errors.

If you like, download it here, unpack (.zip) and copy it to your wp-content/plugins/akismet folder:
ZIP.

Posted in blog, PHP | Leave a comment

As a follow up to the rather pessimistic first year review I experienced something that rewarded my efforts. The following is a little story in pictures just to show you the influence that one big portal can have on your earnings.
Continue reading

Posted in mochiads, monetization, xperiment | 3 Comments

Well, I have seen a lot of success stories in the flash game business. Most of them are stories about the one big hit game, the holy grail for every developer. Hmm, haven’t found mine so far but I discovered that I am pretty more interested in the search.
Continue reading

Posted in game development, mochiads, monetization, xperiment | Tagged , , | 1 Comment

The task was to use text files that are created by an external program on a daily basis to create a workbook that contains those files’ data in monthly spreadsheets. The good thing is, the text files were named ‘DATAYYMMDD’, so there is a keyword (“DATA”) and the actual date in year, month and day form.
Continue reading

Posted in Excel, MS Office | Tagged , , , , | Leave a comment

Alright, the most important part of that mazing type tower defence game must be the pathfinding. Completely different from the given path games, a constant ‘re-pathing’ is neccessary. What we’ll do here is the basic thing. A backwards pathfinding with all nodes to create a flowfield. Heuristics are included to later check if there is a possible path (using the shortest path). There is a number of end nodes taken into account but only one start node yet. Creeps will later use the given direction of the node they are on.

Here is what we are going to create, have a little test:

Continue reading

Posted in as3, flash, Grid Based Games, grids, mochiads | Tagged , , , , , | 17 Comments

This post enhances the previous post by the ability of actually placing obstacles which somewhen may become towers.
Continue reading

Posted in Grid Based Games, grids, mochiads | Tagged , , , , , , , , | 1 Comment

I know this may look like a call to clone. But the intention of this post is more like look and learn. Once you can do the same, make it better. We’ll have a look at Desktop Tower Defence and try to understand the basic methods of that game.
This post will cover the creation of the square grid in different colors and a method to obtain the actual position to build a tower.
Continue reading

Posted in as3, flash, Grid Based Games, grids, mochiads | Tagged , , , , , | 3 Comments

I played a bit with the settlers-like map of that post to give it a more like terrain look. Therefore the triangle faces are colored now depending on their orientation.
Continue reading

Posted in as3, flash, game development, Grid Based Games, grids, mochiads | Tagged , , , , , , | Leave a comment

This is kind of an experiment with a hexagonal map. I just had a look at “The Settlers”. Great game. Alright, the hexmap (map made of hexagonal tiles) can be described by nodes arranged in a triangular fashion.
Continue reading

Posted in as3, flash, game development, Grid Based Games, grids, mochiads | Tagged , , , , | 1 Comment

In this part the adjacent cells of the acual node are called. This can get handy if we want to implement some kind of pathfinding algorithm. The base for this code is part 2.2. See part 1 for the creation of the basic grid.
Continue reading

Posted in as3, flash, game development, Grid Based Games, grids, mochiads | Tagged , , , | 6 Comments