Me too . I hope i win. It looks awesome but for 59p (99c) not £1.19 ($2) but i haven't played it so don't know how much it is worth.
Ok I'm collecting all the usernames for people who tweeted and working on a good way to randomly 10 people out of it. FYI there have been 21 people who entered the contest, so you have about a 47% chance of winning it. Also it's not too late to enter, if you can tweet about teh internets before I finish coming up with a pseudorandom way to pick the winners.
Ok everyone, the results are in! And the winners are: AaronAMV vicente.ramirezch tzual thegamerocks06 Ossamu H-T0WN/G4M3R Mr Crazy Remmykins iamryanhello enuhski I'm PMing you promo codes right now. Congrats to the winners, sorry to the losers (you could always buy it ). And if you're curious, I told you I'd use my uber1337 programming skillz to choose randomly, so here's the program I used. It's written in Objective-C, which is what iPhone apps normally get written in. If you can find any problems with it, then lemme know and maybe I'll give you a promo code . Code: // Make an array and add all the usernames to it // in the order they posted to the forum NSMutableArray* contestants = [NSMutableArray arrayWithCapacity:22]; [contestants addObject:@"AaronAMV"]; [contestants addObject:@"drelbs"]; [contestants addObject:@"Ossamu"]; [contestants addObject:@"Remmykins"]; [contestants addObject:@"tzual"]; [contestants addObject:@"Mr Crazy"]; [contestants addObject:@"eggzbacon"]; [contestants addObject:@"diffusion8r"]; [contestants addObject:@"iamryanhello"]; [contestants addObject:@"sk8erdude50"]; [contestants addObject:@"megasamus1"]; [contestants addObject:@"Devilishly Good"]; [contestants addObject:@"akame"]; [contestants addObject:@"H-T0WN/G4M3R"]; [contestants addObject:@"AlvinDj"]; [contestants addObject:@"Linzy"]; [contestants addObject:@"vicente.ramirezch"]; [contestants addObject:@"thegamerocks06"]; [contestants addObject:@"enuhski"]; [contestants addObject:@"ImNoSuperMan"]; [contestants addObject:@"statnut"]; [contestants addObject:@"Elkas"]; // Make a new array to hold the contestants in a random order NSMutableArray* shuffledContestants = [NSMutableArray arrayWithCapacity:[contestants count]]; // Keep running this code while there are any contestants left in the contestants array while([contestants count] > 0) { // Choose a random username from contestants int index = arc4random() % [contestants count]; id objectToMove = [contestants objectAtIndex:index]; // Add it it shuffledContestants, remove it from contestants [shuffledContestants addObject:objectToMove]; [contestants removeObjectAtIndex:index]; } // Now we have shuffledContestants, an array of all the TouchArcade users // who entered the contest, in a random order. Now display the first 10 to the // console, and those will be the winnders for(int i=0; i<10; i++) { // Display the username NSLog(@"%@", (NSString*)[shuffledContestants objectAtIndex:i]); }