Home | Rules and Guide | Sign In/Create Account | Write a Post | Reddit | #ludumdare on irc.afternet.org (Info)

Thanks for making Ludum Dare 26 AWESOME! See you in August!

Ludum Dare 26 — April 26-29th, 2013
[ Results: Top 100 Compo, Jam | Top 25 Categories | View My Entry ]
[ View All 2346 Games (Compo Only, Jam Only) | Warmup ]

[ 10 Sec Video Compilation (x3) | 260 Game Video Compilation | IndieCade Deal | Ludum Deals (Unity Deal Ends Soon!) ]


About AD-Edge (twitter: @Alex_ADEdge)

Entries

 
Ludum Dare 23

AD-Edge's Trophies

AD-Edge's Archive

Im (most likely) in!

Posted by (twitter: @Alex_ADEdge)
Friday, December 14th, 2012 3:30 pm

This will be my 4th LD (excluding miniLDs)

Hoping for a theme like ‘End of the world’ or ‘Outer space’, something which could be scifi.

But we will see! No point getting too attached to a particular theme, I’ve made that mistake before.

 

Game Engine: BGE
Language: Python
Graphics: Blender/Gimp
Audio/SFX: Audacity
Music: ???

 

Also, big night. Hung over and on about 3 hours of restless sleep right now. Got just less than 4 hours for a powernap O_o

 

Not the most ‘Super Theft Auto’

Posted by (twitter: @Alex_ADEdge)
Monday, November 26th, 2012 12:22 am

But close enough!

Certainly didnt get around to a few major features that Id really hoped for (like being able to steal a car – kinda important in a game that references Grand Theft Auto)

But I’m certainly happy with what I did get done over the weekend. ‘Super Theft Auto’ is a good start for an interesting little mini game.

You can play the current version of the game at the following link after installing the plugin (links/instructions are on the page- the only major OS not supported is OSX):

[LINK] (youll also find it on the CharityGameJam games submission screen of course)

Theres also a link on the page to a .blend download of the setup for the computer VideoTexture scene, youll need Blender 2.64a if you want to mess around with it.

 

Features:

  • A game within a game – You start in a 3D world with a 3D computer, the (kinda) NES style game plays on the screen of the Funkytron computer (press space to zoom in and focus on the screen to actually see what youre doing)
  • Large city area to explore (sadly only on foot at this stage)
  • Pedestrians wander around the city (they make good target practice)
  • Cars driving around (rare and very basic implementation)
  • Gun ammunition to pick up
  • Basic scoring system (you can score points for killing people)
Either way, this was a fun miniLD to participate in, was great to see the charity fundraising goals surpassed! (for a second time) Now I look forward to playing some of the other games :)

Fatality!

First public demo of ‘Super Theft Auto’

Posted by (twitter: @Alex_ADEdge)
Sunday, November 25th, 2012 9:05 am

I have version 0.5c of ‘Super Theft Auto’ now available for public testing/playing/things.

The title screen!

The game is my take on having a game like GTA2 on the NES (or at least a 3D Funkytron console) I havent really kept as close to the NES specs as I would have liked, but I think its turning out ok so far, its been a lot of fun to work on if anything.

Theres not much to the gameplay. I still need to add some major features in. But theres some initial pedestrians now, a title screen, various other much needed improvements – I can see this actually being a game sometime in the near future. I really need to add the car system in though, the map is quite large (spent too much time working on that tonight). Its too much to explore fully on foot.

 

Ludum Dare tip #9354 – Dont attempt to build a city

You can find the game embedded in this page[LINK]

Youll need to install the ‘Burster’ web plugin to use it (unfortunately Mac is not supported), but Linix and Windows (64&32bit) will both run it fine. The plugin is a ~26mb download, and is easy to install. Theres instructions & links to download it on the page I made for the game.

Feedback would be great, I know theres not much of a game, but Ill take any crits or suggestions. Also knowing if the Burster plugin install is a smooth process for you would be great as well. I hate having to install a plugin to play a game as much as the next person, but Ive tried to make the page as helpful as possible.

 

v0.5c in action

 

Anyway, its past 2am where I live, and Ive been running on 2-3 hours sleep all day (was a bit night saturday night). Im starting to see random flickers/objects in my vision, so a good indicator to get sleep I believe! Plus programming in this state is so slow and frustrating Id be better off sleeping.

