
07-16-2001, 06:17 AM
|
|
man with the mastahplan
|
 |
Join Date: Apr 2001
Location: Half-way over the river styx
Posts: 4,422
|
|
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? |
|
|
|