Archive

Posts Tagged ‘Python’

Redirecting Python’s print statement to anything

September 2nd, 2010 Ultimatebuster No comments

Printing in Python always prints to the console under its default setting. This post teaches you how to print to anywhere you want to.

Read the rest of this entry >>

An awesome book for learning python

May 26th, 2010 Ultimatebuster No comments

Learn Python for newbies and professionals, the easy way.

Read the rest of this entry >>
Categories: Python Tags: , , , , ,

Creating a text game engine for beginner developers: The basics

May 14th, 2010 Ultimatebuster 1 comment

Developing a text game engine sound easy. However, it’s actually quite complicated. This article outlines the basics. Also, announcement!

Read the rest of this entry >>

Designing a Text Adventure/RPG Game

May 7th, 2010 Ultimatebuster 2 comments

For the past month, I’ve been coding a text adventure game engine in the python programming language. Unfortunately, I have realize that there are way too many components to the engine that the original Core engine cannot handle it. The original proof of concept game that I designed is very simple. There are object classes [...]

Read the rest of this entry >>