Thread: 718/742 - RUNE EVO weird ranking

Page 1 of 2 12 LastLast
Results 1 to 10 of 14
  1. #1 718/742 - RUNE EVO weird ranking 
    Registered Member PvM Hussain's Avatar
    Join Date
    Aug 2013
    Posts
    266
    Thanks given
    23
    Thanks received
    3
    Rep Power
    11


    I don't know what to do...i want to change that $ for owner... i want the IMG(7)

    the ranks are so ****d up in rune-evoultion source 718
    Reply With Quote  
     

  2. #2  
    Registered Member bruno0353's Avatar
    Join Date
    Mar 2012
    Posts
    58
    Thanks given
    7
    Thanks received
    0
    Rep Power
    11
    Add new IMG to cache!
    Reply With Quote  
     

  3. #3  
    Donator
    The Stoned's Avatar
    Join Date
    Jan 2013
    Posts
    647
    Thanks given
    62
    Thanks received
    82
    Rep Power
    62
    The ranks are fine, the sign is usually for a donator. If you want that for the owner instead of the gold crown then change it. You can do this by getting steve's chache editor and going to number 1455 i believe. (That number may be wrong) Then save the images in there by clicking save image. Go to the subnumber 7(should be in a box once you click 1455) and replace it with the red $ sign.
    Reply With Quote  
     

  4. #4  
    Registered Member PvM Hussain's Avatar
    Join Date
    Aug 2013
    Posts
    266
    Thanks given
    23
    Thanks received
    3
    Rep Power
    11
    Quote Originally Posted by focus clutch View Post
    The ranks are fine, the sign is usually for a donator. If you want that for the owner instead of the gold crown then change it. You can do this by getting steve's chache editor and going to number 1455 i believe. (That number may be wrong) Then save the images in there by clicking save image. Go to the subnumber 7(should be in a box once you click 1455) and replace it with the red $ sign.
    I ment the owner right 7 rank is $ now.. i want to change it to the same crown as the one in the yell.
    Reply With Quote  
     

  5. #5  
    Registered Member PvM Hussain's Avatar
    Join Date
    Aug 2013
    Posts
    266
    Thanks given
    23
    Thanks received
    3
    Rep Power
    11
    playerright save looks like this now...

    package com.rs.game.player.content.custom;

    import com.rs.game.player.Player;

    public enum RightsManager {

    REGULAR(1, "Player", "", ""),
    GRAPHIC_DESIGNER(0, "Graphic Designer", "", "<col=AD00FF>"),
    DONATOR(0, "Donator", "<img=4>", "<col=FF0000>"),
    EDONATOR(0, "Extreme Donator", "<img=5>", "<col=20f2eb>"),
    SUPPORTER(0, "Supporter", "<img=6>", "<col=559568>"),
    MODERATOR(1, "Moderator", "<img=0>", "<col=559568>"),
    ADMIN(2, "Adminstrator", "<img=1>", "<col=BA2EE8>"),
    OWNER(7, "Owner", "<img=1>", "<col=BA2EE8>");

    private int playerRights;
    private String title;
    private String crown;
    private String colorId;

    RightsManager(int rights, String title, String crown, String Color) {
    this.playerRights = rights;
    this.title = title;
    this.crown = crown;
    this.colorId = Color;
    }

    public int getPlayerRights() {
    return playerRights;
    }
    public String getTitle() {
    return title;
    }
    public String getCrown() {
    return crown;
    }
    public String getColor() {
    return colorId;
    }

    public static String getInfo(Player player, int i) {
    String crown = null;
    String titleInfo= null;
    String color= null;
    for (RightsManager rights : RightsManager.values()) {
    if (rights.getPlayerRights() == i) {
    if (player.isDonator() && player.getRights() == 0) {
    crown = DONATOR.getCrown();
    titleInfo = DONATOR.getTitle();
    color = DONATOR.getColor();
    } else if (player.isExtremeDonator() && player.getRights() == 0) {
    crown = EDONATOR.getCrown();
    titleInfo = EDONATOR.getTitle();
    color = EDONATOR.getColor();
    } else if (player.isGraphicDesigner() && player.getRights() == 0) {
    crown = GRAPHIC_DESIGNER.getCrown();
    titleInfo = GRAPHIC_DESIGNER.getTitle();
    color = GRAPHIC_DESIGNER.getColor();
    } else if (player.isSupporter() && player.getRights() == 0) {
    crown = SUPPORTER.getCrown();
    titleInfo = SUPPORTER.getTitle();
    color = SUPPORTER.getColor();
    } else if (player.getRights() == 1) {
    crown = MODERATOR.getCrown();
    titleInfo = MODERATOR.getTitle();
    color = MODERATOR.getColor();
    } else if (player.getRights() == 2) {
    crown = ADMIN.getCrown();
    titleInfo = ADMIN.getTitle();
    color = ADMIN.getColor();
    } else if (player.getRights() == 7) {
    crown = OWNER.getCrown();
    titleInfo = OWNER.getTitle();
    color = OWNER.getColor();
    } else if (player.getRights() == 0
    && !player.isSupporter()
    && !player.isDonator()
    && !player.isExtremeDonator()
    && !player.isGraphicDesigner()) {
    crown = REGULAR.getCrown();
    titleInfo = REGULAR.getTitle();
    color = REGULAR.getColor();
    }
    }
    }
    return ""+color+"["+titleInfo+"]</col> "+crown+""+player.getDisplayName()+""+color+"" ;
    }
    }
    Reply With Quote  
     

  6. #6  
    Let the games begin!

    Angeloflife's Avatar
    Join Date
    Jul 2013
    Age
    26
    Posts
    754
    Thanks given
    21
    Thanks received
    147
    Rep Power
    83
    Change the icon in sprites?
    Reply With Quote  
     

  7. #7  
    Registered Member PvM Hussain's Avatar
    Join Date
    Aug 2013
    Posts
    266
    Thanks given
    23
    Thanks received
    3
    Rep Power
    11
    Quote Originally Posted by Angeloflife View Post
    Change the icon in sprites?
    so the icon for donors will change too..
    Reply With Quote  
     

  8. #8  
    Let the games begin!

    Angeloflife's Avatar
    Join Date
    Jul 2013
    Age
    26
    Posts
    754
    Thanks given
    21
    Thanks received
    147
    Rep Power
    83
    Change it also?
    Reply With Quote  
     

  9. #9  
    Husband. Father.
    Loyalty_'s Avatar
    Join Date
    Aug 2013
    Age
    28
    Posts
    1,170
    Thanks given
    74
    Thanks received
    130
    Rep Power
    64
    Quote Originally Posted by Thor Epsilon View Post
    so the icon for donors will change too..
    u can add the crown 7 in player.java also spirit Editor
    Loyalty_





    Quote Originally Posted by Falconpunch View Post
    Player.java buddy. find init() or something like that and find where it adds the starter and do what someone mentioned above (Although an int is 4 scrublords)
    Reply With Quote  
     

  10. #10  
    Registered Member
    Join Date
    Jul 2013
    Posts
    244
    Thanks given
    3
    Thanks received
    11
    Rep Power
    11
    In RightsManager.java change
    Code:
    OWNER(7, "Owner", "<img=1>", "<col=BA2EE8>");
    to
    Code:
    OWNER(7, "Owner", "<img=4>", "<col=BA2EE8>");
    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. Replies: 2
    Last Post: 11-26-2014, 12:33 PM
  2. [718 loading 742] Rune-Evo Login Error
    By adiabeticbadger in forum Help
    Replies: 0
    Last Post: 08-25-2013, 07:31 PM
  3. 718/742 Rune-Evo back to 718 cache?
    By Proverbs in forum Help
    Replies: 1
    Last Post: 08-20-2013, 06:37 PM
  4. Replies: 3
    Last Post: 08-02-2013, 09:12 AM
  5. Replies: 1
    Last Post: 08-02-2013, 02:02 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
  •