Im not sure how much Ill be able to get done in the final hours tomorrow, but I hope to at least implement a few more crucial features (like death and a points systems) – We will see!

Kinda half-time’ish Post

Posted by (twitter: @Alex_ADEdge)
Saturday, November 24th, 2012 10:58 pm

Missed posting at the 24 hour mark! ~19 hours to go, close enough.

Making some more progress, but the past few hours have been slow and problematic. I ran into one large problem, which was a kind of ‘grey’ area cause by modules/functions Ive never used in combination before (not sure if anyone has tbh). The main problem came down to the default use of ‘mipmaps’ in the BGE and Blender itself. Basically, mipmapping doesnt work well with sprites. It ‘blends’ the pixels of textures and the results are blurry, ugly sprites for super low-resolution stuff, ie the image below shows the effect:

Mipmapping (fuzzy) vs disabled Mipmapping (sharp)

This is fine in Blender itself, you can simply globally disable mipmapping, problem solved. But the issue existed when I then tried to run the game in the Burster plugin (for web-browser play), mipmapping was on by default – and theres NO way to turn it off. So the all-important browser version of the game was completely fuzzy.

My initial idea was to completely redesign the ‘architecture’ of the game. Splitting the Scene into two independent scenes, one for the 3D computer area, one for the mini-game area being projected onto the screen. I wasnt even sure if the VideoTexture module would work between scenes (which is the only reason why I didnt setup the game like this initially), but after a bit of hair-pulling coding I managed to get it sorted. I then applied a pixelated shader, which was applied to the mini-game scene so it would be pixelated, even though mipmapping was permanently enabled.

The new problem: The shader was applied to the scene, but the VideoTexture plugin wasnt ‘seeing’ the now pixelated version of the level, so the screen was still blurry even though almost everything was running exactly as Id planned.

After some more hair-pulling moments, another much simpler solution came to mind, all I had to do was increase the texture size to sharpen the pixel edges (compromising with slightly larger file-sizes). Major derp moment. This solution took 5 minutes to implement (thankful this is still early on and I dont have hundreds of textures to edit) whereas the previous failed method took almost 2 hours. Gah! At least the scenes are better organised now, the ‘architecture’ of the game is much more solid so its not a complete loss…

Either way, I just need to sort out a sprite animation issue and I’ll have a playable demo up and running for people to try out.

 

Damn Mipmaps…..

 

Heres a look at the shader too, it worked pretty well and I’ll probably use it in future projects. You can see it in the background scene, a kind of ‘distant city’ view which is the current WIP city for the game. I wont be using anything like this in final game now (happened completely by accident) but I thought it looked a bit interesting.

Distant city with pixelated shader effect

 

Charity miniLD – Quick progress report

Posted by (twitter: @Alex_ADEdge)
Friday, November 23rd, 2012 11:45 pm

Im about done for today’s work on the game. Made some progress, theres a player sprite which runs around, and a basic environment (road with buildings either side and an intersection) along with some cars that randomly spawn and can drive into you (blood splatter included), now I have other things to tend to :(

A friend of mine might be getting involved with the game while I’m away for the next 10-20 hours, so progress might be made (hes been working on music for it today). Then tomorrow will be time to sit down and start finishing things! Ive purposefully aimed pretty low with this game, I’ll just get as much done as possible and enjoy it.

 

Either way, the game Ive been wanting to make for this is effectively ’GrandTheftAuto re-imagined for the NES’. I hope to have at least 1 gun, cars to drive/steal, blood to splatter and sidewalks to drive down, maybe even some simple kinds of missions. We’ll see!

Some screens:

Car driving past

 

Might also mention, I 3D’ized the gamepad texture recently released as well, so now theres 2 controllers in the scene (which adds to it nicely I think!)

Ludum Dare mini (Charity) weekend – Im in!

Posted by (twitter: @Alex_ADEdge)
Friday, November 23rd, 2012 5:59 pm

Was into the idea of this Charity Jam right from the moment I first heard of it. Maybe its the awesome theme, maybe its the fact that its for charity (which already doubled the initial funding goal) – Just noticed McFunkypants has increased the funding goal because of this, good move :)

Either way, I’ve gone ahead and started my day by donating, every bit helps, so I suggest anyone who is able to donate.. To donate!

 

