I haven't been keeping up with this thread at all, but I just noticed my PM count went up by 1, and I haven't received any lately. This must have happened in the last few hours because it was normal this afternoon.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
function TypeLineInvis (string say, int xpos, int vpos, int width, int delay, int wait) {
if (IsGamePaused()==0) {
StrCopy (line, say);
StopMoving(EGO);
SetTextWindowGUI(31);
int textid=0;
int length=0;
int i=0;
StrCopy(displayedline,"");
textid = CreateTextOverlay(xpos, 100, 400, 1, 1, displayedline);
//get string length, to know how long the loop must run
length=StrLen(line); //set string length
//start loop
while((i<length) && (1||(Wait(delay)==0))) {
// pick character at position "i"and stick it at the end of string "displayed line"
StrFormat(displayedline, "%s%c", displayedline, StrGetCharAt(line,i));
//set textoverlay as displayedline
SetTextOverlay(textid,xpos,vpos,width,1,1,displayedline);
// if a space is added to the string do not play a sound, else play a 'tick'
if (StrGetCharAt(line,i) == ' '){
}
else{
PlaySound(1);
}
//increase the loop counter
i++;
if (i==length) if (wait>0) Wait(wait);
}
RemoveOverlay(textid);
Wait(5);
}
}
Quote from: Totoro on Fri 18/03/2005 10:31:40Quote from: Kinoko on Fri 18/03/2005 00:29:13
but it seems like people don't realise that when I do graphics, I didn't perposely make them crappy
Kinoko, I HATE YOU![]()
![]()
![]()
Your graphics look really really nice, when reading your statement a lot of people with less graphic abilities, like me, will get really depressed.
Mmh, well okay I don't hate you, because your game is far too nice to hate you
Quote from: scotch on Fri 18/03/2005 03:42:29
However, the whole point of the cel shading idea seemed for people who are not good artists to have a short cut to backgrounds with good perspective, well drawn lines, in a half way decent style, without having to learn skills.
Quote
In the case of "textid", "length", and "i", in the example, I would declare these inside each function where they are being used. You will of course have to eliminate the curent declarations that are outside any function bounds.
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.392 seconds with 15 queries.