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;
}