Now for the game jam side of things. I like the idea of the template, but wanted to use the BGE (Blenders Game Engine) for this LD (as I do for most Ludum Dares), so yesterday I thought Id come up with my own 3D template, you can see the end result below.

Turn table of 3D Funkytron

*Edit* Removed gif, was unoptimized and bugging out my browser, click the pic above to see it^

 

This version was more of a ‘proof of concept’ for myself, as I wasnt sure how well the screen projection would work (if at all). So yes, that game you see on the screen you *can play*. Its effectively a 3D game, looking like a 2D game, projected onto the flat 2D screen of a 3D Funkytron in a 3D game world <- this is the kind of thing I think up when I say to myself “lets keep this miniLD nice and simple!”     -_-’

Everything worked as I wanted though, VideoTexture (the BGE module responsible for projecting that realtime display onto the Funkytron screen) works wonders.  Then, to further complicate everything, I decided it would be a good idea to use the Burster plugin with this game. For those who dont know BGE too well, or havent heard of Burster, its effectively a web plugin which lets you use run your BGE games in-browser. It complicates things because Burster has a bunch of restrictions, mainly on what python functions/modules you can use. A bunch of them are blocked for security reasons.

Thankfully, it works, so you can play this template version right now! Controls for the game, along with instructions and links to download burster are all on this page - http://www.delta-edge.com.au/GameTest/game_test.html

Feedback on if this works for you would be great! Also just basic feedback on how annoying/easy it is to download/install Burster and get the plugin running would also be handy. Thinking of using this plugin for future Ludum Dares depending on how it goes for this one.

The only downside to Burster is no Mac support, but 32/64bit Linux & Windows are both supported.

Also, as with any Ludum Dare, I’ll be providing the source code/files for the project, starting with the template (would be great to see others using this!)

Template download: http://www.mediafire.com/?qkfr3ijlfoqwkqz (Youll need Blender 2.64a to open the .blend file and edit the game) – This game is using the Blender Game Engine (BGE)

Download template^

 

Template scene setup

 

So thats all for now. The LD starts in <1min, so I have a game to make! I’ve got a friends going-away party happening tonight, so Ill really only have the next few hours and the final 24 hours to work on a game, most of today Ill be afk. And Ill post about what type of game Im planning later as well!

48 hour Timelapse! – Darkness Creeping

Posted by (twitter: @Alex_ADEdge)
Wednesday, April 25th, 2012 6:30 pm

Finally finished putting together the timelapse from my Ludum Dare weekend. So check it out!

 

*Edit* Changed the video to the correct timelapse – how embarrassment…

I also look forward to hearing more feedback on my game, so if you feel like playing a 3D survival horror/puzzle game, then the page for my Ludum Dare entry is here – [link]

Now its time to get voting. Ill probably do one more post, a summary of my favourite games from this LD (I plan to vote on at least a couple per page of entries, that way Ill get to at least see all of the games, and play a good deal of them too) Ive seen some pretty awesome ones so far!

Ludum Dare 23 – Postmortem

Posted by (twitter: @Alex_ADEdge)
Monday, April 23rd, 2012 4:34 am

Well, that weekend was a crazy 48 hours. A lot of it is a blur (Im going to enjoy watching my own timelapse since I cant remember 75% of everything I went though)

 

The best thing though – Success!!

This was my 3rd Ludum Dare to date, yet the first where Ive actually finished an entry. I was cutting it close too, last night I got to sleep around 4am, and at that stage it was T-8 hours, and I still didnt have a proper level or any puzzels to solve. So after sleeping 3 hours I had a very compressed burst of productive work to get the final level design and features down (I was still finishing off a pretty important feature at T-10mins) O_o

 

Either way, it was an enjoyable experience and I was very glad to get something finished which I could call a ‘game’. I might venture away from a 3D game for the next LD however… So-much-work…

Im keeping this post quick, cause Im actually struggling to stay awake at this point.

You can check out the entry with the link below (Windows 32 & 64bit versions only atm) Ill have a linux one up soon hopefully, and mac potentially soon as well. And a timelapse soon too!

http://www.ludumdare.com/compo/ludum-dare-23/?action=preview&uid=3467

 

Title screen

 

And now for voting! Good luck to everyone, I look forward to playing a bunch of games :)

And w00t! – For LD getting 1000+ games on its 10th birthday :D

