LoveQuest !

Show off your games, demos and other (playable) creations.
Neolitik
Citizen
Posts: 55
Joined: Sun Jun 28, 2009 3:13 pm

LoveQuest !

Post by Neolitik »

hello

Just post a Little Test Version for LoveQuest : Futur Adventure Game !
Report bug please ! ^^

Arrow key , enter --> to interact whith the world !

I 'm need some help for better English Speak ^^

Thank !
Attachments
LoveQuest.love
Bug test Adventure Game ! Enjoy !
(14.35 KiB) Downloaded 329 times
User avatar
TechnoCat
Inner party member
Posts: 1611
Joined: Thu Jul 30, 2009 12:31 am
Location: Denver, CO
Contact:

Re: LoveQuest !

Post by TechnoCat »

I love sex book.
User avatar
Jasoco
Inner party member
Posts: 3725
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Re: LoveQuest !

Post by Jasoco »

I really like it. It looks promising. Looking at your code I see you do stuff the same way I do. I look forward to seeing how it turns out. Reminds me of Bob's Game, but not as presumptuous. :rofl:

It just seems a little slow. By which I mean the player walking and the pauses between a lot of the text bubbles. A few times I thought the game had frozen in an infinite loop.
User avatar
Person
Prole
Posts: 39
Joined: Thu Jun 18, 2009 2:35 am

Re: LoveQuest !

Post by Person »

Great stuff. I didn't take a look at the code so I probably missed a few things but this is what I saw when I played.
My Test
My Test
Picture 2.png (97.79 KiB) Viewed 6752 times
The red circles show graphical glitches. The green one a numerical glitch, unless that was on purpose?
"Here's another curse for you, may all your bacon burn."
User avatar
mike
Administrator
Posts: 364
Joined: Mon Feb 04, 2008 5:24 pm

Re: LoveQuest !

Post by mike »

Haha! I love the LÖVE error message on the screen (if that's what it is and not just a standard blue-screen).
Now posting IN STEREO (where available)
User avatar
TechnoCat
Inner party member
Posts: 1611
Joined: Thu Jul 30, 2009 12:31 am
Location: Denver, CO
Contact:

Re: LoveQuest !

Post by TechnoCat »

If you talk to the monitor from above, everything gets all screwed up.
User avatar
Robin
The Omniscient
Posts: 6506
Joined: Fri Feb 20, 2009 4:29 pm
Location: The Netherlands
Contact:

Re: LoveQuest !

Post by Robin »

TechnoCat wrote:If you talk to the monitor from above, everything gets all screwed up.
I didn't even realize you could start the computer before you said that. :ehem:
Help us help you: attach a .love.
User avatar
napco
Party member
Posts: 129
Joined: Fri Jun 12, 2009 9:28 pm
Location: Ital... ehm...

Re: LoveQuest !

Post by napco »

Hi! I was looking at your code and i've noticed that your "script" system could be improved, cause you can't make other characters talk and move exept the hero (if i am not wrong)... I think you should also improve the map.txt file by including in it all map infos, like activable scripts. By the way your programming technique is similar to mine! :megagrin:

P.S.: Are you italian?
User avatar
qubodup
Inner party member
Posts: 775
Joined: Sat Jun 21, 2008 9:21 pm
Location: Berlin, Germany
Contact:

Re: LoveQuest !

Post by qubodup »

:(

Code: Select all

$ love LoveQuest.love 
This is LOVE 0.5.0 (Salted Nuts).

INIT love.filesystem [PhysFS]
INIT love.graphics [OpenGL/DevIL/FreeType]
INIT love.audio [SDL_mixer]
INIT love.timer [SDL]
INIT love.mouse [SDL]
INIT love.keyboard [SDL]
INIT love.physics [Box2D]
INIT love.lib [LuaSocket] 
INIT love.joystick [SDL]
INIT love.system [Generic]
Could not set video mode: Couldn't find matching GLX visual
Could not set video mode: Couldn't find matching GLX visual
Could not set display mode.
QUIT love.system [Generic]
QUIT love.joystick [SDL]
QUIT love.lib [LuaSocket] 
QUIT love.physics [Box2D]
QUIT love.keyboard [SDL]
QUIT love.mouse [SDL]
QUIT love.timer [SDL]
QUIT love.audio [SDL_mixer]
QUIT love.graphics [OpenGL/DevIL/FreeType]
QUIT love.filesystem [PhysFS]
I'm on Linux. Other LÖVE games run fine..
lg.newImage("cat.png") -- made possible by lg = love.graphics
-- Don't force fullscreen (it frustrates those who want to try your game real quick) -- Develop for 1280x720 (so people can make HD videos)
User avatar
Jasoco
Inner party member
Posts: 3725
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Re: LoveQuest !

Post by Jasoco »

napco wrote:Hi! I was looking at your code and i've noticed that your "script" system could be improved, cause you can't make other characters talk and move exept the hero (if i am not wrong)... I think you should also improve the map.txt file by including in it all map infos, like activable scripts. By the way your programming technique is similar to mine! :megagrin:

P.S.: Are you italian?
Usually not allowing the player to be moved or talk is a stylistic choice. Many many games don't like to do anything to the player to keep the actual person on the outside of the TV screen from being taken out of the moment.

Games like Earthbound and Zelda are examples of this. You will NEVER hear Ness or Link talk, nor will the game ever move Ness or Link for you. (Link has a few small exceptions during cutscenes like when he enters a room and the door locks behind him) This is to make you feel like you have control. Silent protagonist's are a common thing too. Where the main character will never talk.

In Mother 3, they made every playable character talk, except whoever was the current controllable player. During a chapter, you might hear a character you will control later talk, but later when you are controlling him, you might hear the original character talk. But only the non current character. And the game never moves your characters for you.

Because of this, cut scenes might be split, while the game allows you to move your character into position for the next part. Like for example, an owl might fly down and say "Hey, Link! You wanna see something cool? Follow me!" at which point the game returns control to the player until he gets to the next point required, then a new script is called to continue the scene. This allows the player to think he has control, or sometimes even leave the area and not continue yet if he/she so chooses.

I don't plan on allowing any player control at all nor do I plan on ever making the player's character have his own talk bubbles because I believe in this method of narration. It makes the game player feel more in control and part of the game, rather than just someone sitting and playing a game.

Other examples include Final Fantasy games like VI where you have like 10-12 playable characters, but the one currently in the lead will never talk. However others will talk and say different things. Dragon Quest games also do this. VIII's yellow jacketed hero never said a word, but the other followers did. The first Jak game also never had Jak talk. Daxter always did his talking. But sadly the programmers decided to give him a voice in the subsequent games. Total bummer. Mario never talks, except for weird sounds and short sentences, but he will never have a conversation. In Luigi's Mansion, Luigi could say "Mario?", but it was only when the player pressed a button, thus it was under your control at all times.
Post Reply

Who is online

Users browsing this forum: Bing [Bot] and 50 guests