Thread: [PI] How to Setup Eclipse [The Correct Way]

Page 2 of 2 FirstFirst 12
Results 11 to 15 of 15
  1. #11  
    Banned
    Join Date
    Jan 2015
    Posts
    198
    Thanks given
    8
    Thanks received
    5
    Rep Power
    0
    This is retarded. If you can't figure this out just go watch a youtube video.
    Reply With Quote  
     

  2. Thankful user:


  3. #12  
    Member of the Imagine Cult

    Join Date
    Feb 2013
    Posts
    518
    Thanks given
    21
    Thanks received
    7
    Discord
    View profile
    Rep Power
    59
    Quote Originally Posted by OneCrazyPanda View Post
    This is retarded. If you can't figure this out just go watch a youtube video.
    Whats the difference between understanding it by reading this or understanding it by watching a video?

    Derp.
    Reply With Quote  
     

  4. #13  
    Banned
    Join Date
    Jan 2015
    Posts
    198
    Thanks given
    8
    Thanks received
    5
    Rep Power
    0
    Quote Originally Posted by FiveRiverFlo View Post
    Whats the difference between understanding it by reading this or understanding it by watching a video?

    Derp.
    There's just so many other tutorials out there for this. It's so much easier to google it and you'll get better information.
    Reply With Quote  
     

  5. #14  
    Registered Member
    Join Date
    Feb 2016
    Posts
    17
    Thanks given
    0
    Thanks received
    0
    Rep Power
    11
    yeah my deps folder isnt showing up for building the path.. well my deps folder isnt showing up in eclipse at all for that matter
    Reply With Quote  
     

  6. #15  
    Registered Member Volky's Avatar
    Join Date
    Aug 2016
    Posts
    58
    Thanks given
    1
    Thanks received
    1
    Rep Power
    15
    Alright, So i have the Server Running in Eclipse but when i Try to Initiate the Client It does not work It just says "Loading Vps" in cmd and then in the Client it says Retrying



    /**
    * @author Mistex Team
    */
    public class Config {

    /**
    * Client name
    */
    public static String clientName = "Mistex";

    /**
    * Mistex cache name
    */
    public static String cacheName = "./MistexCachev1/";

    /**
    * Checks if using local host
    */
    public static boolean usingLocal;

    /**
    * Local host IP address
    */
    public static String LOCALHOST_IP = "127.0.0.1";

    /**
    * VPS IP address
    */
    public static String VPS_IP = "127.0.0.1";

    /**
    * Determine the client running
    * @return
    */
    public static String determineClient() {
    if (debugMode == false) {
    usingLocal = false;
    System.out.println("Loading VPS client.");
    } else if (debugMode == true) {
    usingLocal = true;
    System.out.println("Loading local host client.");
    }
    return null;
    }

    /**
    * Client version
    */
    public static final double CLIENT_VERSION = 3.6;

    /**
    * Client port
    */
    public static int serverPort = 43594;

    /**
    * Debug mode
    */
    public static boolean debugMode = false;

    /**
    * Other
    */
    public static final int CAM_NEAR = 50;
    public static final int CAM_FAR = 4200;


    }
    Reply With Quote  
     

Page 2 of 2 FirstFirst 12

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: 01-12-2012, 12:15 AM
  2. Replies: 25
    Last Post: 05-06-2010, 10:49 AM
  3. Replies: 4
    Last Post: 03-29-2009, 09:13 PM
  4. Eclipse splashscreen loads then Eclipse closes
    By wizzyt21 in forum Application Development
    Replies: 0
    Last Post: 01-04-2009, 03:02 AM
  5. [SETUp] How To Set Up A Sever [SETUp]
    By BillyXVII in forum Tutorials
    Replies: 2
    Last Post: 07-22-2008, 05:31 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
  •