Go Back   EQEmulator Home > EQEmulator Forums > Development > Development::Server Code Submissions

Reply
 
Thread Tools Display Modes
  #1  
Old 11-24-2010, 02:58 PM
Cottus
Fire Beetle
 
Join Date: Sep 2010
Posts: 11
Default /who all trakanon & /who all kedge

Not sure if this a titanium only issue, but doing /who all trakanon and /who all kedge would always return empty (because its sending race flags instead of the who string)

So to fix change ClientList::SendWhoAll from:

Code:
	if (whom) {
		
		whomlen = strlen(whom->whom);

		...
to:

Code:
	if (whom) {
		
		if (whom->wrace == 19) /* trakanon */
		{
			whom->wrace = 0xFFFF;
			strn0cpy(whom->whom, "trakanon", sizeof(whom->whom));
		}

		if (whom->wrace == 103) /* kedge */
		{
			whom->wrace = 0xFFFF;
			strn0cpy(whom->whom, "kedge", sizeof(whom->whom));
		}

		whomlen = strlen(whom->whom);

		...
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 11:11 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3