Jump to content


Simple-games

Member Since 08 Jul 2009
Offline Last Active Oct 26 2011 09:10 PM

Topics I've Started

3D - how to spin camera in 3rd person view

09 June 2011 - 06:39 PM

I'm developing a 3rd person 3D game and have a question. How do I rotate the camera left and right WITH the sprite so it both spins when I hit the left and right arrow keys? Kinda like WOW's WASD movement I guess...

Thanks in advance

I need a logo for my game

03 February 2011 - 06:04 PM

The game is called World of BLISS, it can be found here.

I need a professionally done logo with this kind of quality:
Posted Image

I need the logo to say "World of BLISS"

BLISS - massive RPG platformer!

31 January 2011 - 02:47 AM

BLISS


Download from GameJolt


-New download
-New areas
-New armor
-New enemies
-Made the bot follower more 3P1C

BLISS is a free-roam massive platform RPG game. Gain experience points to level up your character and gain new special abilities. Search the world for hard-to-reach spots and maybe you will find new unique armor to equip.

STORY - You are a treasure hunter dropped onto a planet called "BLISS". Your mission is to find the treasure which is filled with tons of goodies. But finding it wont be easy... (PS: there is no treasure yet because so little of the game is complete)

This is a very early version of BLISS so there are alot of glitches, if you get stuck make sure to click "S" to jump to the start position.

Get stuck? Hit "S" !

Credits:
sprites made by JWRAC
and some by TeamDarkTomorrow


Posted Image
Posted Image
Posted Image


How to flip the sprite when..

28 January 2011 - 01:16 AM

draw_text(x,y-30,hp);
draw_sprite(sprite_index,0-8,x,y);

is in the draw event. so it wont allow me to flip the sprite in the step event. Is there there another way i can do this?

how to make sprite face direction

26 January 2011 - 03:31 AM

In a platformer, how would I make the ai face the direction hes moving?

something like this?

if direction=270
{
image_xscale=1;
image_xscale=-1;
}