Thread: Bomy Caverns
View Single Post
  #7  
Old 03-14-2001, 12:14 AM
grim_squeaker_x grim_squeaker_x is offline
Retired Oldbie
grim_squeaker_x's Avatar
Join Date: Mar 2001
Posts: 3,084
grim_squeaker_x will become famous soon enough
Well I'm going to be a friendly guy and help a bit for the password, the following is apretty good way to ensure that only people with authorization can enter:
NPC Code:
if (playerchats) {
if (strequals(#c,password)) {
setplayerprop #c(0),;
hidelocal;
dontblocklocal;
timeout = 5;
}
else {
message Sorry, that isn't the password;
timeout = 3;
}
}
if (timeout) {
showlocal;
bloackagainlocal;
message ;
}

__________________

Reply With Quote