Jump to content


Opium_RX

Member Since 04 Jan 2006
Offline Last Active Sep 06 2011 04:06 AM

Topics I've Started

Object Rotation

08 March 2009 - 04:38 PM

Okay sounds simple enough, right?
Heres the problem, every object that is created is drawn using:
In the Draw section
draw_sprite()
If i dont put that code in it does not draw a sprite and stays invisible(dont ask me why, its just the way i coded it :D )

My question is how do i make it draw the object facing lets say obj_player,
remember i dont need it to always change direction, only when it is created it has to point to the player and stay in the same place
until it gets destroyed.

Lejumper

23 October 2008 - 07:41 PM

Ever been bored to an extent when you just want do do something like click the mou on an empty screen or w/e.
Well i just had one of those days....i decided to make use of this insane boredom and made a game in 15 minutes.

Yes i agree this is nothing fancy, and i dont want people to say that this game has no story...it wasnt intended like as a serious game it just w/e to pass the time.


Heres a sreenie!
Posted Image


Heres the Download link:
LeJumper Download

I know this game is nothing rly but at least say something like how long it kept you jumping or what you do when you have moments like i had.

Rotation Problem...[nvm Solved]

21 December 2006 - 11:36 PM

Okay basicaly im using this code in the step event:
if keyboard_check(ord("W"))=true && place_free(x,y-1) 
{
 motion_add(90,0.3);
}
And i need to make it look like its rolling forward and so on.

Im not very experienced with 3d functions yet since i never tried to use them so much.

Opiumrx Homepage...

16 December 2006 - 09:29 AM

Well i finally decided to show my site to the world.
Its been down for a month so i figured id get some feedback on how to improve it more.
Not much content yet and a few links still dont work.(Games and About)
Generaly i would like to know how my site works if there are any errors: script and gramar, layout feedback is also appreciated.
Here it is: http://www.opiumdesign.co.nr/

Changing Room Size In A Window

07 April 2006 - 04:00 PM

ok i need to change the window size lets say from 1024*762 to 1284*1024.
i didnt find it in the manual...
can anyone give the the code, or sequence of codes to do this action?