Thread: [HELP] [HELP] Crown next to name [HELP] [HELP]

Results 1 to 5 of 5
  1. #1 [HELP] [HELP] Crown next to name [HELP] [HELP] 
    Registered Member Ahmed Di Maria's Avatar
    Join Date
    Mar 2013
    Age
    25
    Posts
    141
    Thanks given
    50
    Thanks received
    7
    Rep Power
    14
    Hey everybody, does anyone know how to put player crowns right before the name on chat?

    Picture:


    I want like, if you're donator it automatic puts a donator crown right before ur name starts, and when u change playerrights it changes aswell. Please help me I will rep++
    Reply With Quote  
     

  2. #2  
    Registered Member

    Join Date
    Oct 2011
    Age
    28
    Posts
    1,880
    Thanks given
    311
    Thanks received
    557
    Rep Power
    703
    Reply With Quote  
     

  3. #3  
    Registered Member Ahmed Di Maria's Avatar
    Join Date
    Mar 2013
    Age
    25
    Posts
    141
    Thanks given
    50
    Thanks received
    7
    Rep Power
    14
    Notepad++ can't find them, do you mind teamview me and do it quickly?
    Reply With Quote  
     

  4. #4  
    Registered Member Ahmed Di Maria's Avatar
    Join Date
    Mar 2013
    Age
    25
    Posts
    141
    Thanks given
    50
    Thanks received
    7
    Rep Power
    14
    Got these errors:
    Code:
    Java\client.java:850: error: cannot find symbol
                                            modIcons[0].drawBackground(12 + xPosOffs
    et, 122 + yPosOffset);
                                                                            ^
      symbol:   variable xPosOffset
      location: class client
    Java\client.java:850: error: cannot find symbol
                                            modIcons[0].drawBackground(12 + xPosOffs
    et, 122 + yPosOffset);
    
              ^
      symbol:   variable yPosOffset
      location: class client
    Java\client.java:851: error: cannot find symbol
                                            xPosOffset += 14;
                                            ^
      symbol:   variable xPosOffset
      location: class client
    Java\client.java:854: error: cannot find symbol
                                            modIcons[1].drawBackground(12 + xPosOffs
    et, 122 + yPosOffset);
                                                                            ^
      symbol:   variable xPosOffset
      location: class client
    Java\client.java:854: error: cannot find symbol
                                            modIcons[1].drawBackground(12 + xPosOffs
    et, 122 + yPosOffset);
    
              ^
      symbol:   variable yPosOffset
      location: class client
    Java\client.java:855: error: cannot find symbol
                                            xPosOffset += 14;
                                            ^
      symbol:   variable xPosOffset
      location: class client
    Java\client.java:858: error: cannot find symbol
                                            modIcons[1].drawBackground(12 + xPosOffs
    et, 122 + yPosOffset);
                                                                            ^
      symbol:   variable xPosOffset
      location: class client
    Java\client.java:858: error: cannot find symbol
                                            modIcons[1].drawBackground(12 + xPosOffs
    et, 122 + yPosOffset);
    
              ^
      symbol:   variable yPosOffset
      location: class client
    Java\client.java:859: error: cannot find symbol
                                            xPosOffset += 14;
                                            ^
      symbol:   variable xPosOffset
      location: class client
    Note: Java\client.java uses unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    9 errors
    Tryck ned valfri tangent för att fortsätta...
    Reply With Quote  
     

  5. #5  
    Registered Member

    Join Date
    Feb 2013
    Posts
    1,682
    Thanks given
    401
    Thanks received
    402
    Rep Power
    446
    declare static int myPrivilege; at the end then remove your old code and add this
    int xPos = 0;
    int yPos = 0;
    switch (myPrivilege) {
    case 1:
    modIcons[0].drawBackground(3 + xPos, 121 + yPos);
    xPos += 10;
    break;
    case 2:
    case 3:
    modIcons[1].drawBackground(3 + xPos, 121 + yPos);
    xPos += 10;
    break;
    }
    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. Crowns next to name.
    By IBrid4Cookies in forum Spam
    Replies: 7
    Last Post: 11-10-2013, 03:37 AM
  2. Crowns next to names
    By Purple Swag in forum Website Development
    Replies: 1
    Last Post: 04-28-2013, 11:28 PM
  3. Crown next to names.
    By Bondie8 in forum Help
    Replies: 13
    Last Post: 08-17-2011, 06:10 PM
  4. How to make crowns next to name
    By Harvey Spectre in forum Application Development
    Replies: 4
    Last Post: 06-09-2011, 10:02 PM
  5. Replies: 42
    Last Post: 12-06-2010, 11:42 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
  •