Forums

Recent Posts

Subscribe to Recent Posts 322541 posts found

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 ... 12902

14 hours ago ago

Kittys1av Martho 710 posts

Topic: General Chat / I'm Santa

Quote
EDIT: Dixee is female? O.o

lets see is dixee a boy or a girl name? now is that an avatar of a boy or a
girl?
ontopic: I want wiisports resort

 

14 hours ago ago

Dudezdle_games_logo walozdle 19 posts

Topic: Game Development Issues / More than 2 joysticks

I know that GM can support up to 2 joysticks, but I was wondering if there is
any way that would allow me to use more. (4 preferably) There is probably an
extention file out there somewhere that does what I am trying to do but I can
seem so get ahold of it.
Thanks in advance to anyone that helps =]

 

14 hours ago ago

Fts maxie12 1317 posts

Topic: Game Development Issues / TDS: Multiple lights?

What you need to change it that you are going to need multiple rectangle for
blacking everything out, I believe the easiest would be something like this:
Code


var i,ii;
i = instance_nearest(x,y,obj_light)
if point_distance(x,y,i.x,i.y) <
max(view_xview[0]+view_wview[0],view_yview[0]+view_view[0])+800
{
scr_light
}

Note that this won't work when you have multiple light to close to each other,
you will have to find the nearest light then, or store all the light's positions
in a controller object.

 

14 hours ago ago

Avatarseal Mars001 640 posts

Topic: General Chat / I'm Santa

Mecha's Soul... oh and a new dress.

 

14 hours ago ago

Dark_lightbulb BlackEnergy 92 posts

Topic: Game Development Issues / Looking for Graphic Artist

Yeah, well, if you want me to do that, I can, for sure.

 

14 hours ago ago

M MechaGames 1116 posts

Topic: General Chat / I'm Santa

Your elves.
EDIT: Dixee is female? O.o

 

14 hours ago ago

My_avatar Hepolite 1704 posts

Topic: General Chat / What Genre Game Are You Best At Making?

Platformer, no doubt. Best at programming and designing them.
I've tried to make almost every genre there is, but I like platformers the most,
those (my opinion) are the funniest, both to make and play.

 

14 hours ago ago

B Shattergolem 1344 posts

Topic: General Chat / I'm Santa

QuotePS3
I'm sorry, but you have been a very naughtly girl this year. razz
Be good next year.

 

14 hours ago ago

Dr dixee 980 posts

Topic: General Chat / I'm Santa

PS3

 

14 hours ago ago

Dr dixee 980 posts

Topic: General Chat / Perfect World International

If some time down the road I develop more free time than I can handle, I'll take
a look at it. Until then, I'm a bit too busy for a MMORPG.

 

14 hours ago ago

B Shattergolem 1344 posts

Topic: General Chat / I'm Santa

Tell me what you want for Christmas.
Now.

 

14 hours ago ago

R159 Randomman159 441 posts

Topic: General Chat / What Genre Game Are You Best At Making?

I dunno... I make different stuff, normally i don't finish them though, (with a
few more weeks of development they probably would be though).
I have made:
a top down boat/gunner game
a maze generator
puzzle game
Platform game
A side view 'protect the castle' type game
Now im making a game a bit like settlers...
I basically just try out different stuff. Never used GM for a 3d game though...
Im trying out Dark GDK for stuff like that.

 

14 hours ago ago

R159 Randomman159 441 posts

Topic: Game Development Issues / MMORPG

First a double post, now a quadruple one, man you gotta stop with them...
Yeah, i know its annoying when people don't reply but there is an EDIT button
for a reason! =D

 

14 hours ago ago

B Shattergolem 1344 posts

Topic: General Chat / Perfect World International

Nailog advertised for DDO a huge load of times a while back, so you should be
alright.

 

14 hours ago ago

Raceimage05 General Jak 30 posts

Topic: Game Development Issues / Looking for Graphic Artist

Cool sound. Dr. Salvation is already working on ambient BGM for the game. But I
don't think we have any event music yet. You know, boss battles, story scenes,
and such.

 

15 hours ago ago

