Jump to content


Messmerd

Member Since 01 Jun 2012
Offline Last Active Yesterday, 10:37 PM

Posts I've Made

In Topic: Where Are You From?

Yesterday, 09:50 PM

I'm from Pennsylvania, the state where we sometimes wear shorts and a sweatshirt at the same time, know several people who have hit a deer on the road more than once, and measure distance in hours.   Among other things.


In Topic: The Great Gmcjam #10 Announcement Topic!

19 April 2013 - 10:06 PM

Hooray!!  :biggrin:

 

...and I got the 1st post too!


In Topic: [Pokemon] Have You Ever Found A Legendary Dog?

18 April 2013 - 11:47 PM

...

(don't remember the name of town and routes).

I think it is Ecruteak City and Route 37, but I'm not completely sure.


In Topic: [Pokemon] Have You Ever Found A Legendary Dog?

16 April 2013 - 11:26 PM

I caught suicune on Gold...


In Topic: Making Fuel

06 April 2013 - 03:49 PM

Ok, for the fuel to go down only when you are pressing the spacebar, just replace that other alarm 0 code with this:

 

alarm[0] = room_speed;
if fill_up==0 
{ 
if keyboard_check(vk_space)
{
if fuel>=5 fuel-=5; 
else 
{ 
fuel=0; 
fill_up=1;
exit 
}
}
} 
else 
{ 
if fuel<=99 
fuel+=1; 
else 
fill_up=0; 
}

:)