Scrolling Text
- derbon
- Chaos Rift Cool Newbie
- Posts: 54
- Joined: Tue Jun 09, 2009 7:25 pm
- Current Project: Big Nasty Enemies
- Favorite Gaming Platforms: NES SMS snes PC N64 PS2 Vectrex The Arcade Machine
- Programming Language of Choice: C++, Perl
- Location: why shud i tell u u mite steal my tv
- Contact:
Scrolling Text
hi. i need to know how to make scrolling text like in final fantasy v advance
help
help
i think the best paint program would be microsoft paint + paint.NET+graphics gale + Paint shop Pro 7 + photoshop CS3, it would be called Paint Gale Pro Shop.NET,
http://youtube.com/gonduda
http://youtube.com/gonduda
-
- Chaos Rift Junior
- Posts: 209
- Joined: Thu Feb 12, 2009 8:46 pm
Re: Scrolling Text
WORD::BADBABE;
MAKE ScrollingText :a^ Frame*& [
^Z^^<do>M<<void>>Scroll0[
@BADBABE::*&::^txt(2x'010100110110111101101101011001010010000001110100011001010111100001110100',x,y)
*&::x++;
*&::y++;
<do>Scroll&]];
I didn't know what language you wanted that code in, so I just made one. Simple enough.
MAKE ScrollingText :a^ Frame*& [
^Z^^<do>M<<void>>Scroll0[
@BADBABE::*&::^txt(2x'010100110110111101101101011001010010000001110100011001010111100001110100',x,y)
*&::x++;
*&::y++;
<do>Scroll&]];
I didn't know what language you wanted that code in, so I just made one. Simple enough.
- ibly31
- Chaos Rift Junior
- Posts: 312
- Joined: Thu Feb 19, 2009 8:47 pm
- Current Project: Like... seven different ones
- Favorite Gaming Platforms: Xbox 360, Gamecube
- Programming Language of Choice: C++, ObjC
- Location: New Jersey.
Re: Scrolling Text
...
Website/Tumblr
My Projects
The best thing about UDP jokes is that I don’t care if you get them or not.
- Moosader
- Game Developer
- Posts: 1081
- Joined: Wed May 07, 2008 12:29 am
- Current Project: Find out at: http://www.youtube.com/coderrach
- Favorite Gaming Platforms: PC, NES, SNES, PS2, PS1, DS, PSP, X360, WII
- Programming Language of Choice: C++
- Location: Kansas City
- Contact:
Re: Scrolling Text
Scrolling text like movie credits, or text that slowly "types out" in a dialog box?
- Falco Girgis
- Elysian Shadows Team
- Posts: 10294
- Joined: Thu May 20, 2004 2:04 pm
- Current Project: Elysian Shadows
- Favorite Gaming Platforms: Dreamcast, SNES, NES
- Programming Language of Choice: C/++
- Location: Studio Vorbis, AL
- Contact:
Re: Scrolling Text
Uhm, change the y coordinate.
- derbon
- Chaos Rift Cool Newbie
- Posts: 54
- Joined: Tue Jun 09, 2009 7:25 pm
- Current Project: Big Nasty Enemies
- Favorite Gaming Platforms: NES SMS snes PC N64 PS2 Vectrex The Arcade Machine
- Programming Language of Choice: C++, Perl
- Location: why shud i tell u u mite steal my tv
- Contact:
Re: Scrolling Text
ok i mean the text that "slowly pops up"
and i don't speak that script/php whatever-it-is
and didjya read the ffv part, GET AN EMULATER and test it out
and i don't speak that script/php whatever-it-is
and didjya read the ffv part, GET AN EMULATER and test it out
i think the best paint program would be microsoft paint + paint.NET+graphics gale + Paint shop Pro 7 + photoshop CS3, it would be called Paint Gale Pro Shop.NET,
http://youtube.com/gonduda
http://youtube.com/gonduda
Re: Scrolling Text
Found this with google:
You should be able to figure it out with that.
Code: Select all
#include <iostream>
int main()
{
char text[] = "Hello. This is a typewriter effect done in C.";
int len = strlen(text);
for (int i = 0; i <= len; i++)
{
printf("%c", text[i]);
_sleep(150);
}
return 0;
}
Re: Scrolling Text
What the fuck is wrong with you?derbon wrote:and didjya read the ffv part, GET AN EMULATER and test it out
- ibly31
- Chaos Rift Junior
- Posts: 312
- Joined: Thu Feb 19, 2009 8:47 pm
- Current Project: Like... seven different ones
- Favorite Gaming Platforms: Xbox 360, Gamecube
- Programming Language of Choice: C++, ObjC
- Location: New Jersey.
Re: Scrolling Text
You expect us to go get an emulator and play Final Fantasy V, when you haven't told us what your trying to do the "scrolling text" in? Could it be C++, or a website type thing with Javascript? Or could it be Flash, or could it be trying to figure out how to display Text on a calculator? Or maybe you want us to teach you sign language?
First, tell us what language you are programming in(if you are programming).
Second, tell us what you don't understand about "scrolling text".
Then, maybe we could help you.
First, tell us what language you are programming in(if you are programming).
Second, tell us what you don't understand about "scrolling text".
Then, maybe we could help you.
Website/Tumblr
My Projects
The best thing about UDP jokes is that I don’t care if you get them or not.
- Falco Girgis
- Elysian Shadows Team
- Posts: 10294
- Joined: Thu May 20, 2004 2:04 pm
- Current Project: Elysian Shadows
- Favorite Gaming Platforms: Dreamcast, SNES, NES
- Programming Language of Choice: C/++
- Location: Studio Vorbis, AL
- Contact:
Re: Scrolling Text
Seriously, derbon can go fuck himself.K-Bal wrote:What the fuck is wrong with you?derbon wrote:and didjya read the ffv part, GET AN EMULATER and test it out
- Bakkon
- Chaos Rift Junior
- Posts: 384
- Joined: Wed May 20, 2009 2:38 pm
- Programming Language of Choice: C++
- Location: Indiana
Re: Scrolling Text
gud postin itt
- Moosader
- Game Developer
- Posts: 1081
- Joined: Wed May 07, 2008 12:29 am
- Current Project: Find out at: http://www.youtube.com/coderrach
- Favorite Gaming Platforms: PC, NES, SNES, PS2, PS1, DS, PSP, X360, WII
- Programming Language of Choice: C++
- Location: Kansas City
- Contact:
Re: Scrolling Text
Dude, use some logics man.
Have a string, display a character at a time ( "stringname" ), and then pause for a bit. :P
Of course, you have to customize it for whatever library you're using.
And that's why you learn to figure simple things like this out yourself.
Have a string, display a character at a time ( "stringname" ), and then pause for a bit. :P
Of course, you have to customize it for whatever library you're using.
And that's why you learn to figure simple things like this out yourself.
- MarauderIIC
- Respected Programmer
- Posts: 3406
- Joined: Sat Jul 10, 2004 3:05 pm
- Location: Maryland, USA
Re: Scrolling Text
derbon wrote:hi. i need to know how to make scrolling text like in final fantasy v advance
help
You're in violation of preamble paragraph 2 sentence 2, 4, and likely 5, as well as the entirety of section 3. As such, this is definitely a "Post You Shouldn't Make". You are welcome to try again... in a different thread.
-> move "Posts You Shouldn't Make"
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.