Thread: Vars and stuff
View Single Post
  #1  
Old 07-16-2001, 06:17 AM
Slaktmaster Slaktmaster is offline
man with the mastahplan
Slaktmaster's Avatar
Join Date: Apr 2001
Location: Half-way over the river styx
Posts: 4,422
Slaktmaster is an unknown quantity at this point
Send a message via ICQ to Slaktmaster Send a message via AIM to Slaktmaster
Vars and stuff

If I do a weapon like this:

if (playerenters) {
timeout=1;
}

if (timeout) {
if (level.wee==1) {
setplayerprop #c,Wee;
}
timeout = 1;
}

I then make an NPC in the level that is like this:

if (playerenters) {
timeout = .05;
}

if (timeout) {
level.wee = 1;
timeout = .05;
}

Would this make the character say Wee when I enter the level and have the weapon?
Reply With Quote