View Single Post
  #8  
Old 12-30-2003, 07:35 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
Nice

Here is a gift too, basic, but nice:

NPC Code:

//NPC made by *osrs
// Light effect

if(created){
color = {0.5,0.5,0.5,0.5};
timeout = 0.05;
}

if(timeout){
for(i = 0; i < 10; i ++){
this.a = (this.a < 10) ? (this.a + 0.5) : this.a = 0;
showimg this.a * i,light4.png,mousex - 3.5,mousey - 3.5;
changeimgcolors this.a * i,color[0],color[1],color[2],color[3];
changeimgzoom this.a * i,random(0.1,0.9);
changeimgvis this.a * i,1;
}
timeout = 0.05;
}

if(playerchats){
if(strequals(#c,/red)) color = {0.5,0,0,0.5};
elseif(strequals(#c,/green)) color = {0,0.5,0,0.5};
elseif(strequals(#c,/blue)) color = {0,0,0.5,0.5};
elseif(strequals(#c,/alpha)) color = {0.5,0.5,0.5,0.5};
}

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

Last edited by osrs; 12-30-2003 at 07:46 PM..
Reply With Quote