View Single Post
  #31  
Old 04-15-2012, 07:20 AM
Derision
Developer
 
Join Date: Feb 2004
Location: UK
Posts: 1,540
Default

Quote:
Originally Posted by 501st View Post
So tried the slash command. "/xtarget on" and got this response:

"In order to gain access to this feature, you must purchase the Everquest expansion: Underfoot"
To get rid of this message, in Underfoot you need to make this change:
Code:
--- Underfoot.cpp       (revision 2125)
+++ Underfoot.cpp       (working copy)
@@ -629,7 +629,7 @@
        OUT(platinum_shared);
 //     OUT(unknown13156[84]);
        //OUT(expansions);
-       eq->expansions = 16383;
+       eq->expansions = 0x0000ffff;
 //     OUT(unknown13244[12]);
        OUT(autosplit);
 //     OUT(unknown13260[16]);
You then need to insert some code to send opcode 0x6eb5 (0x00b5 on Live) with two uint32s (5 == number of xtarget slots, followed by 0).

This will let you attempt to use the /xtarget command, however code needs writing to support it.
Reply With Quote