Thread: [NEW] Changing Simple Text

Results 1 to 8 of 8
  1. #1 [NEW] Changing Simple Text 
    Registered Member
    Join Date
    Oct 2012
    Posts
    71
    Thanks given
    1
    Thanks received
    0
    Rep Power
    11
    How do i change the text "teleports you to camelot" when hovering over a teleport spell. (I LOOKED IN CLIENT.JAVA, PLAYER.JAVA, PLAYERASSISTANT.JAVA)
    I Hope I Helped You Bro.
    Reply With Quote  
     

  2. #2  
    Father Of Lies


    Join Date
    May 2012
    Age
    26
    Posts
    1,216
    Thanks given
    267
    Thanks received
    289
    Rep Power
    242
    public void handleLoginText() {
    c.getPA().sendFrame126("Varrock Teleport", 13037);
    c.getPA().sendFrame126("Lumbridge Teleport", 13047);
    c.getPA().sendFrame126("Falador Teleport", 13055);
    c.getPA().sendFrame126("Camelot Teleport", 13063);
    c.getPA().sendFrame126("Ardougne Teleport", 13071);
    c.getPA().sendFrame126("Varrock Teleport", 1300);
    c.getPA().sendFrame126("Lumbridge Teleport", 1325);
    c.getPA().sendFrame126("Falador Teleport", 1350);
    c.getPA().sendFrame126("Camelot Teleport", 1382);
    c.getPA().sendFrame126("Ardougne Teleport", 1415);
    }
    That's when you hover, it comes up. But the other part is sprites? I think.
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Oct 2012
    Posts
    71
    Thanks given
    1
    Thanks received
    0
    Rep Power
    11
    Quote Originally Posted by jakeyy View Post
    public void handleLoginText() {
    c.getPA().sendFrame126("Varrock Teleport", 13037);
    c.getPA().sendFrame126("Lumbridge Teleport", 13047);
    c.getPA().sendFrame126("Falador Teleport", 13055);
    c.getPA().sendFrame126("Camelot Teleport", 13063);
    c.getPA().sendFrame126("Ardougne Teleport", 13071);
    c.getPA().sendFrame126("Varrock Teleport", 1300);
    c.getPA().sendFrame126("Lumbridge Teleport", 1325);
    c.getPA().sendFrame126("Falador Teleport", 1350);
    c.getPA().sendFrame126("Camelot Teleport", 1382);
    c.getPA().sendFrame126("Ardougne Teleport", 1415);
    }
    That's when you hover, it comes up. But the other part is sprites? I think.
    Bump thats not it, mean changing "teleports you to blah blah"
    I Hope I Helped You Bro.
    Reply With Quote  
     

  4. #4  
    Registered Member
    Join Date
    Oct 2012
    Posts
    71
    Thanks given
    1
    Thanks received
    0
    Rep Power
    11
    Bump!
    I Hope I Helped You Bro.
    Reply With Quote  
     

  5. #5  
    Banned

    Join Date
    Dec 2009
    Posts
    733
    Thanks given
    0
    Thanks received
    85
    Rep Power
    0
    Search the text in your files and then replace it.
    Reply With Quote  
     

  6. #6  
    Banned

    Join Date
    Jan 2012
    Posts
    593
    Thanks given
    527
    Thanks received
    319
    Rep Power
    0
    Step 1. Downloads toms cache suite.
    Step 2. Open it and open your cache.
    Step 3. Click 'View/Edit Item Configuration'.
    Step 4. Find the specific item you want to edit and double-click on the description (or the name of the item) and change it.


    Step 5. Press 'save configuration' and exit.
    Step 6. Profit.
    Reply With Quote  
     

  7. #7  
    Banned

    Join Date
    Dec 2009
    Posts
    733
    Thanks given
    0
    Thanks received
    85
    Rep Power
    0
    Quote Originally Posted by Bosslad View Post
    Step 1. Downloads toms cache suite.
    Step 2. Open it and open your cache.
    Step 3. Click 'View/Edit Item Configuration'.
    Step 4. Find the specific item you want to edit and double-click on the description (or the name of the item) and change it.


    Step 5. Press 'save configuration' and exit.
    Step 6. Profit.
    He's not changing an item
    Reply With Quote  
     

  8. #8  
    Banned
    Join Date
    Jun 2012
    Posts
    438
    Thanks given
    13
    Thanks received
    27
    Rep Power
    0
    find your sendframe ids for the interface then do as jakeyy did except change the number at side to it
    if your using badgers interfaces :
    Code:
              public void handleLoginText() {
    		//normal
    		c.getPA().sendFrame126("Monster Teleport", 19641);
    		c.getPA().sendFrame126("Minigame Teleport", 19722);
    		c.getPA().sendFrame126("Boss Teleport", 19803);
    		c.getPA().sendFrame126("Pking Teleport", 19960);
    		c.getPA().sendFrame126("Skill Teleport", 20195);
    		c.getPA().sendFrame126("City Teleport", 20354);
    		c.getPA().sendFrame126("Advanced Skilling", 20570);
    		//normal
    		c.getPA().sendFrame126("Monster Teleport's", 19642);
    		c.getPA().sendFrame126("Minigame Teleport's", 19723);
    		c.getPA().sendFrame126("Boss Teleport's", 19804);
    		c.getPA().sendFrame126("Pking Teleport's", 19961);
    		c.getPA().sendFrame126("Skill Teleport's", 20196);
    		c.getPA().sendFrame126("City Teleport's", 20355);
    		c.getPA().sendFrame126("Advanced Skilling", 20571);
    		//ancient
    		c.getPA().sendFrame126("Monster Teleport", 21833);
    		c.getPA().sendFrame126("Minigame Teleport", 21933);
    		c.getPA().sendFrame126("Boss Teleport", 22052);
    		c.getPA().sendFrame126("Pking Teleport", 22123);
    		c.getPA().sendFrame126("Skill Teleport", 22232);	
    		c.getPA().sendFrame126("City Teleport", 22307);
    		c.getPA().sendFrame126("Advanced Skilling", 22415);
    		//ancient
    		c.getPA().sendFrame126("Monster Teleport's", 21833);
    		c.getPA().sendFrame126("Minigame Teleport's", 21933);
    		c.getPA().sendFrame126("Boss Teleport's", 22052);
    		c.getPA().sendFrame126("Pking Teleport's", 22123);
    		c.getPA().sendFrame126("Skill Teleport's", 22232);	
    		c.getPA().sendFrame126("City Teleport's", 22307);
    		c.getPA().sendFrame126("Advanced Skilling", 22415);
    	}
    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. Changing the TEXT!
    By 3la288_sh in forum Help
    Replies: 8
    Last Post: 07-30-2012, 11:40 AM
  2. Changing text [PI]
    By buttaz54 in forum Help
    Replies: 4
    Last Post: 02-12-2012, 12:21 AM
  3. Changing the text.
    By jameskmonger in forum Requests
    Replies: 2
    Last Post: 12-23-2010, 06:17 PM
  4. Replies: 6
    Last Post: 11-25-2009, 04:08 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
  •