View Single Post
  #3  
Old 05-28-2001, 11:36 AM
freddyfox freddyfox is offline
Banned
freddyfox's Avatar
Join Date: Mar 2001
Posts: 6,705
freddyfox is on a distinguished road
Quote:
Originally posted by General
NPC Code:

if (playerenters) show;
if (playertouchsme && strequals(#g,GuildName)) {
hide;
sleep 3;
show;
}

Actually, it should be,

NPC Code:

if (playerenters) show;
if (playertouchsme && strequals(#g,GuildName)) {
hidelocal;
dontblocklocal;
sleep 3;
showlocal;
blockagainlocal;
}

Reply With Quote