Moderator: MacroQuest Developers






Code: Select all
if (pSearchSpawn->bNoGuild && (pSpawn->GuildID < MAX_GUILDS))
return FALSE;Code: Select all
} else if (!stricmp(szArg,"noguild")) {
pSearchSpawn->bNoGuild = TRUE;Code: Select all
BOOL bNoGuild;The reason behind this is that your client is only receiving packet information on the current zone you're in. Since you're not in any other zones (obviously) then you aren't getting the packet information (specific class/level/etc) on any outside zones. Only your current zone is stored client side (which is why you can still access /who while going LD), but anything outside your zone (e.g. /who all [whatever]) requires accessing server-side information.VesperKnight wrote:so basically, there is no way to #1 use the MQ2 /who to see passed the anon/rp flag for people not in your current zone ?