~11 hours Remain – Darkness Creeping

Posted by (twitter: @Alex_ADEdge)
Sunday, April 22nd, 2012 7:32 am

Its getting to crunch-time now! And whats the first thing that happens?? A power blackout. Yep. Awesome. Thankfully (as of writing this post) it seems to be back, my battery got me though it, with a couple of hours to spare.

Funny thing is (or rage inducing if your in my shoes) – this is the 2nd power blackout during this LD so far! Its unbelieveable. No blackouts all year.. then as soon as the LD weekend comes along – two nights in a row. Last night was the worst however – from 1am to 8am. Thankfully I took the time for a snooze.

 

Either way, Ive made some progress, but today was a pain, fraught with programming dramas and reoccurring issues with certain bits of code. Thankfully I managed to code a couple of bits a lot quicker than expected. Making a function to allow the player to get back up after falling took no time at all, and jumping/running was super easy.

Im yet to start the proper level design though, having only just implemented most of the features needed. Still to be done is the 3 main sections of the game + the intro & sfx. Its going to be crazy towards the end. And I still need to sleep at some point….

Heres the potential title screen I just came up with, its a screenshot taken with game assets, and Ive applied an oil-canvas filter to it, to get a bit of a cartoon/painted look. Ill do a few more like this, for the intro sequence if I have the time. -

Feedback and comments at this point would be great!

WIP title screen?

Also:

Glowing crystal!

19 Hours to go – Getting there

Posted by (twitter: @Alex_ADEdge)
Saturday, April 21st, 2012 11:18 pm

Last night had its difficulties (power went out, of course) but at least it might make for a more interesting timelapse – slowly watching my battery drain away. I got a few more hours sleep than planned as well, which is only a good thing on the first night. I feel like tonight will be a tough one, wont be getting much sleep at all.

Either way, since the last post heres the updated ‘implemented feature list’ so far (new stuff in bold) -

  • Cockroaches ( basic behavior programmed and simple model) – now animated
  • Basic test area for testing features – with some items to collect
  • Player setup and physics (basic walking animations, movement, physics (you can fall over) and camera-look done so far)
  • Dynamic lighting initial setup (dynamic shadows working)
  • Player recovery – you can now get back up if you fall over
  • Running and jumping
  • Inventory (going to keep it basic, since the system I made is very simple)
  • Doors which only open if you have the right key
  • Spiders – fully animated with walking and idle animations
  • The players main ‘power’ – the ability to take over small creatures (and hence the theme)

 

Next up I want to give the player a proper light source, and a model for cutscenes and the intro animation. Then its time to get into some serious level design and put all of these features to use.

Couple of screenshots:

Creepy....

Spider!

Inventory with one key - corresponding (test) door opened

41 Hours to go – Progress (And screenshots so far)

Posted by (twitter: @Alex_ADEdge)
Saturday, April 21st, 2012 12:52 am

So at the 41 hour point, I wanted to do a quick summary of where Im at (with some pictures!)

The initial creepy/horror game I wanted to make was made difficult by the theme selection (in typical Ludum Dare style), but one small detail of the game stood out – the little bugs and critters I wanted to make which randomly scurried around the floors in a medieval style abandoned(?) dungeon. So, this is where ‘Tiny World’ comes into it, and I think Ill be able to work with the theme nicely.

A slight bug problem

Anyway, Ive got most of my checklist from this morning finished so far, with a few features left to implement later tonight, finished things are as follows:

  • Cockroaches ( basic behavior programmed and simple model – others will be based off this) – Cockroaches turned out more complicated than planned but it was good fun, currently they all spawn with a unique amount of health and move in a random fashion relative to all the others, they can detect a collision with an object and turn away from it, and can be squished if you step on them too many times and deplete their health too far. They also vary in speed, sometimes dashing around, then calming down and either stopping for a bit or moving slower
  • Basic test area for testing features
  • Player setup and physics (basic walking animations, movement, physics (you can fall over) and camera look done so far)
  • Dynamic lighting initial setup (dynamic shadows working)

 

What I want to have done by the time I get some sleep later on:

  • The start of a sound system to handle sfx and music/ambience and some initial sounds
  • Text system (talking to characters and player instructions etc)
  • Basic inventory system
  • The players ‘magic power’ in the game
  • Some kind of recovery for when the player falls over

 

Some more screenshots:

