Thread: [Pi/Hybridpvp/dspk/insidiax] ingame highscores need help please!!!

Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1 [Pi/Hybridpvp/dspk/insidiax] ingame highscores need help please!!! 
    Registered Member
    Join Date
    Aug 2011
    Posts
    200
    Thanks given
    6
    Thanks received
    3
    Rep Power
    11
    I used this tut: http://www.rune-server.org/runescape...ighscores.html but in server side i get this errors can someone help me please?


    src\server\model\players\PlayerAssistant.java:965: cannot find symbol
    symbol : class InGameHighscores
    location: class server.model.players.PlayerAssistant
    ArrayList<InGameHighscores> hs = new ArrayList<InGameHighscores>();
    ^
    src\server\model\players\PlayerAssistant.java:965: cannot find symbol
    symbol : class InGameHighscores
    location: class server.model.players.PlayerAssistant
    ArrayList<InGameHighscores> hs = new ArrayList<InGameHighscores>();
    ^
    src\server\model\players\PlayerAssistant.java:967: cannot find symbol
    symbol : variable InGameHighscores
    location: class server.model.players.PlayerAssistant
    InGameHighscores.type = "Kills";
    ^
    src\server\model\players\PlayerAssistant.java:971: cannot find symbol
    symbol : class InGameHighscores
    location: class server.model.players.PlayerAssistant
    hs.add(new InGameHighscores(Misc.optimizeText(c2.playerName)
    , c2.playerKills));
    ^
    src\server\model\players\PlayerAssistant.java:971: cannot find symbol
    symbol : variable playerKills
    location: class server.model.players.Client
    hs.add(new InGameHighscores(Misc.optimizeText(c2.playerName)
    , c2.playerKills));

    ^
    src\server\model\players\PlayerAssistant.java:976: cannot find symbol
    symbol : variable InGameHighscores
    location: class server.model.players.PlayerAssistant
    InGameHighscores.type = "Points";
    ^
    src\server\model\players\PlayerAssistant.java:980: cannot find symbol
    symbol : class InGameHighscores
    location: class server.model.players.PlayerAssistant
    hs.add(new InGameHighscores(Misc.optimizeText(c2.playerName)
    , c2.pkpPoints));
    ^
    src\server\model\players\PlayerAssistant.java:980: cannot find symbol
    symbol : variable pkpPoints
    location: class server.model.players.Client
    hs.add(new InGameHighscores(Misc.optimizeText(c2.playerName)
    , c2.pkpPoints));

    ^
    src\server\model\players\PlayerAssistant.java:985: cannot find symbol
    symbol : variable InGameHighscores
    location: class server.model.players.PlayerAssistant
    InGameHighscores.type = "Deaths";
    ^
    src\server\model\players\PlayerAssistant.java:989: cannot find symbol
    symbol : class InGameHighscores
    location: class server.model.players.PlayerAssistant
    hs.add(new InGameHighscores(Misc.optimizeText(c2.playerName)
    , c2.playerDeaths));
    ^
    src\server\model\players\PlayerAssistant.java:989: cannot find symbol
    symbol : variable playerDeaths
    location: class server.model.players.Client
    hs.add(new InGameHighscores(Misc.optimizeText(c2.playerName)
    , c2.playerDeaths));

    ^
    src\server\model\players\PlayerAssistant.java:994: cannot find symbol
    symbol : variable InGameHighscores
    location: class server.model.players.PlayerAssistant
    InGameHighscores.type = "Total Level";
    ^
    src\server\model\players\PlayerAssistant.java:998: cannot find symbol
    symbol : class InGameHighscores
    location: class server.model.players.PlayerAssistant
    hs.add(new InGameHighscores(Misc.optimizeText(c2.playerName)
    , c2.getPA().getTotalLevel()));
    ^
    Note: Some input files use unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    13 errors
    Press any key to continue . . .

    Help please?
    Reply With Quote  
     

  2. #2  
    GANGNAM STYLE!

    Ohad's Avatar
    Join Date
    Aug 2011
    Posts
    3,179
    Thanks given
    152
    Thanks received
    352
    Rep Power
    1671
    add in player.java:
    Code:
    highscoresList(textDrawingAreas);
    and if don't have:

    Code:
    public int playerDeaths = 0;
    public int pkpPoints = 0;
    public int playerKills = 0;
    public int getHighscores = 0;
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Aug 2011
    Posts
    200
    Thanks given
    6
    Thanks received
    3
    Rep Power
    11
    Quote Originally Posted by Xtinctionx View Post
    add in player.java:
    Code:
    highscoresList(textDrawingAreas);
    and if don't have:

    Code:
    public int playerDeaths = 0;
    public int pkpPoints = 0;
    public int playerKills = 0;
    public int getHighscores = 0;
    Were i should add
    highscoresList(textDrawingAreas);
    in player.java?
    Reply With Quote  
     

  4. #4  
    Registered Member
    Join Date
    Aug 2011
    Posts
    200
    Thanks given
    6
    Thanks received
    3
    Rep Power
    11
    still need help
    Reply With Quote  
     

  5. #5  
    GANGNAM STYLE!

    Ohad's Avatar
    Join Date
    Aug 2011
    Posts
    3,179
    Thanks given
    152
    Thanks received
    352
    Rep Power
    1671
    ya in player.java...
    Reply With Quote  
     

  6. #6  
    Registered Member
    Join Date
    Aug 2011
    Posts
    200
    Thanks given
    6
    Thanks received
    3
    Rep Power
    11
    Quote Originally Posted by Xtinctionx View Post
    ya in player.java...

    I mean in what place there?
    Reply With Quote  
     

  7. #7  
    Registered Member
    Join Date
    Aug 2011
    Posts
    200
    Thanks given
    6
    Thanks received
    3
    Rep Power
    11
    bump
    Reply With Quote  
     

  8. #8  
    Registered Member
    Join Date
    Oct 2011
    Posts
    181
    Thanks given
    10
    Thanks received
    5
    Rep Power
    20
    Dude its 24hr bumps not 12 hr and it goes anywhere after
    Code:
    public abstract class Player {
    I believe
    Spoiler for Dr Diablo being mean :(:

    Proud Owner of Farganscape!
    Reply With Quote  
     

  9. #9  
    Registered Member rs r's Avatar
    Join Date
    Oct 2009
    Age
    27
    Posts
    268
    Thanks given
    31
    Thanks received
    6
    Rep Power
    6
    Are you guys stupid?

    highscoresList(textDrawingAreas); == CLient sided Rsinterface class44 streamloader Rofl.

    Reply With Quote  
     

  10. #10  
    Extreme Donator


    Join Date
    Oct 2006
    Posts
    1,370
    Thanks given
    64
    Thanks received
    197
    Rep Power
    426
    Quote Originally Posted by rs r View Post
    Are you guys stupid?

    highscoresList(textDrawingAreas); == CLient sided Rsinterface class44 streamloader Rofl.

    >gravedig 4 month old thread
    >r u guize stoopid?!?!?!


    ~flow@hacking . rs
    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. [PI] Ingame Highscores For YOUR PI!
    By Moronic in forum Tutorials
    Replies: 165
    Last Post: 02-02-2014, 07:39 PM
  2. Replies: 7
    Last Post: 12-29-2011, 06:35 AM
  3. Replies: 3
    Last Post: 12-15-2011, 09:41 PM
  4. Replies: 17
    Last Post: 07-31-2011, 06:51 AM
  5. [DSPK][HybridPVP]DUPE NEED FIX PAYING$$$
    By pk flavor in forum Help
    Replies: 9
    Last Post: 04-25-2011, 06:35 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
  •