Thread: Creating .bat Eclipse?

Results 1 to 4 of 4
  1. #1 Creating .bat Eclipse? 
    Registered Member
    Join Date
    Nov 2014
    Posts
    75
    Thanks given
    1
    Thanks received
    2
    Rep Power
    11
    Hi all,
    i just started working a bit on someones 742

    and i can make it run and everything,

    but evertime i want to run the client,
    i need to run it though eclipse, anyone who can teach me how to make run.bat files?

    http://www.upload.ee/image/4917512/hmmm.png

    Helping me making a compiler wouldt hurt neither!
    Reply With Quote  
     

  2. #2  
    Donator
    Black Widow's Avatar
    Join Date
    Oct 2014
    Posts
    74
    Thanks given
    2
    Thanks received
    2
    Rep Power
    0
    Youtube it. There's a guide for starters who want to use eclipse. It's like wearing your shoes before tieing them laces
    Reply With Quote  
     

  3. #3  
    Registered Member

    Join Date
    Mar 2011
    Posts
    527
    Thanks given
    89
    Thanks received
    49
    Rep Power
    97
    You could always download another client that has a run.bat and make something for yourself based off that.

    For example, my run is this;

    Code:
    @echo off
    "C:\Program Files\Java\jre1.8.0_25\bin\java.exe" -Xmx256m -Xss2m -Dsun.java2d.noddraw=true -XX:+CreateMinidumpOnCrash -XX:CompileThreshold=1500 -Xincgc -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -cp bin;./clientlibs.jar; Launcher
    pause
    And my compile is this;

    Code:
    @echo off
    title Compiler
    "C:\Program Files (x86)\Java\jdk1.8.0_11\bin/javac" -cp lib/*; -d bin -sourcepath src src/*.java
    pause
    Reply With Quote  
     

  4. #4  
    Computer Engineer
    Join Date
    Aug 2014
    Posts
    1,051
    Thanks given
    365
    Thanks received
    215
    Rep Power
    16
    You PMed me saying you jarred the cache editor I supplied in the download section, then you can just simply jar your client. Using bat files is very bad. Either run it from an IDE (Eclipse, IntelliJ, NetBeans) or just jar and use .
    Reply With Quote  
     

  5. Thankful user:



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: 03-01-2014, 06:56 PM
  2. Run.bat in Eclipse
    By Chad in forum Help
    Replies: 2
    Last Post: 02-04-2014, 03:47 PM
  3. Creating shell script to replace run.bat
    By Serverregister in forum Help
    Replies: 5
    Last Post: 09-09-2013, 11:30 PM
  4. Replies: 20
    Last Post: 09-06-2013, 11:40 AM
  5. Replies: 1
    Last Post: 04-16-2013, 06:10 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
  •