Some trampled... messy

 

looking better with proper lighting and dynamic shadows

Ludum Dare 23 – 48 Hours remaining.

Posted by (twitter: @Alex_ADEdge)
Friday, April 20th, 2012 6:29 pm

Ok so the theme is ‘Tiny World’,  which Id given a -1 to both times I could vote for it. So, at a bit of a loss as to what I should make at this stage!

Time for some serious thinking. I have some ideas for a game Id like to make, but how to make it work with the theme….. Thats what makes Ludum Dare such an interesting event though. So Im not complaining! Sometimes its fun to never know exactly whats going on :)

Also, Im screen-capturing the full 48 hours (I did the same with LD22 but was too disappointed to make the timelapse at the end), so hopefully Ill come out of this LD ready to put the timelapse together.

confus

Third time lucky? – Im in! LD23

Posted by (twitter: @Alex_ADEdge)
Monday, April 16th, 2012 10:31 pm

Yep, this will be my third Ludum Dare – and after never submitting a game to the previous 2 I participated in, I’m hoping this will be the one!

 

I have a ton of homework going on for Uni this week which was making an attempt at this LD seem unlikely, but most of it is due Friday or much later next week. So I should go into the weekend comfortably and ready for this LD. I also managed to somehow score the entire weekend free from shifts at work, don’t ask me how in the world that happened, I’m still confused about it working out so well.

The only issue is that I don’t have a computer/laptop to work on. My ‘current’ one died about a week ago. Thankfully I was quick to order a new one, which should arrive tomorrow. So it should be a mad scramble to get everything installed and running as Ill be needing.

The kind of game I’m leaning towards this time round is a dark and atmospheric horror/exploration based game, so if a theme matches that I’ll be set since I have a few fitting ideas already. Between now and the weekend though, I’ll be trying to think up some other game ideas as well – to avoid that dangerous moment when the countdown reaches 0 and you have no idea what in the world to make…

Ill more than likely be using BGE (Blender Game Engine) again as well, along with my other usual tools (python for programming, gimp or photoshop for 2D work, audacity for audio etc) but depending on the theme I might end up doing a 8bit style game with openGL instead (been keen to work on a game like that for a while now)

 

Finally, since I live in South Australia, Ill at some point make the effort to head to Adelaide and attend attend meetup on the Adelaide Uni campus (as if I don’t spend enough time there already). Will be good to work on some games in a more social environment than the dark, dusty corner of my room.

 

So, my next post will be at the T-48 hours mark I imagine!

Game over man, game over.

Posted by (twitter: @Alex_ADEdge)
Sunday, December 18th, 2011 8:06 pm

Yep Ive bombed out. Got to the point at 4am last night where I realised I more than likely wouldnt have a game worth submitting by todays deadline.

So thats a bit dissapointing. But it was still a good experience. Im determined to work on everything that let me down for this LD (ie time managment, planning and doing things which are too complex) in preparation for the next LD.

Slight malfunction with the space station :(

So yeh, I at least have a brand new game concept developed, with a great story I want to tell, so Ill more than likely get serious about these leftovers from my LD attempt of a game and make it into something better and an actual game.

I look forward to playing a bunch of games over the next week or so however, to see what all of you successful LD guys have come up with, let the voting commence and Ill be seeing you all again for LD23 in a couple of months :)

-ADEdge

Half-ish time report

Posted by (twitter: @Alex_ADEdge)
Saturday, December 17th, 2011 11:08 pm

Having a couple of hours of a serious lack of motivation at the moment. I did manage to get up fairly early this morning however and sit down to a nice can of energy drink at some retarded hour.

Progress with my game has been slow for a while, I was hoping to have most of the underlying systems finished and be moving onto throwing in content, but I dont even have a moving player yet. And progress is about to come to a complete stop for a few hours as I have a shift at work in ~30mins.

Heres one of the intro screens with the initial story details/clues:

Still yet to come up with a title!!

I have most of the menus done, the main character is 80% finished + a space station has been built and a few other things. I just need some animation, levels and cut scenes to get this game into action. Wont be sleeping much tonight, thats for sure but I find a lot of my better work is done in the final moments of something like this, when the rush begins :)

Another screenshot to wrap up this post, space station X15 which this will all take place on -

And we’re off! (Finally)

Posted by (twitter: @Alex_ADEdge)
Saturday, December 17th, 2011 12:07 am

