Thread: Friend's list error, anyone help?

Results 1 to 2 of 2
  1. #1 Friend's list error, anyone help? 
    Donator
    xSelseor's Avatar
    Join Date
    Mar 2009
    Age
    28
    Posts
    456
    Thanks given
    33
    Thanks received
    4
    Rep Power
    28
    Well i have been working on a client to make the side icons be on the side not the top and bottoms and i cannot figure out what i did wrong but now when you click the friends icon it shows a blank tab. Pics are below, anyone know how to fix?



    i already have the sidebarinterfaces set, i think i switch the hard and the friends list for the client to work right, is is what i have.

    Code:
    outStream.createFrame(107);			// resets something in the client
    		setSidebarInterface(1, 3917);
    		setSidebarInterface(2, 638);
    		setSidebarInterface(3, 3213);
    		setSidebarInterface(4, 1644);
    		setSidebarInterface(5, 5608);
    		setSidebarInterface(8, 5065);
    		setSidebarInterface(9, 5715); 
    		setSidebarInterface(10, 2449);
    		setSidebarInterface(11, 904);
    		setSidebarInterface(12, 147);
    		setSidebarInterface(13, 1);
    		setSidebarInterface(0, 2423);
    Friend's list error, anyone help? Attached Images
    Reply With Quote  
     

  2. #2  
    Registered Member
    DaraX's Avatar
    Join Date
    Apr 2009
    Posts
    1,183
    Thanks given
    18
    Thanks received
    29
    Rep Power
    262
    Backup your client before you do this!


    In client.java, search for:

    Code:
    setSidebarInterface
    You should see something like this:

    Code:
    		setSidebarInterface(7, 18500); // empty
    		setSidebarInterface(8, 5065); // friend
    		setSidebarInterface(9, 5715); // ignore
    		setSidebarInterface(10, 2449); // logout tab
    		setSidebarInterface(11, 4445); // wrench tab
    		setSidebarInterface(12, 147); // run tab
    		setSidebarInterface(13, 962); // harp tab
    Change that entire code with this:

    Code:
    		setSidebarInterface(7, 18500); // empty slot
    		setSidebarInterface(8, 5065); // friends list tab
    		setSidebarInterface(9, 5715); // ignore list tab
    		setSidebarInterface(10, 2449); // logout tab
                    sendQuest("Thanks for playing *ServerName*", 2450);
                    sendQuest("I hope you had a good time!", 2451);
    		setSidebarInterface(11, 4445); // wrench tab
    		setSidebarInterface(12, 147); // emote tab
    		setSidebarInterface(13, 962); // harp tab
    If you dont want to, just change your friend's list part with this:

    Code:
    		setSidebarInterface(8, 5065); // friends list tab
    Its (8, 5065); thats important, the '8' is the tab, and the second number is the interface, 5065 is the correct friend's list interface.
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

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