Thread: T2 Error

Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1 T2 Error 
    Donator

    Join Date
    Aug 2012
    Posts
    492
    Thanks given
    44
    Thanks received
    37
    Rep Power
    10
    Im still striking with this Error.
    I am loading the Quest Tab in an other Class (Tab.java), and im trying to send text to the Quest Interface.
    How do I find out which Interface is from the Questtab ? The setSideBarInterface is a bit complicated to find out.
    It sends me right when i Login a T2 126, 126, 126 error.
    How would i know which number it is ?
    Check the red marked text.

    Code:
    package agape.game.quest;
    
    import agape.game.players.Client;
    
    public class Tab {
    	
    public void QuestTab(Client c2) {
    	   c2.getPA().sendFrame126("Wuttttt", 29164);//etc
    	}
    }
    Not allowed
    Reply With Quote  
     

  2. #2  
    Registered Member

    Join Date
    May 2012
    Age
    28
    Posts
    1,548
    Thanks given
    415
    Thanks received
    231
    Rep Power
    81
    RSInterface.java?
    Inactive.


    Spoiler for FirstDesign:
    Reply With Quote  
     

  3. #3  
    Respected Member


    Join Date
    Jan 2009
    Posts
    5,743
    Thanks given
    1,162
    Thanks received
    3,603
    Rep Power
    5000
    29164 frame most likely doesnt exist.
    Reply With Quote  
     

  4. #4  
    Donator

    Join Date
    Aug 2012
    Posts
    492
    Thanks given
    44
    Thanks received
    37
    Rep Power
    10
    Quote Originally Posted by Solstice View Post
    RSInterface.java?
    What do you mean with that ?
    Not allowed
    Reply With Quote  
     

  5. #5  
    Registered Member

    Join Date
    May 2012
    Age
    28
    Posts
    1,548
    Thanks given
    415
    Thanks received
    231
    Rep Power
    81
    The interface ID for the quest tab should be there, and text (i think...)
    Inactive.


    Spoiler for FirstDesign:
    Reply With Quote  
     

  6. #6  
    Donator

    Join Date
    Aug 2012
    Posts
    492
    Thanks given
    44
    Thanks received
    37
    Rep Power
    10
    Quote Originally Posted by Solstice View Post
    The interface ID for the quest tab should be there, and text (i think...)
    I said im loading the text from an other file.. and no, its clean pi. Theres no id
    Not allowed
    Reply With Quote  
     

  7. #7  
    Donator
    Darkness's Avatar
    Join Date
    Nov 2012
    Age
    26
    Posts
    876
    Thanks given
    121
    Thanks received
    75
    Rep Power
    47
    29164 does exist, it's the same for my server.

    Check :

    RSinterface.java client sided

    Ctrl+F
    Code:
    	public static void questTab(RSFont[] TDA){
    You should see stuff like this:

    Code:
    		RSInterface Interface = addInterface(638);
    		setChildren(4, Interface);
    		addText(29155, "Quests", 0xFF981F, false, true, 52, TDA, 2);
    		AddInterfaceButton(29156, 1, "Interfaces/QuestTab/QUEST", 18, 18, "archievement tab", 1);
    		addSprite(29157, 0, "Interfaces/QuestTab/QUEST");
    		setBounds(29155, 10, 5, 0, Interface);
    		setBounds(29156, 165, 5, 1, Interface);
    		setBounds(29157, 3, 24, 2, Interface);
    		setBounds(29160, 5, 29, 3, Interface);
    		Interface = addInterface(29160);
    		Interface.height = 214;
    		Interface.width = 165;
    		Interface.scrollMax = 1700;
    		Interface.newScroller = false;
    		setChildren(105, Interface);
    		addText(29161, "Owner :", 0xFF981F, false, true, 52, TDA, 2);
    		addHoverText(29162, "Olinice1", "Owners", TDA, 0, 0xff0000, false, true, 150);
    		addText(29163, "Register on :", 0xFF981F, false, true, 52, TDA, 2);
    		addHoverText(29164, "http://nicescapex.com/", "Register", TDA, 0, 0xff0000, false, true, 150);
    Mines are in 29150s, but yours is prolly different, edit in your class sever sided to whatever it is!



    Edit : Yeah i guess you already checked and had nothing about this? It probably goes with your base but there's no other ways to find out
    Attached image
    Reply With Quote  
     

  8. #8  
    Donator

    Join Date
    Aug 2012
    Posts
    492
    Thanks given
    44
    Thanks received
    37
    Rep Power
    10
    Quote Originally Posted by Olinice View Post
    29164 does exist, it's the same for my server.

    Check :

    RSinterface.java client sided

    Ctrl+F
    Code:
    	public static void questTab(RSFont[] TDA){
    You should see stuff like this:

    Code:
    		RSInterface Interface = addInterface(638);
    		setChildren(4, Interface);
    		addText(29155, "Quests", 0xFF981F, false, true, 52, TDA, 2);
    		AddInterfaceButton(29156, 1, "Interfaces/QuestTab/QUEST", 18, 18, "archievement tab", 1);
    		addSprite(29157, 0, "Interfaces/QuestTab/QUEST");
    		setBounds(29155, 10, 5, 0, Interface);
    		setBounds(29156, 165, 5, 1, Interface);
    		setBounds(29157, 3, 24, 2, Interface);
    		setBounds(29160, 5, 29, 3, Interface);
    		Interface = addInterface(29160);
    		Interface.height = 214;
    		Interface.width = 165;
    		Interface.scrollMax = 1700;
    		Interface.newScroller = false;
    		setChildren(105, Interface);
    		addText(29161, "Owner :", 0xFF981F, false, true, 52, TDA, 2);
    		addHoverText(29162, "Olinice1", "Owners", TDA, 0, 0xff0000, false, true, 150);
    		addText(29163, "Register on :", 0xFF981F, false, true, 52, TDA, 2);
    		addHoverText(29164, "http://nicescapex.com/", "Register", TDA, 0, 0xff0000, false, true, 150);
    Mines are in 29150s, but yours is prolly different, edit in your class sever sided to whatever it is!



    Edit : Yeah i guess you already checked and had nothing about this? It probably goes with your base but there's no other ways to find out
    I dont got anything about what you stated in your code. :/
    Not allowed
    Reply With Quote  
     

  9. #9  
    Donator
    Darkness's Avatar
    Join Date
    Nov 2012
    Age
    26
    Posts
    876
    Thanks given
    121
    Thanks received
    75
    Rep Power
    47
    Damn your source seems like a bit too clean ahaha uhmmmmmmmmmmmmmm Well i don't think there's anyways for you to know other than trying and failing, check what other sources actually uses, normally it should be starting at 29155, is there really nothing in client.java in the source either?
    Attached image
    Reply With Quote  
     

  10. #10  
    Donator

    Join Date
    Aug 2012
    Posts
    492
    Thanks given
    44
    Thanks received
    37
    Rep Power
    10
    I just found it out, got it.
    Screenshot by Lightshot
    but how do i get the "Free" away ?
    Not allowed
    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. T2 errors
    By tj007razor in forum Help
    Replies: 7
    Last Post: 03-30-2009, 11:22 PM
  2. T2 error - Help pl0x
    By Apower in forum Help
    Replies: 1
    Last Post: 02-21-2009, 02:34 PM
  3. T1 & T2 Errors cheap hacked.
    By Scu11 in forum Show-off
    Replies: 58
    Last Post: 02-08-2009, 07:10 PM
  4. Whats causing this T2 error?
    By Poptart in forum Help
    Replies: 2
    Last Post: 01-23-2009, 03:40 AM
  5. Damn T1/T2 Errors...
    By Runite in forum Help
    Replies: 14
    Last Post: 01-16-2009, 05:13 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •