Jump to content
Banner by ~ Wizard

Winter Wrap Up:The Game


MVC NVMXD JVRXD

Recommended Posts

Ok well everypony here should know about winter wrap up. Going off that premise, I thought I could make a good puzzle game out of the episode. So without further ado,

 

Winter Wrap Up: The Game! It's still a wip, but it's a start.

http://dl.dropbox.com/u/67827108/the%20game.zip

Windows only (at the moment)

 

The source can be provided, if you want it.

  • Brohoof 2

I HAD TO FALL TO LOSE IT ALL BUT IN THE END IT DOESN'T EVEN MATTER /WRISTS

On 4/28/2013 at 8:13 PM, gooM said:
Djenty...man you are crazy, but an awesome sort of crazy
Link to comment
Share on other sites

First of all, thanks for making me lose. Second of all... that's an interesting game. I'll check into it sometime.

 

Aww mac?! I'll get a mac version in a second.

I HAD TO FALL TO LOSE IT ALL BUT IN THE END IT DOESN'T EVEN MATTER /WRISTS

On 4/28/2013 at 8:13 PM, gooM said:
Djenty...man you are crazy, but an awesome sort of crazy
Link to comment
Share on other sites

Cool start, I can't seem to do much more than click and make a little dot appear for the moment, though :P I see SDL.dll included in the zip archive so at first glance I would think it would be [C|C++]+SDL, but then again the executable's icon is the Love2D icon. I assume it's being developed in Lua+Love2D?

Edited by Ashbad
  • Brohoof 2

b_560_95_1.png

 

What has fanfiction has Ashbad written lately?

We should totally find out by clicking this link.

(Protip, turn on "Show Mature" to see more)

Link to comment
Share on other sites

Cool start, I can't seem to do much more than click and make a little dot appear for the moment, though :P I see SDL.dll included in the zip archive so at first glance I would think it would be [C|C++]+SDL, but then again the executable's icon is the Love2D icon. I assume it's being developed in Lua+Love2D?

 

I code EVERYTHING in lua.

I HAD TO FALL TO LOSE IT ALL BUT IN THE END IT DOESN'T EVEN MATTER /WRISTS

On 4/28/2013 at 8:13 PM, gooM said:
Djenty...man you are crazy, but an awesome sort of crazy
Link to comment
Share on other sites

 

I code EVERYTHING in lua.

 

Not a bad decision, it has quite a few uses in the coding industry today, including game development/script extensions. Love2D is indeed a nice Lua graphics library, I would compare it in coolness to Python's PyGame (which I believe is also SDL-based).

 

On another thought, could you provide us with more information about your game's mechanics? :)


b_560_95_1.png

 

What has fanfiction has Ashbad written lately?

We should totally find out by clicking this link.

(Protip, turn on "Show Mature" to see more)

Link to comment
Share on other sites

On another thought, could you provide us with more information about your game's mechanics? :)

 

Basically, you'll have to pick up various objects and stuff to solve problems... I already have this thing in the code which is like

function love.load()
  mask=1
  circle={}
  circle.x=2
  circle.y=30
  circle.mask=1
end
function love.update(dt)
  if love.mouse.isDown('l') then
    if circle.mask==mask then
	  circle.x=love.mouse.getX()
	  circle.y=love.mouse.getY()
    end
  end
end
In fact, press 2 in the game ;)

 

Some improvements, but I just want to give you guys source only right now. On how to run this, check love2d.org.

http://dl.dropbox.com/u/67827108/bleh.zip


I HAD TO FALL TO LOSE IT ALL BUT IN THE END IT DOESN'T EVEN MATTER /WRISTS

On 4/28/2013 at 8:13 PM, gooM said:
Djenty...man you are crazy, but an awesome sort of crazy
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Join the herd!

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...