View Single Post
  #9  
Old 04-04-2002, 10:53 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
Quote:
Originally posted by screen_name
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!;
}

yes i know how you could do that...but my way is just shorter and easyer
__________________
Reply With Quote