Charas-Project

Game Creation => Requests => RPG Maker Programming => Topic started by: Dashman on September 03, 2005, 03:14:04 AM

Title: Question about images
Post by: Dashman on September 03, 2005, 03:14:04 AM
In some games, I have seen intros like Star Wars, were the words are going up. Can anyone tell me how to do it? They have some events or long things and I don't really understand it.

If possible, try to put the coding. I'm not really good at understanding instructions, as some people may know
Title:
Post by: Linkizcool on September 03, 2005, 03:36:46 AM
the simplest way would be to put the image with the words at the very bottom and make a move image command that moves it upwards. Not the most and impressive way of coding it, but im the master at making simplified coding, which isnt always a good thing, lol, but here its just fine. Play around with that and youll get good results.
Title:
Post by: Me5kuTis on September 03, 2005, 08:45:58 AM
If you have text like in star wars. (The skewed one). Then you start at the bottom with 200% magnify ang move the picture up while making it smaller, say 50% magnify.
Just play around with pictures. I've once made a 3d look with a picture. It was awesome.
Title:
Post by: Dashman on September 03, 2005, 05:23:58 PM
Linkisscool is the one who guessed how I saw it. Let's say, it's a not so big image, let's say it takes 30 seconds to read it. How do I make it to move up? I don't really understand images
Title:
Post by: Linkizcool on September 03, 2005, 05:37:22 PM
<>Show Picture 1,Text1,(-9,50)
<>Move Picture 1 (599,50)
<>Erase Picture 1



This is probably messed up badly, you might have to move the picture up one coordinate at a time or it might move too fast.


<>Show Picture 1,Text1,(-9,50)
<>Move Picture 1 (-8,50)
<>Move Picture 1 (-7,50)
<>Move Picture 1 (-6,50)
<>Move Picture 1 (-5,50)
And so on and on until the picture finally exits the top of the screen
<>Erase Picture 1
 

And dont trust my coordinates I set up because:
1:I dont know your picture sized
2:I might have gotten the X/Y coordinates messed up


But if you play around with this you'll get good results


A good game to check out at SkyTower games is Super Smash Brothers:Master Hands Revenge it has some thing like i showed here.

Credits to whoever made SSB:MAster Hands Revenge


Hope it helps! :jumpin:  :jumpin:  :jumpin:
Title:
Post by: Dashman on September 03, 2005, 10:03:21 PM
Notice: I DID play it. A really hard game, I just found the place where Jigglypuff is. It's really hard to get level up, and some times monsters are unfairly strong. Like the one who have Jigglypuff. But I did not understand it's coding, so I made this post. But I think I got enough help here. thanks
Title:
Post by: Me5kuTis on September 03, 2005, 10:13:04 PM
Quote
Originally posted by Linkizcool
<>Show Picture 1,Text1,(-9,50)
<>Move Picture 1 (-8,50)
<>Move Picture 1 (-7,50)
<>Move Picture 1 (-6,50)
<>Move Picture 1 (-5,50)
And so on and on until the picture finally exits the top of the screen
<>Erase Picture 1


WTF?!

<>Show Picture 1,STTEXT,(-10,120)
<>Move Picture 1 (330,120)(30.0)(W)
<>Move Picture 1 (340,120)(1.0)(W) (This one fades it with transparency set  to 0)

That's it. Try it.
 _ghost_    <-- I desperately wanted to post that
Title:
Post by: Linkizcool on September 04, 2005, 03:16:10 AM
Quote
Originally posted by Me5kuTis
quote:
Originally posted by Linkizcool
<>Show Picture 1,Text1,(-9,50)
<>Move Picture 1 (-8,50)
<>Move Picture 1 (-7,50)
<>Move Picture 1 (-6,50)
<>Move Picture 1 (-5,50)
And so on and on until the picture finally exits the top of the screen
<>Erase Picture 1


WTF?!

<>Show Picture 1,STTEXT,(-10,120)
<>Move Picture 1 (330,120)(30.0)(W)
<>Move Picture 1 (340,120)(1.0)(W) (This one fades it with transparency set  to 0)

That's it. Try it.
 _ghost_    <-- I desperately wanted to post that

I guess my first idea was right
Title:
Post by: Me5kuTis on September 04, 2005, 05:29:32 AM
I've always done it my way and it was perfect. And what's with the 1 pixel at a time thing ? Why not check the box wait until done.