Jump to content


A I R

Member Since 22 Jun 2006
Offline Last Active May 16 2013 07:09 PM

Posts I've Made

In Topic: Game Maker failing

20 July 2012 - 05:04 PM

Thanks for the solution Nocturne! And thanks for making the topic KitaoL, I would've wasted a lot of time trying to get it to work.

In Topic: Random number generator

17 July 2012 - 06:44 AM

This should also work if you don't need to use the actual number.
global.clue = choose(obj_Clue1, obj_Clue2, obj_Clue3, obj_Clue4, obj_Clue5);
instance_create(x, y, global.clue);

In Topic: Fourth of July

04 July 2012 - 04:20 PM

We're grilling burgers and having peach cobbler here. I don't plan on buying fireworks (too expensive for this poor college student), but there will be enough in the sky.

In Topic: Extension Objects

02 July 2012 - 12:45 AM

That would be a nice addition. The object_add and related functions were great to use and this would be a good replacement.

In Topic: Background colors

05 June 2012 - 06:52 PM

Also, you can set it as any color you'd like based on the red, green, blue components with the function
make_color_rgb(red, green, blue)

Use it like so, this would make a light gray color, probably not exactly the same as the c_ltgray built-in constant
background_color = make_color_rgb(192,192,192)