So Im home finally, starting my game at 5.30pm, so I should be able to get a decent 8 hours in before some sleep.

Im very happy with the theme ‘Alone’, as my favourite game pre-idea for this LD fits in very nicely with it, and I should be able to make a decent haunting sci fi horror game with interesting story (and a twist!)

Also, just as I start, a decent storm rolls in, the thunder is shaking my house, so fingers crossed that the power doesnt go out…..

Either way, its time to get into planning and working on my main character. Im so organised for this LD that I have screen-capturing going on already as I write this, so this whole thing will hopefully result in a decent game + my first ever LD timelapse :)

Ill post next when I have something worth posting.

Lets do this (But for goodness sake no kittens!!)

Posted by (twitter: @Alex_ADEdge)
Thursday, December 15th, 2011 8:21 pm

Yep Im in.

My first LD was LD19, and I havent had a chance to participate since so Im looking forward to really getting into this one.

Ive got a couple of things which will get in the way (like a christmas party and a shift at work), but for the most part I should be able to focus on working on a game. Ive started covering my whiteboard in LD scribbles and plannings, heres the timeline for my LD so far!

The LD for me will start at 1pm in the arvo, where Ill be at a christmas party with notepad in hand (pre production time!), so Ill be starting work on my game 3-4 hours into LD. The arrows then represent the time that I can put towards game designing, the diagonally dashed parts are events/work and the hashed parts are sleeping time(s)

From this Ive worked out Ill have ~34 hours minimum to work on my game over the weekend with minor sleep deprivation, which isnt too bad I think.

So all going well (and with kittens not being the theme!) Ill be getting into this LD :)

Just as I expected – ADEdge – 0Hour_LD19

Posted by (twitter: @Alex_ADEdge)
Sunday, December 19th, 2010 6:57 pm

Im not going to make the comp, but thats ok.

Had some major setbacks last night, took me an hour to work out how to do realtime text in the new version of Blender where everything is rearranged. Then I got stuck on some basic python coding (coding at 4am just doesnt work for me…)

Either way I dont have enough of a game working for the contest, and I wont be making the jam either, got too many other things to do in the lead-up to christmas.

But ‘Discovery’ (working title) is not dead! Im determined to get it finished, and when its looking good Ill be sure to share it around so people can give feedback, and of course enjoy it.

Ill probubly post a video of it sometime on my youtube channel – here: http://www.youtube.com/user/ADEdge

Might as well go out with a bang. Spent my last 10mins of LD19 photoshopping :P

Either way its been a exciting 48 hours. I look forward to playing a bunch of games and seeing some winners! Also definitely looking forward to the next LD in april 2011, will be great!

AD-Edge out.

Lots of work to do… – ADEdge – 10h/remaining_LD19

Posted by (twitter: @Alex_ADEdge)
Sunday, December 19th, 2010 8:28 am

Still got a lot to do, not sure if Ill have anything worth submitting for the contest come 0 hour. Its 2am here and Ive had another busy day away from my computer *sigh*

Anyway a quick update, the menu page is done and working, it loads the game, exits and looks pretty.

Pretty uninspiring title. But until I think of something better it’ll do. – Feel free to make suggestions.

I also have basic game environment done, nothing major but its all I can do for now. Need to get this thing in the air and some more gameplay!

So much to do! Im about to do my last 2 hours for tonight (taking me to 4am) and ill really try to cram in some gameplay. Then tomorrow Ill try to get up on time to polish and submit (hopefully), and since this is my first LD I really have no idea how any of that will go! *Eeek*

Progress, of a sort – ADEdge – 23h/remaining_LD19

Posted by (twitter: @Alex_ADEdge)
Saturday, December 18th, 2010 7:27 pm

This is what I managed to do last night. Its amazing what mistakes a sleep deprived brain can make. I had a lot of issues baking AO maps because I had one silly button selected the whole time, which was the first thing I saw when I woke up this morning. Oh well.

But here is Discovery so far:


Far from finished.

-I dont like the ET texture much atm,

-The shuttle doesnt have markings yet, only an AO map

-I dont have much time to work on it anymore

-Need to get into some python to making it fly and get some environments done today! (But I have so many other things to do today as well… Gonna be a late night)

-ADEdge


All posts, images, and comments are owned by their creators.

[cache: storing page]