View Single Post
  #7  
Old 06-06-2003, 09:59 PM
osrs osrs is offline
Graalian since 1998
osrs's Avatar
Join Date: Mar 2002
Location: Brazil
Posts: 2,724
osrs is on a distinguished road
Send a message via ICQ to osrs Send a message via AIM to osrs Send a message via MSN to osrs Send a message via Yahoo to osrs
I usually use more arrays than lots of this.vars,like:

array = {10,20,30,40};

instead of

this.var1=10;
this.var2=20;

as Pokilty already said,i like to use for loops:

for(i=0;i<4;i++){changeimgvis i,4;}

instead of

changeimgvis 1,4;
changeimgvis 2,4;


You can find many ways to make your script shorter.
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:

NPC Code:

if(playerenters){
message H;
sleep0.5;
message Hi;
sleep0.5;
message H;
sleep0.5;
message;
timeout = 1;
}



hehe
__________________
"Ability is what you are capable of doing. Motivation determines what you do. Attitude determines how well you do it."
Facebook: facebook.com/raysilvadotnet /
Reply With Quote