Graphics Artists Wanted!!!!

Posted in Announcements with tags , , , , , , , , , on July 3, 2009 by dragouth

We are currently looking for individuals to help create images for our various games. This would be a pay as you go, or in other words a contract job(s). You would become TWGaming’s in-house graphics artist, but would be classified as contract employment. We are mainly focusing our attention on up and coming artists who need a little extra cash and something to pad their portfolio with.

Job Qualifications:
Prior experience with Web-based games a plus, but not required
Experience creating layouts preferred, but not required
Ability to work in set time frames a must
Fast, efficient, and quality workmanship a must

To apply send an email to jobs@thunderwars.com with the subject “Job Request: Artist” and a brief resume, and examples of your work.

Learning PHP Volume II

Posted in PHP/MySql with tags , , , , , , on June 25, 2009 by dragouth

Last time we talked about the bare basics of PHP. The Opening/Closing tags and the echo command. Now we’ll move over to what next. Variables!

Variables are actually extremely simple to understand and use. Variables are just ways of placing strings or data into a smaller term, to be used later. Such as,

$a=”foo”;

Anytime you echo or use the variable $a your going to see the word foo. For example,

$a=”foo”;
$b=”bar”;
echo “$a $b”;

Which would display “foo bar”  on your screen, just without the ” “.

You can store anything in a variable, even math equations and algorithms. In some more advanced techniques which I’ll explain later, variables can be created “on the fly” and constantly updated/changed over the course of one statement/command. Like in a for() or while() statement. But we’ll get more into that later…

Examples of variable useage:

$a=1;
$b=2;
$c=$a+$b;

echo “$c”;

Mysql queries are often stored in variables to be handled/called later in a script. variable stay within a page, and can be reused as many times as you like within the same page, as long as you don’t overwrite them.

$a=mysql_query(“SELECT * FROM tablename WHERE something=something”);
$b=mysql_fetch_assoc($a);

Where then you can call any field from the table that matches your conditions in the query. Such as if the tablename table containted a column named email. To display that, you would just do this:

echo “$b[email]“;
or
echo “The email is “.$b[email].” you requested.”;

Variables must always start with the $ symbol, and have any name you choose. Such as, $frank, $use, $blank, $Bob. But watch out for capitalizing variable names, they are case sensitive!!

More to come later. This article is far from finished. Check back daily, for updates to it.

Learning PHP Volume I

Posted in PHP/MySql with tags , , , , , on June 24, 2009 by dragouth

Ok, so here’s my first attempt at teaching PHP to someone.

Some basics first:

Every block of php code within an html page, must begin with

<?

and end with

?>

With that said lets jump into our first php code block!

Helloworld.php

<?
echo “Hello World”;
?>

Ok, so that’s the most basic script in php. Lets break it down,

<? – tells the server that a php script is about to come up and to read it as such

echo “Hello World”; – echo is how text is displayed on the screen. Whatever you put between ” ” gets displayed on the browser. So in this instance, Hello World gets displayed in your browser.

?>  – Tells the server that the php script has ended.

NOTE** Every “command” in PHP MUST end with a semicolon (;). That tells the server that, that particular “command” has ended.

Just for Beginners!

Posted in Scripting with tags , , , , , , on June 24, 2009 by dragouth

I have been recently posting scripts in my blog posts. I want to reiterate that the scripts are for beginners. While other people who are fluent in PHP can certianly use them, that’s not what I wrote them for. I originally wrote the scripts for newbies and beginners to help them learn PHP.  I don’t ever claim that the scripts are 100% free of security risks, and I won’t be liable for any damage they do to your site. But I can attest that while I don’t currently use any of the scripts posted here, I have in the past. When I first started coding, those are the scripts that I just plugged into each site/game I coded. And some of the games had quite a large user base, so in some way I know they are secure.

Now before I get 393,940 comments about how things can be done better, I have two things to say:
1. These are for people who know little to no php.
2. You get what you pay for. (they’re free)

So in conclusion, enjoy the scripts, I know there are better ways, but these are easier to get to know, and JOIN IN ON THE FUN…….LEARN PHP!!!!

New WebComic!!

Posted in Announcements, Company with tags , , , , , , on June 23, 2009 by dragouth

Well as some may know, but most probably don’t, TWGaming is not only a web programming company it’s also a Holding Company. While not like a normal one, we also produces sites and stuff ourself. We’re only considered like a Holding Company because we own other small companies that produce services/goods.

Anyway, TWG has recently branched out into Webcomics. As of right now we don’t currently have a name for it, but we have a blog! The first couple strips have been created, but are awaiting the completion of their new home. So expect that to be posted and up soon. We’ll also have a link+rss feed here and only the comics blog. So check there for updates.

Webcomic Blog

Epidemic

Posted in Dev Games with tags , , , , , , , , on June 22, 2009 by dragouth

Ok, so I got this idea from a user over at BBGameZone and kinda ran with it. If you find his post, he is describing a type of game the forces complete cooperative play from users instead of PvP. He’s mainly asking if it would be feasible to attempt such a game. Well needless to say, he got a mixed response. Well I didn’t listen to anyone and decided to make my own version of the game.

Without trying to get sued…..I got the, and based this game idea solely on the already copyrighted and on sale game, Pandemic. Since I’ve never played the game, I had to base the rules of my version solely on what I read in the description of the game. So my rules might differ slightly, couple that with a cleaver name change, and I should keep from getting sued ;)

But on a serious note, this game is going to happen, and it’s going to be awesome. I’m going to have to pay a out-of-house art/graphics designer, because frankly TWGaming doesn’t have the artist’s with the ability to complete what I have envisioned for the game(no offense guys!)

First Blog Post

Posted in Company on June 22, 2009 by dragouth

Each time I update this blog it will be about some different facet of my gaming. Either creation of a new game, further development of an existing game, idea’s about new games, stuff dealing with managing a web gaming company, and other random stuff I feel like posting.

Follow

Get every new post delivered to your Inbox.