View Single Post
  #7  
Old 04-04-2002, 05:17 AM
screen_name screen_name is offline
is watching you
Join Date: Mar 2002
Location: The 3rd Dimension
Posts: 2,160
screen_name is on a distinguished road
Send a message via AIM to screen_name Send a message via MSN to screen_name
Red face

just have a variable keep track of what to show

NPC Code:

// NPC made by screen_name

if (playerenters||timeout) {
if (this.track==0) {
ShowName_Goboom();
} elseif (this.track==1) {
ShowName_screen_name();
}
timeout=.1;
}

if (playertouchsme) {
this.track=abs(this.track-1);
}

function ShowName_Goboom() {
message Hola Goboom!;
}

function ShowName_screen_name() {
message Hola screen_name!;
}

__________________
[signature]insert here[/signature]
Reply With Quote