Page 1 of 1
/w <pc> output isnt the same as MQ1
Posted: Sun May 02, 2004 1:39 pm
by BadBoy
If i remember correctly, in MQ1, if you did a /who all <name>, it would come up with all the details of the player, and same with the GMs, even the invis ones.
With MQ2, I find that /w all <name> output is the same as if i didnt have MQ running at all. IE
MQ2
-----
/w all badboy
output: [ANONYMOUS] Badboy
MQ1
-----
/w all badboy
output: [1 Ranger] Badboy (Wood Elf) Zone: Gfay
Am i being dumb and not doing something correctly, or did MQ2 change that structure around?
Posted: Sun May 02, 2004 3:09 pm
by devNull
Not sure about MQ1 since I'm relatively new here but the current MQ version of "who" will call the EQ "who" if you use the "all" argument.
Code: Select all
VOID SuperWho(PSPAWNINFO pChar, PCHAR szLine)
.
.
.
if ((!stricmp(szLine,"all")) ||
(!strnicmp(szLine,"all ",4)) ||
(!strnicmp(szLine+strlen(szLine)-4," all",4)) ||
(strstr(szLine," all ")))
{
cmdWho(pChar, szLine);
return;
}
.
.
.
Posted: Sun May 02, 2004 3:13 pm
by BadBoy
hmm, unfortunately, if you dont use the 'all' argument, it will not bring that person up at all.
Posted: Sun May 02, 2004 3:21 pm
by Zeus
Pretty sure you're wrong. Client receives zone info, which is why you can see anon/role people with all the details, I'm guessing when you do a who all the EQ function doesn't gives you all the player info, just status/name.
Posted: Sun May 02, 2004 3:27 pm
by devNull
The good stuff still works but only if you're in the same zone.
Maybe one of the devs can explain why the change was made. Perhaps the server either doesn't send all the good info on a "who all" or limits the amount of data being sent back. But, that's just a guess.
Posted: Sun May 02, 2004 3:27 pm
by BadBoy
i can see the details of the player, but only in the same zone. MQ1 had it so you could see details of the player in any zone, and showed hidden Guides.
Posted: Sun May 02, 2004 3:29 pm
by Zeus
How long ago in mq1? Before of after they tuned the server that dealed with the /who calls?
Posted: Sun May 02, 2004 3:35 pm
by BadBoy
hmm,
well the last time i used it, plaz went MIA and then everyone thought MQ was finished. I believe everything was the same up to that point, but now its all changed.
Posted: Sun May 02, 2004 4:00 pm
by Lax
no, you could 100% never see more information about an anonymous person through /w all. that has never changed. sorry
in order for MQ1 or 2 to display complete information about people in /who all, the client would have to receive a SPAWNINFO for every fucking person on the entire server. You lag when zoning because you're receiving ~400 SPAWNINFO ... Imagine receiving 2000 of them, and receiving them constantly. I'm telling you it never happened the way you remember it.
Posted: Sun May 02, 2004 4:29 pm
by BadBoy
heh, kk, just as i said, i am dumb
Must have just thought so
Thanks for the info.