Thread: Client

Results 1 to 2 of 2
  1. #1 Client 
    Generation-X

    Bilsma's Avatar
    Join Date
    Feb 2011
    Posts
    691
    Thanks given
    657
    Thanks received
    45
    Rep Power
    82
    Who can help me run a client with eclipse on teamviewer
    Reply With Quote  
     

  2. #2  
    Ex Rune-Scaper

    Join Date
    Jun 2008
    Posts
    3,534
    Thanks given
    457
    Thanks received
    1,257
    Rep Power
    990
    If you don't have the classpath file or project file setup do this.

    Create a new file called .classpath

    In orange where ever your source folder is located.

    In red is your libraries, make sure to change those to yours.

    In green is where ever you want your binary files to go when eclipse compiles.

    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <classpath>
    	<classpathentry kind="src" path="src"/>
    	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
    	<classpathentry kind="lib" path="lib/synthetica.jar"/>
    	<classpathentry kind="lib" path="lib/jl1.0.1.jar"/>
    	<classpathentry kind="lib" path="lib/asm-5.0.2.jar"/>
    	<classpathentry kind="lib" path="lib/syntheticaBlackEye.jar"/>
    	<classpathentry kind="lib" path="lib/substance-5.3.jar"/>
    	<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/lib"/>
    	<classpathentry kind="output" path="class"/>
    </classpath>
    Now create a new file called .project

    You probably wont have to change anything besides the name.
    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <projectDescription>
    	<name>Project Wind Client</name>
    	<comment></comment>
    	<projects>
    	</projects>
    	<buildSpec>
    		<buildCommand>
    			<name>org.eclipse.jdt.core.javabuilder</name>
    			<arguments>
    			</arguments>
    		</buildCommand>
    	</buildSpec>
    	<natures>
    		<nature>org.eclipse.jdt.core.javanature</nature>
    	</natures>
    </projectDescription>
    Make sure those files are located in your client next to your source folder.

    Spoiler for Step by step Visual:












    Find where your main method is. Most clients are Client.java



    Attached image
    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. Server & Client Download list
    By Link in forum Downloads
    Replies: 64
    Last Post: 01-28-2012, 08:32 PM
  2. Project X client!
    By Crysis in forum Downloads
    Replies: 49
    Last Post: 03-09-2008, 05:51 PM
  3. Replies: 19
    Last Post: 01-10-2008, 10:15 PM
  4. Been editing my client for a few hours...
    By Sam Server in forum RS2 Client
    Replies: 26
    Last Post: 05-12-2007, 08:53 AM
  5. 377 client :D
    By Llama in forum RS2 Client
    Replies: 15
    Last Post: 05-07-2007, 12:38 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
  •