Novice made one and he said to post if it was modified,
so I made one from scratch that can reset itself.

I fixed a few buggy things and you do not need to finish it with a |
I thought there would be a simpler solution, but it turned out to be a bit more complicated then what I though it would be,
I just made this function really quick so it might not be that good,
but here is what you put in the global
- Code: Select all
int wait, started, flash, skip, finish, sel;
int i, I, i2, c;
wait = 0;
i = 0;
started = 0;
flash = 0;
skip = 0;
finish = 0;
void wait_action(float vol)
{
PlaySound2("data/c1.wav", vol, 1, 0.000000);
}
void type_out(char txt[255], char s[1],int num, int del)
{
if(strlen(s) > 1)strncpy(s, s, 1);
if(started == 0)
{
i = 0;
finish = 0;
flash = 0;
strcpy(text, "0");
strcpy(text, s);
started = 1;
}
I = strlen(txt);
i2 = strlen(text) - 1;
wait -= 1;
if(wait <= 0 && i < I)
{
wait_action(.5);
strcpy(&text[i2], " ");
strncat(text, &txt[i], 1);
strcat(text, s);
i++;
wait = num + round(rand(del));
}
if(wait <= 0 && i >= I)
{
finish = 1;
if(flash == 0) {
skip = 1;
flash = 1;
}
if(skip == 0) {
if(flash == 1)flash = 2;
else
{
flash = 1;
}
}
skip = 0;
if(flash == 1) {
strcpy(&text[i2], "");
}
if(flash == 2) {
strncat(&text[i], s, 1);
}
wait = num * 3;
}
}
void reset_type(int m)
{
finish = 1;
started = 0;
c++;
if(c > m)c = 0;
sel = c;
}
this version is the old one that has a few more vars, but the .exe seems to crash

- Code: Select all
char s1[255], s2[255];
int wait, started, flash, skip, finish, sel;
int i, I, i2, c;
wait = 0;
i = 0;
started = 0;
flash = 0;
skip = 0;
finish = 0;
void type_out(char txt[255], char s[1],int num, char l[255], char l2[255], int del, float vol)
{
if(strlen(s) > 1)strncpy(s, s, 1);
if(started == 0)
{
sprintf(s1, "data/%s", l);
sprintf(s2, "data/%s", l2);
i = 0;
finish = 0;
flash = 0;
strcpy(text, "0");
strcpy(text, s);
started = 1;
}
I = strlen(txt);
i2 = strlen(text) - 1;
wait -= 1;
if(wait <= 0 && i < I)
{
PlaySound2(s1, vol, 1, 0.000000);
strcpy(&text[i2], "");
strncat(text, &txt[i], 1);
strcat(text, s);
i++;
wait = num + round(rand(del));
}
if(wait <= 0 && i >= I)
{
finish = 1;
if(flash == 0) {
skip = 1;
flash = 1;
}
if(skip == 0) {
if(flash == 1)flash = 2;
else
{
flash = 1;
}
}
skip = 0;
if(flash == 1) {
strcpy(&text[i2], "");
}
if(flash == 2) {
PlaySound2(s2, vol, 1, 0.000000);
strncat(&text[i], s, 1);
}
wait = num * 3;
}
}
void reset_type(int m)
{
finish = 1;
started = 0;
c++;
if(c > m)c = 0;
sel = c;
}
old one: here it is taken apart: type_out("your text", "the character you want it to append", the delay number, "the name of the sound.its type that you want to play while it types it out", "the name of the second sound you want it to play when it finishes.", the random delay number, the volume number);//volume number range is from 0 to 1

new one: type_out("your text", the character you want to append it with", the delay number, the added onto random delay number);

the new one is alot simpler!

to make it play a sound for the wait_action just modify the global code there to match the sound you want it to play

all you have to do is save the sounds you want in you're games data folder,
then if you wanted it to play beep1 for each character, and beep2 when it finishes and the appended char is flashing and if the sounds are .wav, and the character to append it with is |, and if you wanted it to type out hello kind of fast use this,
- Code: Select all
type_out("hello", "|", 3, "beep1.wav", "beep2.wav", 6, .5);

you do not have to make sel a variable, it will make it for you.
on the event you want to change the value of sel,
use reset_type(3);
the number inside the () represents the max value of sel,
you can change this to whatever you want and add more if(sel == events

enjoy!
if there are any questions let me know.

Feel free to use it!

(I would like a mention in the credits

oh, and you can still use \n and all those other text functions.

UPDATED WITH VOLUME SELECT FOR SOUND!
http://www.youtube.com/watch?v=oN2eUKe0Bek
here is a video link to view somthing that you could make, the video is unedited.
