Thread: Quest tab question

Results 1 to 3 of 3
  1. #1 Quest tab question 
    Registered Member
    Join Date
    Sep 2015
    Posts
    10
    Thanks given
    0
    Thanks received
    2
    Rep Power
    11
    Not sure where this would go but my quest tab looks like this:

    and I'd like to change the size of the text, how would I do so?
    RSN: Heroique Home World is World 48
    Reply With Quote  
     

  2. #2  
    Community Veteran

    Songoty's Avatar
    Join Date
    Dec 2007
    Posts
    2,740
    Thanks given
    211
    Thanks received
    1,034
    Rep Power
    2455
    this is a client side question.

    you would have to either modify the children of the interface using a premade interface editor and change the font type, or hard code it in your 'RSInterface' or 'Widget' class.

    If you do the hard coding route, something like

    Code:
    private void resizeQuestInterfaceBullshit() {
        for(int i = startingQuestIdThing; i < endQuestIdThing; i++) 
             rsInterface[i].fontType = 2;
    }
    should work if the children id's are in order. id's are not relative to the parent in the old engine interface system.

    this of course won't work if you throw it in as that is just pseudo code, but you should get the jist of it.
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Sep 2015
    Posts
    10
    Thanks given
    0
    Thanks received
    2
    Rep Power
    11
    Quote Originally Posted by Songoty View Post
    this is a client side question.

    you would have to either modify the children of the interface using a premade interface editor and change the font type, or hard code it in your 'RSInterface' or 'Widget' class.

    If you do the hard coding route, something like

    Code:
    private void resizeQuestInterfaceBullshit() {
        for(int i = startingQuestIdThing; i < endQuestIdThing; i++) 
             rsInterface[i].fontType = 2;
    }
    should work if the children id's are in order. id's are not relative to the parent in the old engine interface system.

    this of course won't work if you throw it in as that is just pseudo code, but you should get the jist of it.
    Awesome! Thanks! I figured it out haha, thanks a bunch pal
    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. Another Quest tab Question
    By Extrocity in forum Help
    Replies: 5
    Last Post: 07-24-2013, 01:42 AM
  2. Quest tab question
    By sk8rdude461 in forum Help
    Replies: 6
    Last Post: 02-05-2013, 11:06 PM
  3. Quest tab Questions (rep and thank)
    By Audax in forum Help
    Replies: 1
    Last Post: 12-22-2012, 11:51 AM
  4. [PI]Quest Tab Question
    By PeaceTea in forum Help
    Replies: 8
    Last Post: 06-15-2011, 06:53 PM
  5. Quest Tab Question
    By haxifix in forum Help
    Replies: 0
    Last Post: 09-22-2009, 12:40 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
  •