Thread: Client Coords

Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1 Client Coords 
    Donator
    Jonasingame's Avatar
    Join Date
    Jan 2013
    Posts
    197
    Thanks given
    7
    Thanks received
    1
    Rep Power
    11
    Hi,
    recently started to edit alot in client,
    now when i want to add a costum interface, i need to set the position of the interface

    how do i know which position i need to type or is this just guessing,

    example: i wwant to open the interface in my inventory tab, how do i know what position i need to fill in on client side to get it there

    thanks rep++
    Reply With Quote  
     

  2. #2  
    Registered Member
    Join Date
    Jul 2013
    Posts
    196
    Thanks given
    18
    Thanks received
    9
    Rep Power
    0
    You want an Interface on the Inventory tab? lel.
    Also, you'd add it into RSinterface.
    Reply With Quote  
     

  3. #3  
    q.q


    Join Date
    Dec 2010
    Posts
    6,519
    Thanks given
    1,072
    Thanks received
    3,535
    Rep Power
    4752
    the place an interface goes is dependent on the server side code as far as containers go

    (chat, tab, game screen)
    Reply With Quote  
     

  4. #4  
    Donator
    Jonasingame's Avatar
    Join Date
    Jan 2013
    Posts
    197
    Thanks given
    7
    Thanks received
    1
    Rep Power
    11
    Quote Originally Posted by Harlan View Post
    the place an interface goes is dependent on the server side code as far as containers go

    (chat, tab, game screen)
    i'm now adding somthing like duel icon, thats on the screen, but now i want it too the top of the screen, i don't know how i change the position, and how i find the coords to chnage it too,
    and i do know how to add a costum interface in RSInterface etc
    Reply With Quote  
     

  5. #5  
    Registered Member
    Rock_Gyo's Avatar
    Join Date
    Oct 2009
    Posts
    505
    Thanks given
    27
    Thanks received
    35
    Rep Power
    104
    The FPS command should show you your mouse X and Y in the screen, try that
    Reply With Quote  
     

  6. Thankful user:


  7. #6  
    Donator
    Jonasingame's Avatar
    Join Date
    Jan 2013
    Posts
    197
    Thanks given
    7
    Thanks received
    1
    Rep Power
    11
    Quote Originally Posted by Twin Towers View Post
    You want an Interface on the Inventory tab? lel.
    Also, you'd add it into RSinterface.
    i need to know how i find the coods of the position so i don't have to guess it
    Reply With Quote  
     

  8. #7  
    Donator
    Jonasingame's Avatar
    Join Date
    Jan 2013
    Posts
    197
    Thanks given
    7
    Thanks received
    1
    Rep Power
    11
    Quote Originally Posted by Rock_Gyo View Post
    The FPS command should show you your mouse X and Y in the screen, try that
    i think this is going to help me thanks you m8 (:
    Reply With Quote  
     

  9. #8  
    Donator
    Jonasingame's Avatar
    Join Date
    Jan 2013
    Posts
    197
    Thanks given
    7
    Thanks received
    1
    Rep Power
    11
    Quote Originally Posted by Rock_Gyo View Post
    The FPS command should show you your mouse X and Y in the screen, try that
    could u give me that commands?
    Reply With Quote  
     

  10. #9  
    Registered Member
    Rock_Gyo's Avatar
    Join Date
    Oct 2009
    Posts
    505
    Thanks given
    27
    Thanks received
    35
    Rep Power
    104
    Try in your server if you have either

    :: fps
    :: fpson
    :: devon
    :: dataon

    Eventually (if you have any of those) some yellow lines will appear in a corner telling you few things such as your coordinates, fps rate and mouse position.
    Reply With Quote  
     

  11. #10  
    q.q


    Join Date
    Dec 2010
    Posts
    6,519
    Thanks given
    1,072
    Thanks received
    3,535
    Rep Power
    4752
    Quote Originally Posted by Jonasingame View Post
    i'm now adding somthing like duel icon, thats on the screen, but now i want it too the top of the screen, i don't know how i change the position, and how i find the coords to chnage it too,
    and i do know how to add a costum interface in RSInterface etc
    you modify the childX / childY of the child

    or use the addChild method

    Code:
    	public static void addChild(int ID, int X, int Y, int frame,
    			RSInterface RSinterface) {
    		RSinterface.children[frame] = ID;
    		RSinterface.childX[frame] = X;
    		RSinterface.childY[frame] = Y;
    	}
    Reply With Quote  
     

Page 1 of 2 12 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. fps mem mouse coords for client
    By Obito Uchiha in forum Help
    Replies: 4
    Last Post: 10-15-2012, 03:11 PM
  2. Server & Client Download list
    By Link in forum Downloads
    Replies: 64
    Last Post: 01-28-2012, 08:32 PM
  3. Replies: 1
    Last Post: 07-27-2009, 11:38 PM
  4. [TuT] Adding coords to your client!
    By eyrescape in forum Tutorials
    Replies: 8
    Last Post: 03-20-2009, 06:51 PM
  5. Replies: 19
    Last Post: 01-10-2008, 10:15 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •