Thread: arrays
View Single Post
  #15  
Old 03-11-2002, 04:53 AM
nyghtGT nyghtGT is offline
Banned
nyghtGT's Avatar
Join Date: Jun 2001
Posts: 3,993
nyghtGT is on a distinguished road
Send a message via AIM to nyghtGT
Quote:
Originally posted by Kaimetsu


Yes, but I couldn't guarantee that it would get the timing exactly right - it could have 1.05 seconds between calls occasionally etc. Plus does "npcid" work? I thought it'd just be "id".
i usually would just do something like this ...
NPC Code:

NPC Code:

if (playerenters) {
message #v(random(0,1));
sleep 3;
for (i=0;i<npcscount;i++) {
callnpc i,playerenters;
}
}



Reply With Quote