Jump to content


lemonheadsg

Member Since 06 Dec 2009
Offline Last Active May 19 2013 03:39 AM

Posts I've Made

In Topic: Pricing Issue on Steam

25 November 2012 - 06:16 AM

This is probably something you'll want to contact steam for. And yes, before I saw a game was on sale (but in the cart it wasn't), I emailed the customer support number, and within a day it was fixed.

-cheers!
uninthar

In Topic: Chunk Loading

12 November 2012 - 10:40 PM

You could just deactivate objects that are outside of the view using instance_deactivate_region();
there is a help subject about it inside game maker.

-cheers!
uninthar

In Topic: Suddenly text is drawn broken up over sev. lines

31 October 2012 - 07:13 PM

Are you using any surfaces? Or either the draw_set_halign() or the draw_set_valign() commands?

In Topic: Game Maker Setting Maximum rotation

30 September 2012 - 04:19 AM

Step Event:
if image_angle < 0{
   image_angle = 0;
}
if image_angle > 90{
   image_angle = 90;
}

-cheers!
uninthar

In Topic: GMS Free

17 September 2012 - 11:06 AM

For the standard version you shouldn't need any key, try uninstalling what you have and downloading it again from here .

However, if you do want to get serious with game development Game Maker Studio is by far worth the $99, or you can even buy the $49 version if money is tight to get started.

-cheers!
uninthar