The RPG Maker Resource Kit

Other Game Creation => Other Game Making Programs => Topic started by: &&&&&&&&&&&&& on July 09, 2007, 07:44:59 AM

Title: [GM] Some Q's I need A's too...
Post by: &&&&&&&&&&&&& on July 09, 2007, 07:44:59 AM
Just some, I thought it would be better then starting 20 topics.

1- How do i make the screen focus on just the player, when I make a really big map it zooms out.

2- How do I push the player forward and still let them go backwards forwards and up/down? Like in arrow's space ship game.

3- How do you make a gif run at normal speed, when I put on in, it plays really fast.
Title: Re: Some Q's I need A's too...
Post by: Arrow on July 09, 2007, 06:34:34 PM
1- views. Look in the GM helpfile, and database search for views. :D

2. My guy is actually in a 320x240 room that does not move. The background speed is set to LOOK like its moving, and enemies are generated with timers. :D

3. Room speed, or in the create event for your object, make a code, and have it say image_speed=*numberwithoutthesetwoasterisks*
Title: Re: Some Q's I need A's too...
Post by: &&&&&&&&&&&&& on July 09, 2007, 08:39:49 PM
1- How do i make the screen focus on just the player, when I make a really big map it zooms out.

2- How do I push the player forward and still let them go backwards forwards and up/down? Like in arrow's space ship game.

3- How do you make a gif run at normal speed, when I put on in, it plays really fast.


Do you know how I could do number 2?
Title: Re: Some Q's I need A's too...
Post by: Arrow on July 09, 2007, 09:49:39 PM
....Just like you would move anything else, with things set up like I just said.
Title: Re: Some Q's I need A's too...
Post by: Lord Dante on July 09, 2007, 10:55:08 PM
1- How do i make the screen focus on just the player, when I make a really big map it zooms out.

2- How do I push the player forward and still let them go backwards forwards and up/down? Like in arrow's space ship game.

3- How do you make a gif run at normal speed, when I put on in, it plays really fast.


Do you know how I could do number 2?

....Just like you would move anything else, with things set up like I just said.

I think what he's saying, is that although you provided one way to do it, he's looking for a way to actually push the player forward and still let them go backwards, forwards, up, and down.
Title: Re: Some Q's I need A's too...
Post by: Arrow on July 10, 2007, 12:12:58 AM
Oh. Uh, in the create event, set the hspeed. Then make all your key movements change the speed relative to that, and reset the speed when released.
Title: Re: Some Q's I need A's too...
Post by: &&&&&&&&&&&&& on July 10, 2007, 03:18:51 AM
1- How do i make the screen focus on just the player, when I make a really big map it zooms out.

2- How do I push the player forward and still let them go backwards forwards and up/down? Like in arrow's space ship game.

3- How do you make a gif run at normal speed, when I put on in, it plays really fast.


Do you know how I could do number 2?

....Just like you would move anything else, with things set up like I just said.

I think what he's saying, is that although you provided one way to do it, he's looking for a way to actually push the player forward and still let them go backwards, forwards, up, and down.

 ;D Thank you, I'm bad it asking questions.
Title: Re: Some Q's I need A's too...
Post by: Lord Dante on July 10, 2007, 03:22:56 AM
no problem ^^

(i was lazy so i stole most of your #2 bullet)

and now for an answer...
Title: Re: Some Q's I need A's too...
Post by: &&&&&&&&&&&&& on July 10, 2007, 03:33:15 AM
4- With the veiw thing, how do I make it not have to touch the edge before the veiw moves.

x = player
0 = enemy
| = line of sight

Quote
X       |      o
   X    |    o
      x | o
        xo        |
   
Then the line of sight changes

I want it like

Quote
x      |       o
 X       |  o
   x       o|
so you can see the enemies before they hit you.
Title: Re: Some Q's I need A's too...
Post by: Arrow on July 10, 2007, 04:30:31 AM
Make the h border and v borde the same as the views width and height.
Title: Re: Some Q's I need A's too...
Post by: &&&&&&&&&&&&& on July 10, 2007, 04:48:47 AM
Make the h border and v borde the same as the views width and height.

^_^ Thanks.

5- How do i make the ship fire in burst, and not a stream of bullet, maybe like one every 5 seconds.
Title: Re: Some Q's I need A's too...
Post by: Lord Dante on July 10, 2007, 04:58:41 AM
you mean like, fanning out or just a burst?

because with a burst, i would think you could just create the given number of bullets for one button press, and then have to wait between bursts.
Title: Re: Some Q's I need A's too...
Post by: &&&&&&&&&&&&& on July 10, 2007, 05:04:54 AM
you mean like, fanning out or just a burst?

because with a burst, i would think you could just create the given number of bullets for one button press, and then have to wait between bursts.

 ;9 There I go again with my bad question asking skills. 

Quote
and then have to wait between bursts
yes
I was asking how to make it wait, so It only fire every 5 seconds.
Title: Re: Some Q's I need A's too...
Post by: Lord Dante on July 10, 2007, 05:06:58 AM
well, im not too sure the actual commands and such for what I suggested, but I'm sure you or Arrow do...^^;
Title: Re: Some Q's I need A's too...
Post by: &&&&&&&&&&&&& on July 10, 2007, 05:24:06 AM
well, im not too sure the actual commands and such for what I suggested, but I'm sure you or Arrow do...^^;

 ;9 I don't know how to do it...
Title: Re: Some Q's I need A's too...
Post by: Lord Dante on July 10, 2007, 05:39:26 AM
there's always the GM help file!

i have a question of my own arrow...

you know how alot of tutorials and such say to paste a certain bit of code for an event?
do you just use the "initiate code" command thingie or are they referring to something else? The help file doesn't really say much about the code command apart from the obvious.
Title: Re: Some Q's I need A's too...
Post by: Arrow on July 10, 2007, 06:38:44 PM
There's a button in the control tab that looks like a piece of paper (NOT the one with the green arrow on it). Right click it, paste your code, click the checkmark, and you should be set. :D
Title: Re: Some Q's I need A's too...
Post by: Lord Dante on July 11, 2007, 01:59:39 AM
thanks ^^

but, IS that where all the stuff from the tutorials go?

they usually just say "use this" or "copy and paste this" without really saying anything else : /
Title: Re: Some Q's I need A's too...
Post by: Arrow on July 16, 2007, 01:58:04 AM
Well, worst comes to worst, you could link the advice they gave, and I could interpret for you.
Title: Re: Some Q's I need A's too...
Post by: &&&&&&&&&&&&& on July 16, 2007, 04:50:51 AM
1- How do i make the screen focus on just the player, when I make a really big map it zooms out.

2- How do I push the player forward and still let them go backwards forwards and up/down? Like in arrow's space ship game.

3- How do you make a gif run at normal speed, when I put on in, it plays really fast.

4- With the veiw thing, how do I make it not have to touch the edge before the veiw moves.

5- How do i make the ship fire in burst, and not a stream of bullet, maybe like one every 5 seconds.

6- How do I make walls solid, I know there is a little box [] solid but that doesn't stop the object from just passing through things.

Title: Re: Some Q's I need A's too...
Post by: Arrow on July 16, 2007, 12:06:48 PM
You have to tell it to stop upon collision with solid objects. For instance, if an object has gravity in the step event, you'd have to say:

If position (0,1) !=free, set gravity = 0.

(there's a thing in the control tab for the object.)