Thread: This error does not make sense

Results 1 to 10 of 10
  1. #1 This error does not make sense 
    Registered Member
    Join Date
    Feb 2013
    Posts
    45
    Thanks given
    1
    Thanks received
    0
    Rep Power
    11
    Ok before anyone trolls I do have a folder named content inside the players folder in the correct area.
    It still gives me this bull shit error that makes no sense though?
    Code:
    src\server\model\players\packets\ClickingButtons.java:3: package server.model.pl
    ayers.content does not exist
    import server.model.players.content.*;
    ^
    src\server\model\players\packets\ClickingButtons.java:1383: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.atkInterface(c);
                                    ^
    src\server\model\players\packets\ClickingButtons.java:1387: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.strInterface(c);
                                    ^
    src\server\model\players\packets\ClickingButtons.java:1391: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.defInterface(c);
                                    ^
    src\server\model\players\packets\ClickingButtons.java:1395: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.rangeInterface(c);
                                    ^
    src\server\model\players\packets\ClickingButtons.java:1403: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.prayInterface(c);
                                    ^
    src\server\model\players\packets\ClickingButtons.java:1408: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.mageInterface(c);
                                    ^
    src\server\model\players\packets\ClickingButtons.java:1412: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.rcInterface(c);
                                    ^
    src\server\model\players\packets\ClickingButtons.java:1416: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.agilityInterface(c);
                                    ^
    src\server\model\players\packets\ClickingButtons.java:1420: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.herbloreInterface(c);
                                    ^
    src\server\model\players\packets\ClickingButtons.java:1424: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.thievingInterface(c);
                                    ^
    src\server\model\players\packets\ClickingButtons.java:1428: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.craftingInterface(c);
                                    ^
    src\server\model\players\packets\ClickingButtons.java:1431: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.fletchingInterface(c);
                                    ^
    src\server\model\players\packets\ClickingButtons.java:1435: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.slayerInterface(c);
                                    ^
    src\server\model\players\packets\ClickingButtons.java:1438: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.miningInterface(c);
                                    ^
    src\server\model\players\packets\ClickingButtons.java:1441: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.smithingInterface(c);
                                    ^
    src\server\model\players\packets\ClickingButtons.java:1444: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.fishingInterface(c);
                                    ^
    src\server\model\players\packets\ClickingButtons.java:1447: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.cookingInterface(c);
                                    ^
    src\server\model\players\packets\ClickingButtons.java:1450: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.firemakingInterface(c);
                                    ^
    src\server\model\players\packets\ClickingButtons.java:1453: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.woodcuttingInterface(c);
                                    ^
    src\server\model\players\packets\ClickingButtons.java:1456: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                    SkillGuides.farmingInterface(c);
                                    ^
    Note: Some input files use unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    21 errors
    Press any key to continue . . .
    Any ideas?
    Reply With Quote  
     

  2. #2  
    Registered Member
    Fredo Santana's Avatar
    Join Date
    Apr 2013
    Age
    31
    Posts
    723
    Thanks given
    28
    Thanks received
    86
    Rep Power
    87
    Oh, lol. Delete "import" and replace it with "package"
    Code:
    package server.model.players.content.*;
              
              import blahblahblah
              import shitshtishti
    FU Tooka Gang
    FU FBG
    FU JojoWorld
    FU D-Block
    #GDK #600 #065th #OTF #ScrewLilJay #BDN
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Feb 2013
    Posts
    45
    Thanks given
    1
    Thanks received
    0
    Rep Power
    11
    Quote Originally Posted by Wu Tang View Post
    Oh, lol. Delete "import" and replace it with "package"
    Code:
    package server.model.players.content.*;
              
              import blahblahblah
              import shitshtishti
    I wish :L
    Code:
    src\server\model\players\packets\ClickingButtons.java:3: class, interface, or en
    um expected
    package server.model.players.content.*;
    ^
    1 error
    Press any key to continue . . .
    Reply With Quote  
     

  4. #4  
    Registered Member
    Fredo Santana's Avatar
    Join Date
    Apr 2013
    Age
    31
    Posts
    723
    Thanks given
    28
    Thanks received
    86
    Rep Power
    87
    Quote Originally Posted by jame233 View Post
    I wish :L
    Code:
    src\server\model\players\packets\ClickingButtons.java:3: class, interface, or en
    um expected
    package server.model.players.content.*;
    ^
    1 error
    Press any key to continue . . .
    Send me the whole thing in a pastebin link.
    FU Tooka Gang
    FU FBG
    FU JojoWorld
    FU D-Block
    #GDK #600 #065th #OTF #ScrewLilJay #BDN
    Reply With Quote  
     

  5. #5  
    Registered Member
    Fredo Santana's Avatar
    Join Date
    Apr 2013
    Age
    31
    Posts
    723
    Thanks given
    28
    Thanks received
    86
    Rep Power
    87
    Quote Originally Posted by jame233 View Post
    I wish :L
    Code:
    src\server\model\players\packets\ClickingButtons.java:3: class, interface, or en
    um expected
    package server.model.players.content.*;
    ^
    1 error
    Press any key to continue . . .
    Wait, no, Get rid of "*" at the end of the package.

    If that doesn't work, then give em the file in a pastebin link and then I'll fix.
    FU Tooka Gang
    FU FBG
    FU JojoWorld
    FU D-Block
    #GDK #600 #065th #OTF #ScrewLilJay #BDN
    Reply With Quote  
     

  6. #6  
    Registered Member
    Join Date
    Feb 2013
    Posts
    45
    Thanks given
    1
    Thanks received
    0
    Rep Power
    11
    Quote Originally Posted by Wu Tang View Post
    Send me the whole thing in a pastebin link.
    SkillGuides.java - Pastebin.com <---- SkillGuides.java the thing I just added
    clickingbuttons.java - Pastebin.com <---- Clickingbuttons where the new error is
    Alright btw this is PI 317
    Sorry if the codes are a bit messy I'm still fixing it.
    Reply With Quote  
     

  7. #7  
    Registered Member
    Fredo Santana's Avatar
    Join Date
    Apr 2013
    Age
    31
    Posts
    723
    Thanks given
    28
    Thanks received
    86
    Rep Power
    87
    Quote Originally Posted by jame233 View Post
    SkillGuides.java - Pastebin.com <---- SkillGuides.java the thing I just added
    clickingbuttons.java - Pastebin.com <---- Clickingbuttons where the new error is
    Alright btw this is PI 317
    Sorry if the codes are a bit messy I'm still fixing it.
    Try this for the skillguides:

    package server.model.players.Content; import server.model.players.*; /** - Pastebin.com


    Try this for the clickingbuttons:

    package server.model.players.packets; import server.Config; import server.S - Pastebin.com
    FU Tooka Gang
    FU FBG
    FU JojoWorld
    FU D-Block
    #GDK #600 #065th #OTF #ScrewLilJay #BDN
    Reply With Quote  
     

  8. #8  
    Registered Member
    Join Date
    Feb 2013
    Posts
    45
    Thanks given
    1
    Thanks received
    0
    Rep Power
    11


    Damn
    Code:
    src\server\model\players\packets\ClickingButtons.java:1384: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.atkInterface(c);
                                        ^
    src\server\model\players\packets\ClickingButtons.java:1388: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.strInterface(c);
                                        ^
    src\server\model\players\packets\ClickingButtons.java:1392: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.defInterface(c);
                                        ^
    src\server\model\players\packets\ClickingButtons.java:1396: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.rangeInterface(c);
                                        ^
    src\server\model\players\packets\ClickingButtons.java:1404: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.prayInterface(c);
                                        ^
    src\server\model\players\packets\ClickingButtons.java:1409: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.mageInterface(c);
                                        ^
    src\server\model\players\packets\ClickingButtons.java:1413: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.rcInterface(c);
                                        ^
    src\server\model\players\packets\ClickingButtons.java:1417: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.agilityInterface(c);
                                        ^
    src\server\model\players\packets\ClickingButtons.java:1421: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.herbloreInterface(c);
                                        ^
    src\server\model\players\packets\ClickingButtons.java:1425: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.thievingInterface(c);
                                        ^
    src\server\model\players\packets\ClickingButtons.java:1429: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.craftingInterface(c);
                                        ^
    src\server\model\players\packets\ClickingButtons.java:1432: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.fletchingInterface(c);
                                        ^
    src\server\model\players\packets\ClickingButtons.java:1436: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.slayerInterface(c);
                                        ^
    src\server\model\players\packets\ClickingButtons.java:1439: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.miningInterface(c);
                                        ^
    src\server\model\players\packets\ClickingButtons.java:1442: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.smithingInterface(c);
                                        ^
    src\server\model\players\packets\ClickingButtons.java:1445: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.fishingInterface(c);
                                        ^
    src\server\model\players\packets\ClickingButtons.java:1448: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.cookingInterface(c);
                                        ^
    src\server\model\players\packets\ClickingButtons.java:1451: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.firemakingInterface(c);
                                        ^
    src\server\model\players\packets\ClickingButtons.java:1454: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.woodcuttingInterface(c);
                                        ^
    src\server\model\players\packets\ClickingButtons.java:1457: cannot find symbol
    symbol  : variable SkillGuides
    location: class server.model.players.packets.ClickingButtons
                                        SkillGuides.farmingInterface(c);
                                        ^
    Note: Some input files use unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    20 errors
    Press any key to continue . . .
    Reply With Quote  
     

  9. #9  
    Registered Member

    Join Date
    May 2012
    Age
    28
    Posts
    1,548
    Thanks given
    415
    Thanks received
    231
    Rep Power
    81
    Is your path correct for all folders? Java is case sensitive.
    Inactive.


    Spoiler for FirstDesign:
    Reply With Quote  
     

  10. #10  
    Registered Member
    Karma_K's Avatar
    Join Date
    Nov 2012
    Posts
    4,283
    Thanks given
    152
    Thanks received
    610
    Rep Power
    108
    In clickingbuttons change
    Code:
    import server.model.players.SkillMenu;
    To
    Code:
    import server.model.players.content.SkillMenu;
    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. Replies: 31
    Last Post: 07-19-2011, 07:41 PM
  2. how does this infraction make sense?
    By Flippy in forum Forum Related Help
    Replies: 3
    Last Post: 09-25-2010, 06:49 PM
  3. This error doesnt make sense...
    By Moarte in forum Help
    Replies: 5
    Last Post: 11-01-2009, 02:36 PM
  4. What does this Error Does? Soz im abit nub
    By Affliction in forum Help
    Replies: 1
    Last Post: 09-22-2009, 05:34 AM
  5. i got this error making a 90% herbalore handler
    By Toonscape in forum Tutorials
    Replies: 1
    Last Post: 04-24-2008, 02:18 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
  •