View Single Post
  #9  
Old 03-06-2002, 06:16 PM
cell424 cell424 is offline
Registered User
Join Date: Mar 2001
Location: USA/PA
Posts: 184
cell424 is on a distinguished road
Send a message via AIM to cell424
These scripts are from g2k1 and must be given full credit to.

NPC Code:

if (created)
dontblock;
//#CLIENTSIDE
if (playerenters) {
setcoloreffect 1,1,0,0.4;
drawaslight;
this.light = 2;
timeout = 0.05;
}
if (timeout) {
this.light += random(-0.2,0.2);
if (!(this.light in |1,3|))
this.light = 2;
setzoomeffect this.light;
timeout = 0.05;
}



NPC Code:

if (created)
dontblock;
//#CLIENTSIDE
if (playerenters) {
setcoloreffect 1,0,0,0.99;
drawaslight;
this.light = 2;
timeout = 0.05;
}
if (timeout) {
this.light += random(-0.2,0.2);
if (!(this.light in |1,3|))
this.light = 2;
setzoomeffect this.light;
timeout = 0.05;
}

__________________
Trunks
Reply With Quote