Thread: Quest tab name change server

Results 1 to 4 of 4
  1. #1 Quest tab name change server 
    Registered Member
    Join Date
    Jun 2013
    Posts
    284
    Thanks given
    4
    Thanks received
    1
    Rep Power
    14

    see where it says ps how do i change to something else thanks
    Reply With Quote  
     

  2. #2  
    Donator


    Join Date
    Feb 2016
    Posts
    270
    Thanks given
    327
    Thanks received
    82
    Rep Power
    176
    AbyssalPS ,Search "PlayerPanel" in eclipse and then find where it says "AbyssalPS". If you cant change it.. add my skypeohaibrsps il help you
    Reply With Quote  
     

  3. #3  
    Respected Member


    George's Avatar
    Join Date
    Mar 2009
    Posts
    7,099
    Thanks given
    2,226
    Thanks received
    3,146
    Rep Power
    5000
    Change the text in red.

    Code:
    package rs2.abyssalps.content.tab;
    
    import rs2.abyssalps.content.PlayerContent;
    import rs2.abyssalps.model.player.Client;
    
    public class QuestTab extends PlayerContent {
    
    	private int timer = 0;
    	private Tab activeTab;
    
    	public QuestTab(Client client) {
    		super(client);
    		activeTab = new InformationTab(this);
    	}
    
    	public void open(Tab tab) {
    		activeTab = tab;
    		for (int i = 0; i < 103; i++) {
    			setText("", i);
    		}
    		tab.redraw();
    	}
    
    	public void setText(String text, int id) {
    		getClient().getPA().sendFrame126(text, 29162 + id);
    	}
    
    	public void redraw() {
    		if (activeTab == null) {
    			return;
    		}
    		if (timer > 0) {
    			timer--;
    			return;
    		}
    		getClient().getPA().sendFrame126("AbyssalPS", TITLE_ID);
    		getClient().getPA().sendFrame126(" " + activeTab.getTitle(),
    				SUB_TITLE_ID);
    
    		activeTab.redraw();
    		timer = REDRAW_TIMER;
    	}
    
    	public void select(int id) {
    		if (activeTab == null) {
    			return;
    		}
    		activeTab.select(id);
    	}
    
    	public static final int TITLE_ID = 29155;
    	public static final int SUB_TITLE_ID = 29161;
    	public static final int REDRAW_TIMER = 0;
    
    }
    Attached image

    Spoiler for Spoilers!:
    Attached image
    Attached image
    Attached image
    Attached image
    Reply With Quote  
     

  4. #4  
    Ask me how I'm doing

    .NF.'s Avatar
    Join Date
    Aug 2015
    Age
    30
    Posts
    2,174
    Thanks given
    293
    Thanks received
    619
    Rep Power
    567
    PlayerPanel. Use Eclipse.
    Code:
    getClient().getPA().sendFrame126("AbyssalPS", TITLE_ID);
    Attached image
    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. [742] Quest tab Name?
    By Skrew in forum Help
    Replies: 7
    Last Post: 08-02-2014, 01:36 AM
  2. Quest tab text changing
    By Necromancy in forum Help
    Replies: 2
    Last Post: 04-27-2014, 11:46 PM
  3. Change Quest Tab Names
    By C K O N E in forum Help
    Replies: 3
    Last Post: 04-18-2014, 11:05 PM
  4. 718 way to force item name change server sided
    By OodlesOfNoodles in forum Help
    Replies: 20
    Last Post: 04-18-2014, 05:00 PM
  5. Changing name in Quest Tab (PI Source)
    By Cheung in forum Help
    Replies: 6
    Last Post: 11-24-2011, 03:43 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
  •