Thread: Matrix 592 - Tons of Features

Page 13 of 19 FirstFirst ... 31112131415 ... LastLast
Results 121 to 130 of 185
  1. #121  
    Sexy User
    User's Avatar
    Join Date
    Apr 2013
    Posts
    601
    Thanks given
    97
    Thanks received
    218
    Rep Power
    346
    Quote Originally Posted by _jordan View Post
    bump. updated the OP and included a configuration section full of useful information you might need.
    I am adding things like enchant and plankmake and am in inventoryoptionshandler under handleInterfaceOnInterface

    problem is I cannot get the used spell's component id. here is the variables I get from the client using the current system with nothing left in the stream

    inter: 149, component: 0, fromslot: 65535, toslot: 0, inter2: 430, usedwith: 20, itemused: 65535

    component is always 0 which I assume is for the inventory interface, so I need the second interface's component but I don't see where I can get that. You seem to have more knowledge of the client maybe you understand where I can look for this?
    Attached image
    Reply With Quote  
     

  2. #122  
    Registered Member
    Join Date
    Feb 2014
    Posts
    129
    Thanks given
    122
    Thanks received
    35
    Rep Power
    46
    Quote Originally Posted by User View Post
    I am adding things like enchant and plankmake and am in inventoryoptionshandler under handleInterfaceOnInterface

    problem is I cannot get the used spell's component id. here is the variables I get from the client using the current system with nothing left in the stream

    inter: 149, component: 0, fromslot: 65535, toslot: 0, inter2: 430, usedwith: 20, itemused: 65535

    component is always 0 which I assume is for the inventory interface, so I need the second interface's component but I don't see where I can get that. You seem to have more knowledge of the client maybe you understand where I can look for this?
    Here if u havent converted it yet go to handleInterfaceOnInterface in inventoryoptionshandler and
    replace this
    Code:
    int interfaceId = stream.readUnsignedShort();
    		int interfaceComponent = stream.readUnsignedShort();
    		int fromSlot = stream.readUnsignedShortLE();
    		int toSlot = stream.readUnsignedShort();
    		int interfaceId2 = stream.readInt() >> 16;
    		int usedWithId = stream.readUnsignedShortLE();
    		int itemUsedId = stream.readUnsignedShort();
    with this


    Code:
    	int hash2 = stream.readInt();
    		int fromSlot = stream.readShortLE();
    		int toSlot = stream.readShort();
    		int hash1 = stream.readInt();  
    		int usedWithId = stream.readShortLE();
    		int itemUsedId = stream.readShort();
    		int interfaceId = hash1 >> 16; 
    		int interfaceId2 = hash2 >> 16; 
    		int interfaceComponent = hash1 & 0xFFFF;
    Reply With Quote  
     

  3. Thankful users:


  4. #123  
    Registered Member
    JeztC's Avatar
    Join Date
    Jul 2016
    Age
    24
    Posts
    136
    Thanks given
    212
    Thanks received
    65
    Rep Power
    303
    Nice release =P
    Reply With Quote  
     

  5. #124  
    WVWVWVWVWVWVWVW

    _jordan's Avatar
    Join Date
    Nov 2012
    Posts
    3,046
    Thanks given
    111
    Thanks received
    1,848
    Rep Power
    5000
    Quote Originally Posted by Jesse Jr View Post
    Nice release =P
    thanks, it's np
    Attached image
    Attached image
    Reply With Quote  
     

  6. #125  
    Registered Member
    Join Date
    Jun 2018
    Age
    29
    Posts
    8
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    I'll try it out thanks for contributing.
    Reply With Quote  
     

  7. #126  
    Banned
    Join Date
    Jun 2018
    Posts
    24
    Thanks given
    3
    Thanks received
    2
    Rep Power
    0
    508/525 plawks
    Reply With Quote  
     

  8. #127  
    WVWVWVWVWVWVWVW

    _jordan's Avatar
    Join Date
    Nov 2012
    Posts
    3,046
    Thanks given
    111
    Thanks received
    1,848
    Rep Power
    5000
    Quote Originally Posted by Dr Nuclear View Post
    508/525 plawks
    508 is like impossible to deal with
    Attached image
    Attached image
    Reply With Quote  
     

  9. #128  
    rage against the dying of the light


    Join Date
    Sep 2016
    Posts
    293
    Thanks given
    103
    Thanks received
    92
    Rep Power
    197
    Bump for this incredible release and minor solution to a problem that many of us might be facing... this client, along with many other, do not properly load the native libraries, causing an error to be thrown when attempting to change the display type from safe mode to standard or high definition. I searched around Rune-Server and couldn't find much of a solution, but ironically found the solution in this PowerBot issue. In the launch configurations of IntelliJ (I have not seen this issue with Eclipse, but same procedure), make sure your JRE is set specifically to the directory for your independent JRE, not the JDK or project/application default. Hopefully this helps someone!
    Reply With Quote  
     

  10. #129  
    WVWVWVWVWVWVWVW

    _jordan's Avatar
    Join Date
    Nov 2012
    Posts
    3,046
    Thanks given
    111
    Thanks received
    1,848
    Rep Power
    5000
    Quote Originally Posted by Cipher View Post
    Bump for this incredible release and minor solution to a problem that many of us might be facing... this client, along with many other, do not properly load the native libraries, causing an error to be thrown when attempting to change the display type from safe mode to standard or high definition. I searched around Rune-Server and couldn't find much of a solution, but ironically found the solution in this PowerBot issue. In the launch configurations of IntelliJ (I have not seen this issue with Eclipse, but same procedure), make sure your JRE is set specifically to the directory for your independent JRE, not the JDK or project/application default. Hopefully this helps someone!
    sounds like a user error and not a problem with the client. this client and the HD work on Windows, Mac and Linux and proven to work on all.
    Attached image
    Attached image
    Reply With Quote  
     

  11. #130  
    rage against the dying of the light


    Join Date
    Sep 2016
    Posts
    293
    Thanks given
    103
    Thanks received
    92
    Rep Power
    197
    Quote Originally Posted by _jordan View Post
    sounds like a user error and not a problem with the client. this client and the HD work on Windows, Mac and Linux and proven to work on all.
    The client launched and connected successfully, yes, but threw an error when attempting to switch outside of safe mode. I'll see if I can recreate the error later. It did not prevent the server or client from working, simply prevented the high-definition graphics from loading. The cache was in the correct location and the libraries loaded successfully to the C: folder, but the client seemingly could not find them. I have not personally experienced this issue in the past, but have seen help threads and posts regarding it. The client is working perfectly after swapping to JRE, which I am not sure I could explain, but I figured I would share the solution in case anyone else is experiencing it.
    Reply With Quote  
     

Page 13 of 19 FirstFirst ... 31112131415 ... LastLast

Thread Information
Users Browsing this Thread

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


User Tag List

Similar Threads

  1. Replies: 49
    Last Post: 07-23-2011, 06:20 AM
  2. Replies: 28
    Last Post: 04-23-2011, 03:46 AM
  3. Replies: 1
    Last Post: 09-12-2010, 03:20 PM
  4. Replies: 4
    Last Post: 08-01-2010, 04:46 PM
  5. Dspeced -: Tons of Features! :-
    By Russian in forum Advertise
    Replies: 14
    Last Post: 11-03-2009, 12:49 AM
Tags for this Thread

View Tag Cloud

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