Evan Burchard Posted August 1, 2013 Share Posted August 1, 2013 Rev up your game engines. The 3rd FiMaRu battle is starting August 2nd. In the first two battles, we saw entries with Construct2, GameMaker, Easel, and Metrix.js. All dev methods are welcome as long it results in HTML5. As far as types of games, we've seen 3d flight simulators, runners, matching games, platformers, and so on. For those who haven't been part of a contest yet, these are the games that have entered so far if you want an idea of what we usually see:http://fightmagicrun.com/oceanhttp://fightmagicrun.com/feather Both winners of the $100 prize have been from this forum, so you're in good company if you decide to participate. Feel free to hit reply if you have any questions about FiMaRu #3. Quote Link to comment Share on other sites More sharing options...
Psychho Posted August 1, 2013 Share Posted August 1, 2013 Im ready for the next one!Do I still need to register or will I still get the email updates because I registered in the last contest? Quote Link to comment Share on other sites More sharing options...
Evan Burchard Posted August 2, 2013 Author Share Posted August 2, 2013 Back to defend your title! Awesome. Since you have already participated, there's no need to register again. Quote Link to comment Share on other sites More sharing options...
joannesalfa Posted August 2, 2013 Share Posted August 2, 2013 Tomorrow I have some issues to do, I will see I can do this another comptetion. Quote Link to comment Share on other sites More sharing options...
remvst Posted August 2, 2013 Share Posted August 2, 2013 I was on vacation for the first ones, but I might give the new one a try if the theme is inspiring :-) Quote Link to comment Share on other sites More sharing options...
Raiper34 Posted August 2, 2013 Share Posted August 2, 2013 I am on metal fest... And next week i am abroad... Quote Link to comment Share on other sites More sharing options...
Dream Of Sleeping Posted August 2, 2013 Share Posted August 2, 2013 I'll be taking part. I found last weeks theme was really uninspiring. Hopefully this weeks will be more interesting. Quote Link to comment Share on other sites More sharing options...
Evan Burchard Posted August 2, 2013 Author Share Posted August 2, 2013 I'll be taking part. I found last weeks theme was really uninspiring. Hopefully this weeks will be more interesting. Thanks for the feedback. What do you (and others) think makes for an inspiring theme? I haven't heard anyone mention anything about the themes yet. Quote Link to comment Share on other sites More sharing options...
Psychho Posted August 2, 2013 Share Posted August 2, 2013 Thanks for the feedback. What do you (and others) think makes for an inspiring theme? I haven't heard anyone mention anything about the themes yet.My god Feather took my a long time to think of anything, but I suggest something like 'Darkness'. Quote Link to comment Share on other sites More sharing options...
Dream Of Sleeping Posted August 2, 2013 Share Posted August 2, 2013 I suppose if i can think of a good game idea then I find the theme inspiring. lol I just couldn't think of anything good for feather. You don't know how close I was to just having another button mashing game. This time tap as fast as you can to tickle someone's feet with a feather. haha But I am very limited in what I can make. I don't use any game making software and my maths skills are seriously lacking. Quote Link to comment Share on other sites More sharing options...
-AAG- Posted August 2, 2013 Share Posted August 2, 2013 I keep putting my email in and never get a reply. What am I doing wrong? Quote Link to comment Share on other sites More sharing options...
Psychho Posted August 2, 2013 Share Posted August 2, 2013 I keep putting my email in and never get a reply. What am I doing wrong?Yea i'm not receiving any emails either and I even registered again. Quote Link to comment Share on other sites More sharing options...
Evan Burchard Posted August 2, 2013 Author Share Posted August 2, 2013 The signup is not contest specific until I make some changes. If you have already registered for a previous contest, then you are accounted for. If not, please let me know. Anyone who hasn't registered, go for it here. If you've signed up before and have received FiMaRu emails in the past, then you don't need to do anything special in order to register. BTW: The theme is live, and the battle is on: http://fightmagicrun.com/current Good luck everyone! Quote Link to comment Share on other sites More sharing options...
Psychho Posted August 3, 2013 Share Posted August 3, 2013 Random maze generation algorithm using depth first search, thought it might be useful to some other people.function maze(x,y) { var n=x*y-1; if (n<0) {alert("illegal maze dimensions");return;} var horiz=[]; for (var j= 0; j<x+1; j++) horiz[j]= []; var verti=[]; for (var j= 0; j<y+1; j++) verti[j]= []; var here= [Math.floor(Math.random()*x), Math.floor(Math.random()*y)]; var path= [here]; var unvisited= []; for (var j= 0; j<x+2; j++) { unvisited[j]= []; for (var k= 0; k<y+1; k++) unvisited[j].push(j>0 && j<x+1 && k>0 && (j != here[0]+1 || k != here[1]+1)); } while (0<n) { var potential= [[here[0]+1, here[1]], [here[0],here[1]+1], [here[0]-1, here[1]], [here[0],here[1]-1]]; var neighbors= []; for (var j= 0; j < 4; j++) if (unvisited[potential[j][0]+1][potential[j][1]+1]) neighbors.push(potential[j]); if (neighbors.length) { n= n-1; next= neighbors[Math.floor(Math.random()*neighbors.length)]; unvisited[next[0]+1][next[1]+1]= false; if (next[0] == here[0]) horiz[next[0]][(next[1]+here[1]-1)/2]= true; else verti[(next[0]+here[0]-1)/2][next[1]]= true; path.push(here= next); } else here= path.pop(); } return ({x: x, y: y, horiz: horiz, verti: verti});}Taken from http://en.wikipedia.org/wiki/Maze_generation_algorithm Wikipedia <3 Also super stoked for this competition its gonna be a good one! Quote Link to comment Share on other sites More sharing options...
-AAG- Posted August 3, 2013 Share Posted August 3, 2013 I keep putting my email in and never get a reply. What am I doing wrong?Never mind, I just got the reply. This could be good for prototyping my next game, it is somewhat related to the theme. I'll try to do something but i doubt it much. Quote Link to comment Share on other sites More sharing options...
Rune Posted August 4, 2013 Share Posted August 4, 2013 I'm in for this one! I ended up not finishing my game a couple weeks ago, so I've got to finish this time! Quote Link to comment Share on other sites More sharing options...
Dream Of Sleeping Posted August 4, 2013 Share Posted August 4, 2013 Here is a link to my game. It's called Maze Field. http://www.dreamofsleeping.co.uk/games/mazefield Quote Link to comment Share on other sites More sharing options...
remvst Posted August 4, 2013 Share Posted August 4, 2013 Here is a link to my game. It's called Maze Field. http://www.dreamofsleeping.co.uk/games/mazefieldLove it Quote Link to comment Share on other sites More sharing options...
Rune Posted August 4, 2013 Share Posted August 4, 2013 Yeah, that's a great concept! It would totally work for touch/mobile, too. Quote Link to comment Share on other sites More sharing options...
Dream Of Sleeping Posted August 4, 2013 Share Posted August 4, 2013 Thanks very much! Quote Link to comment Share on other sites More sharing options...
Psychho Posted August 4, 2013 Share Posted August 4, 2013 Here is a link to my game. It's called Maze Field. http://www.dreamofsleeping.co.uk/games/mazefieldGod dammnit that game is addicting. Anyways heres my entry, Maze of Madness - http://psych.gs/public_html/playgame.php?gameId=Maze of Madness Quote Link to comment Share on other sites More sharing options...
Rune Posted August 4, 2013 Share Posted August 4, 2013 Alright...Finished my entry this time! I've changed the name since the initial screenshots, so it is now called Song of the Faithful Mind...after the Taoist text the quotes are from. I used Game Maker: Studio, and Clay.io for the high scores. http://www.thehipsterquiz.com/faithful Quote Link to comment Share on other sites More sharing options...
soybean Posted August 4, 2013 Share Posted August 4, 2013 Submitting while time is running out! DeepDarkDungeon is about finding your way out to before the darkness eats you.. I must say the battle was quite harder than I thought it would be. Lack of ideas and all.. Was a good experience nonetheless Quote Link to comment Share on other sites More sharing options...
Dream Of Sleeping Posted August 5, 2013 Share Posted August 5, 2013 Soybean, that's a really clever and original idea. Quote Link to comment Share on other sites More sharing options...
soybean Posted August 5, 2013 Share Posted August 5, 2013 Thanks, although I must say I'm not quite satisfied with the design. It lacks options for strategy play, and heavily based on luck (if you're randomly placed near the exit). Yours btw, has a really spot-on and brilliant game design . You could try adjusting the dimension to fit mobile devices. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.