View Single Post
  #1  
Old 01-08-2002, 10:56 AM
psichill psichill is offline
Where's Princess Garnet..
psichill's Avatar
Join Date: Nov 2001
Location: In my chair ;D
Posts: 1,713
psichill is on a distinguished road
I need some help!

Okay I need some help with an NPC.
I am trying to make it where, when you walk onto it it lights up but when you walk off the lights turn off.

Here was my attempt!

// NPC made by Ramsey
if (created) {
setimg whatever.gif;
dontblock;
drawunderplayer;
}
//#CLIENTSIDE
if (playertouchsme) {
setcoloreffect 1,1,1,0.99;
drawaslight;
sleep 1;
}
__________________
Reply With Quote