Thread: Finding an interface ID

Results 1 to 8 of 8
  1. #1 Finding an interface ID 
    Boy Wonder


    Join Date
    Mar 2012
    Posts
    849
    Thanks given
    139
    Thanks received
    80
    Rep Power
    99
    How do i find the interface id to change the name of a spellbook teleport using sendFrame126?

    for example,
    Code:
    c.getPA().sendFrame126("Monster Teleport", 1300);
    this will change the teleport from saying Varrock Teleport to Monster Teleport. The 13000 is the interface ID for the name of the spell, how do i find the ID for say the watchtower teleport? i want to change it to something but i do not know how to find its interface ID. I've look in rsinterface.java to no avail.
    Reply With Quote  
     

  2. #2  
    Boy Wonder


    Join Date
    Mar 2012
    Posts
    849
    Thanks given
    139
    Thanks received
    80
    Rep Power
    99
    bump
    Reply With Quote  
     

  3. #3  
    Registered Member Jumper's Avatar
    Join Date
    Aug 2013
    Posts
    721
    Thanks given
    19
    Thanks received
    103
    Rep Power
    63
    clientsided, in loading interface method, make it print out the id instead of the string
    Reply With Quote  
     

  4. Thankful user:


  5. #4  
    Boy Wonder


    Join Date
    Mar 2012
    Posts
    849
    Thanks given
    139
    Thanks received
    80
    Rep Power
    99
    Quote Originally Posted by Jumper View Post
    clientsided, in loading interface method, make it print out the id instead of the string
    Fixed, and thanked.
    Reply With Quote  
     

  6. #5  
    Registered Member
    Join Date
    Mar 2012
    Posts
    96
    Thanks given
    75
    Thanks received
    3
    Rep Power
    39
    Quote Originally Posted by metorrite View Post
    Fixed, and thanked.
    Where's the loading interface method located and what do you need to change to get it to print ID rather than string?
    Reply With Quote  
     

  7. #6  
    Software Developer

    Tyrant's Avatar
    Join Date
    Jul 2013
    Age
    24
    Posts
    1,562
    Thanks given
    678
    Thanks received
    423
    Rep Power
    1060
    You can try doing that and it will replace the frame strings with numbers:

    // NOTE THAT YOU MIGHT USE c. AND NOT player. !!
    Code:
    if (playerCommand.equals("frameids")) {
                                player.sendMessage("You will be lagged for a few moments, hold on a minute!");
                                for (int i = 0; i < 20000; i++) {
                                             player.getPA().sendFrame126(i+"", i);
                                 }
    }
    Thank me if it helped
    Reply With Quote  
     

  8. Thankful user:


  9. #7  
    Boy Wonder


    Join Date
    Mar 2012
    Posts
    849
    Thanks given
    139
    Thanks received
    80
    Rep Power
    99
    Quote Originally Posted by Dharokist View Post
    You can try doing that and it will replace the frame strings with numbers:

    // NOTE THAT YOU MIGHT USE c. AND NOT player. !!
    Code:
    if (playerCommand.equals("frameids")) {
                                player.sendMessage("You will be lagged for a few moments, hold on a minute!");
                                for (int i = 0; i < 20000; i++) {
                                             player.getPA().sendFrame126(i+"", i);
                                 }
    }
    Thank me if it helped
    Good idea!
    Reply With Quote  
     

  10. #8  
    Boy Wonder


    Join Date
    Mar 2012
    Posts
    849
    Thanks given
    139
    Thanks received
    80
    Rep Power
    99
    Quote Originally Posted by Time_ View Post
    Where's the loading interface method located and what do you need to change to get it to print ID rather than string?
    read the post below you. might help. srry double post.
    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

Similar Threads

  1. Replies: 5
    Last Post: 07-26-2013, 04:49 PM
  2. Need an interface id
    By Derrezed in forum Help
    Replies: 0
    Last Post: 08-28-2012, 08:22 PM
  3. Help Finding An Interface.
    By Moronic in forum Requests
    Replies: 0
    Last Post: 07-10-2010, 08:27 PM
  4. An interface ID.
    By ~Josh in forum Requests
    Replies: 6
    Last Post: 04-20-2009, 02:05 PM
  5. I need an Interface id..
    By Bulby Strife in forum RS2 Server
    Replies: 2
    Last Post: 05-22-2008, 03:14 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
  •