Originally posted by osrs
Btw,this remember a funny thing that ive seen,i saw a script 2 weeks ago (i wont say who was the scripter,but its a famous person),he made a scrolling message like this:
code:--------------------------------------------------------------------------------
if(playerenters){
message H;
sleep0.5;
message Hi;
sleep0.5;
message H;
sleep0.5;
message;
timeout = 1;
}
--------------------------------------------------------------------------------
NPC Code:
if(playerenters||timeout) {
setstring this.message,H Hi H;
tokenize #s(this.message);
for (i=0;i<4;i++) {
message #t(i);
sleep .5;
}
timeout=1;
}
Just a quick script but sadly it is not that much shorter than the first one lolz
Didn't test it i just figured it would work.