View Single Post
  #7  
Old 06-17-2004, 03:29 AM
Goboom Goboom is offline
Pixel Monkey
Goboom's Avatar
Join Date: Dec 2001
Location: Michigan
Posts: 1,702
Goboom is on a distinguished road
Send a message via ICQ to Goboom Send a message via AIM to Goboom Send a message via MSN to Goboom Send a message via Yahoo to Goboom
NPC Code:
this.width = int(width);
this.height = int(height);
setarray this.array,this.width * this.height;
for (i=0;i < this.width;i++) {
for (j=0;j < this.height;j++) {
this.array[i+j*this.width] = 3;
}
}
setshape2 this.width,this.height,this.array;


Try that.
__________________
Reply With Quote