Skip to main content

[TAG] The Arbitrary Gamejam #01 - [2nd to 4th August 2013]

The Arbitrary Gamejam
2nd - 4th August 2013


Generated Themes:
Invalescence - To Become Strong
Depilation - To Remove Hair

Chosen Theme:
Wrecking - Reducing to a State of Ruin


TAG IS OVER!

Submit games and check out other submissions here: [Link]
Follow @TickTakashi or check out this blog in 24 Hours to find out who the next host will be!


THE NEXT HOST HAS BEEN ANNOUNCED!
[ANNOUNCEMENT HERE]

What is TAG?
The Arbitrary Gamejam is a weekend game jam with 3 themes designed to promote small and unknown indie developers.
At the end of each TAG, the submissions are rated by the host.
The person who submitted the best game will be "tagged" and is responsible for hosting the next TAG.
The idea is, as the Gamejam grows more popular, passing the Gamejam around will help small unknown indie developers pull traffic to their websites.
By using a random word generator to generate 2/3 themes, TAG is intentionally arbitrary to encourage outside-the-box thinking and wild combinations.


When is TAG?
TAG occurs on the first weekend of every month, Friday to Sunday.
The themes for each TAG will be posted on the Thursday before it starts, to give people some time to think about how the themes can fit together.
The Jam Begins at Midnight on Thursday and Ends at Midnight on Sunday.


How Do I Join?
Everyone and Anyone can join regardless of their ability, just comment below if you're interested in joining. 
If you're hesitant about joining because you don't like competition: relax. This is just like any other Gamejam, there is no real 'winner', the host simply picks their favorite game so they can pass on the Jam.
If you are hesitant about joining because you don't have a website/blog that you can host TAG on in the event that your game is top voted: don't worry! You can pass it on to someone else.


How Do I Host?
First and foremost, you cannot host TAG twice in a row or more than two times in a single year (Unless yours is the only submission). If you end up hosting TAG, you can handle it in any way you want under two conditions.
  1. There must be 2 randomly generated themes, the last theme is chosen by you.
  2. You must keep the 4 core rules outlined below. 
Other than that you are free to decide how people join and how submissions are rated/handled, and any further rules/restrictions you want to place on participants.


Rules
  1. Submissions must come in within 12 hours of the Gamejam ending.
  2. Submissions must be original works, no plagiarism.
  3. Submissions can be based on any number of themes, but must incorporate at least 1 of the randomly generated themes.
  4. No Pressure. Just have fun with it. Submissions will still be accepted even if they're not complete.

Submissions
If you want to submit something, simply comment on the submissions post with a link to your submission, either a download link or some kind of web player. If you wish to update your submission simply edit your comment. Keep in mind that any updates during the 12 hour submission period will be ignored, as you are only supposed to work on the game during the jam.


Since this is the first TAG, it's unlikely to be very big, but that's OK. The dream is that one day TAG might help some super talented small indies to attract some attention.
~Tick

EDIT: Added a link to a Countdown timer and starting times around the world.

Comments

Popular posts from this blog

Unity: How Adapters can help you write fewer MonoBehaviours

TL;DR: You don't need to duplicate a bunch of code to do the same things to a Image and a SpriteRenderer , or RectTransform and Transform , etc. You can use a simple pattern called the Adapter Pattern. If you've never used it before, this post explains how. The Problem: Image vs SpriteRenderer Lets say you want to make a sprite fade out , maybe its a dead monster or a collectible, but in either case you want it to gracefully depart from the screen rather than blink out of existence. Kinda like this eyeball monster from  Beastly : So that's pretty easy right, one way of doing it is with a MonoBehaviour that modifies the sprites alpha value via SpriteRenderer.color . Your class might look something like this: public class AlphaFaderSprite : MonoBehaviour { public SpriteRenderer spr; public float fade_percentage; void Update() { spr.color = new Color(spr.color.r, spr.color.g, spr.color.b, fade_percentage); } } Now, anyone who's used Unit

Wacom vs N-Trig - A Modern Comparison

WARNING : This post is long. I wrote this because I could not find an unbiased comparison of the modern N-Trig and Wacom technologies online. It was written in response to the artistic outcry regarding the Surface Pro 3. If you are an artist, I believe it is worth reading. UPDATED as of 20th June 2014 to reflect N-Trig software advancements. UPDATED as of 23rd June 2014 to reflect new direct Digitizer comparison information. Those of you who may visit this site regularly will know that I am a game developer, but what you might not know is that I also do a lot of sketching. (Maybe one day I will post the stuff online) Since I am a geek, I do almost all of my sketching digitally, which means I am always looking out for new developments in digitizer technology. This brings me to this post in particular: Following the announcement of the Surface Pro 3 , many artists were shocked and disappointed by the news that the SP3 would be using N-Trig technology rather than Wacom techn

Design Bites: Minecraft - Feed The Beast

The "Design Bites" series is about learning or appreciating just one design element of one game. It's about applying an analytical eye, even if it doesn't touch on everything. What's Minecraft - Feed The Beast? Minecraft is a Sandbox developed and released by Mojang in 2011 (Kinda, it was in beta for a long time). The player roams a procedurally generated world building things and collecting resources with a variety of tools. Feed The Beast (FTB) is a collection of Mods for Minecraft, which add new items, creatures, resources and other features to the game. There are many different Feed The Beast modpacks, each with their own goals and focuses. This article is specifically about "Feed The Beast: Infinity Evolved". I would encourage anyone curious about FTB to head on over to the Feed The Beast website or Forums and check it out! What's Awesome? Deep inside all humans is the burning desire to build a nuclear reactor. No? Just me? Alr