Dark_lightbulb BlackEnergy 92 posts

Topic: Game Development Issues / Looking for Graphic Artist

Hello, I'm a musician myself and i do many genres mainly heavy techno, trance,
electronic all that, i can help you with music.
Here is an example of mine:
http://www.youtube.com/watch?v=Qsno3IbbP_o
By the way my YouTube name is GeneralKaza

 

15 hours ago ago

Pacman someuhguy 177 posts

Topic: Game Development Issues / 4th dimension in GM

You all lost me on the first post of this topic. What in my glorious name is a
trail?
(my first post in this Forum)

 

15 hours ago ago

Supafly_av Supafly 1335 posts

Topic: General Chat / MS Live...

...SeakierThanThou...
It was supposed to be Sneakier, but I somehow missed the 'n'... I keep kicking
myself for that. There's no way I'm paying $10 just to fix that. It'll probably
end up as either Supafly777 or FergusMacRoich, a hero of the Irish Ulster Cycle.

 

15 hours ago ago

Nopicture_small ysalamiri09 62 posts

Topic: Game Development Issues / TDS: Multiple lights?

Ok, yet again I come here for help. I'm still working on my TDS and finally got
around to making a 'flashlight' effect based on the example from the tomb game
in the apprentice book.
Here is the (loosely edited) script from the book:
{
//only draw if you have flashlight
if ( !obj_char_1.has_flashlight ) exit
//determine size of lit area
var x1,y1,x2,y2,ww;
if ( global.light_on ) ww = 800 else ww = 300
x1 = argument0-ww/2;
x2 = argument0+ww/2;
y1 = argument1-ww/2;
y2 = argument1+ww/2;
//draw darkness
draw_set_color(c_black);
draw_rectangle(0,0,x1,room_height,false);
draw_rectangle(x2,0,room_width,room_height,false);
draw_rectangle(0,0,room_width,y1,false);
draw_rectangle(0,y2,room_width,room_height,false);
subtract light image
draw_set_blend_mode(bm_subtract);
draw_background_stretched(bg_light,x1,y1,ww,ww);
draw_set_blend_mode(bm_normal)
}
That part works fine. But I also want to be able to place other lights
throughout the 'world'.
So I wrote up this:
draw_set_blend_mode(bm_subtract);
draw_background_stretched(bg_light,obj_light1.x,obj_light1.y,64,64);
draw_set_blend_mode(bm_normal)
It draws it out properly but it gets 'shadowed out' like all the other objects.
I know that it's because of the other script drawing the blackness everywhere
that isn't covered by the light for the player. What I don't know is how to
change it to work correctly. Thank you!

 

15 hours ago ago

Pacman someuhguy 177 posts

Topic: General Chat / What Genre Game Are You Best At Making?

Adventure games, I like to mix it up a bit. Personally I sometimes go a week or
two without doing anything until I get an idea then I will work for a weed or
two. I like a game to be long but exiteing never knowing what comes next.

 

15 hours ago ago

Dibujo4 drsalvation 288 posts

Topic: Game Development Issues / Looking for Graphic Artist

haha Dr. Salvation (instead of drsalvation) would be cool

 

15 hours ago ago

Supafly_av Supafly 1335 posts

Topic: General Chat / Mafia: Night two! (Originally Mafia Signups)

Bump?

 

15 hours ago ago

The_satan_pit Vlad 3692 posts

Topic: General Chat / MS Live...

Lol. I decided that "VladIII" seemed too work well :D
May I ask what your username is now supaflay? :P
Hmm. It'd be cool if everyone here could congregate in Live :P

 

15 hours ago ago

Supafly_av Supafly 1335 posts

Topic: General Chat / No ones online, what about you/

Age of Kings was epic. I'll have to get it back from my cousin, if he's done
with it.
Red Alert 2... BfME...

 

15 hours ago ago

Supafly_av Supafly 1335 posts

Topic: General Chat / MS Live...

Eh, I only use it for registering Xbox Live. I hate my username, though, so I'll
change it soon. Maybe Thursday.

Next page

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 ... 12902

(Registered users only)