Thread: || [317 PI] || [Source Compiler] ||

Results 1 to 9 of 9
  1. #1 || [317 PI] || [Source Compiler] || 
    Member
    Join Date
    Jul 2013
    Age
    25
    Posts
    379
    Thanks given
    81
    Thanks received
    14
    Rep Power
    0
    Thanks guys for taking the time out of your day to read this and/or help me. Hopefully I get help quickly, I really wanna start coding.

    So basically what's happening is that I'm trying to get a Compiler for my Source to allow me to fix up last minute things when I'm about to be done with my project. I have a Client Compiler, but still need a Source Compiler. I understand I could use Eclipse or some other IDE to auto compile, but the way I like to code it's better for me. I'm using a 317 PI and with the Compiler I'm using currently its giving me an error that I just get more errors when trying to remove it. If someone could fix mine or give me a new one that might work, that would be amazing.

    I have Googled searched a lot and couldn't find anything that had to do with what I was searching for. -- Thanks again.


    Here is the code for the Compiler and error I receive when I run the Compiler...

    Code:
    @echo off
    :build
    cls
    "C:\Program Files\Java\jdk1.8.0_11\bin\javac.exe" -classpath deps/log4j-1.2.15.jar;deps/jython.jar;deps/xstream.jar;deps/mina.jar;deps/mysql.jar;deps/poi.jar;deps/slf4j.jar;deps/slf4j-nop.jar -d bin src\server\event\*.java src\server\model\items\*.java src\server\model\minigames\*.java src\server\model\npcs\*.java src\server\model\objects\*.java src\server\model\players\*.java src\server\model\players\skills\*.java src\server\model\players\packets\*.java src\server\model\shops\*.java src\server\net\*.java src\server\task\*.java src\server\util\*.java src\server\world\*.java src\server\util\log\*.java src\server\*.java src\server\world\map\*.java
    pause
    goto :build



    Edit: I understand what I need to do to get rid of this error, but like I said before It makes a huge 100+ error when I do.
    Quote Originally Posted by Ganorah View Post
    that you are a stupid kid that complains and complains on things that you dont appreciate, you should put a fucking bullet in your head no1 will miss you not even your parents... you dont deserve to live thats what im fucking on about, retard
    Reply With Quote  
     

  2. #2  
    GravityScape & SimpliCity Developer.

    RSWSkiller's Avatar
    Join Date
    Dec 2013
    Age
    27
    Posts
    754
    Thanks given
    184
    Thanks received
    68
    Rep Power
    172
    I'm not sure if it's works but try this x.x

    Code:
    @echo off
    :build
    cls
    "C:\Program Files\Java\jdk1.8.0_11\bin\javac.exe" -classpath deps/log4j-1.2.15.jar;deps/jython.jar;deps/xstream.jar;deps/mina.jar;deps/mysql.jar;deps/poi.jar;deps/slf4j.jar;deps/slf4j-nop.jar -d bin src\server\event\*.java src\server\content\*.java src\server\model\items\*.java src\server\model\minigames\*.java src\server\model\npcs\*.java src\server\model\objects\*.java src\server\model\players\*.java src\server\model\players\skills\*.java src\server\model\players\packets\*.java src\server\model\shops\*.java src\server\net\*.java src\server\task\*.java src\server\util\*.java src\server\world\*.java src\server\util\log\*.java src\server\*.java src\server\world\map\*.java
    pause
    goto :build
    Reply With Quote  
     

  3. Thankful user:


  4. #3  
    Member
    Join Date
    Jul 2013
    Age
    25
    Posts
    379
    Thanks given
    81
    Thanks received
    14
    Rep Power
    0
    Quote Originally Posted by Skillerrr View Post
    I'm not sure if it's works but try this x.x

    Code:
    @echo off
    :build
    cls
    "C:\Program Files\Java\jdk1.8.0_11\bin\javac.exe" -classpath deps/log4j-1.2.15.jar;deps/jython.jar;deps/xstream.jar;deps/mina.jar;deps/mysql.jar;deps/poi.jar;deps/slf4j.jar;deps/slf4j-nop.jar -d bin src\server\event\*.java src\server\content\*.java src\server\model\items\*.java src\server\model\minigames\*.java src\server\model\npcs\*.java src\server\model\objects\*.java src\server\model\players\*.java src\server\model\players\skills\*.java src\server\model\players\packets\*.java src\server\model\shops\*.java src\server\net\*.java src\server\task\*.java src\server\util\*.java src\server\world\*.java src\server\util\log\*.java src\server\*.java src\server\world\map\*.java
    pause
    goto :build

    Nope didn't work, lol. But thanks for the post.
    Quote Originally Posted by Ganorah View Post
    that you are a stupid kid that complains and complains on things that you dont appreciate, you should put a fucking bullet in your head no1 will miss you not even your parents... you dont deserve to live thats what im fucking on about, retard
    Reply With Quote  
     

  5. #4  
    Registered Member Lnex Host's Avatar
    Join Date
    Jun 2013
    Posts
    149
    Thanks given
    21
    Thanks received
    17
    Rep Power
    18
    Try This one

    Code:
    @echo off
    Title Server - Building...
    Javac -classpath deps/log4j-1.2.15.jar;deps/jython.jar;deps/xstream.jar;deps/mina.jar;deps/mysql.jar;deps/poi.jar;deps/slf4j.jar;deps/slf4j-nop.jar -d bin src\server\event\*.java src\server\model\items\*.java src\server\model\minigames\*.java src\server\model\npcs\*.java src\server\model\objects\*.java src\server\model\players\*.java src\server\model\players\skills\*.java src\server\model\players\packets\*.java src\server\model\shops\*.java src\server\net\*.java src\server\task\*.java src\server\util\*.java src\server\world\*.java src\server\util\log\*.java src\server\*.java src\server\world\map\*.java
    pause
    Reply With Quote  
     

  6. #5  
    Registered Member Lnex Host's Avatar
    Join Date
    Jun 2013
    Posts
    149
    Thanks given
    21
    Thanks received
    17
    Rep Power
    18
    also This is what i use for mine
    Code:
    @echo off
    :build
    cls
    "C:\Program Files\Java\jdk1.7.0_45\bin\javac.exe" -classpath deps/log4j-1.2.15.jar;deps/jython.jar;deps/xstream.jar;deps/mina.jar;deps/mysql.jar;deps/poi.jar;deps/slf4j.jar;deps/slf4j-nop.jar -d bin src\server\event\*.java src\server\model\items\*.java src\server\model\minigames\*.java src\server\model\npcs\*.java src\server\model\objects\*.java src\server\model\players\*.java src\server\model\players\skills\*.java src\server\model\players\packets\*.java src\server\model\shops\*.java src\server\net\*.java src\server\task\*.java src\server\util\*.java src\server\world\*.java src\server\util\log\*.java src\server\*.java src\server\world\map\*.java
    pause
    try them and see which one works for you
    Good Luck
    Reply With Quote  
     

  7. Thankful user:


  8. #6  
    Member
    Join Date
    Jul 2013
    Age
    25
    Posts
    379
    Thanks given
    81
    Thanks received
    14
    Rep Power
    0
    Quote Originally Posted by pkcrown View Post
    also This is what i use for mine
    Code:
    @echo off
    :build
    cls
    "C:\Program Files\Java\jdk1.7.0_45\bin\javac.exe" -classpath deps/log4j-1.2.15.jar;deps/jython.jar;deps/xstream.jar;deps/mina.jar;deps/mysql.jar;deps/poi.jar;deps/slf4j.jar;deps/slf4j-nop.jar -d bin src\server\event\*.java src\server\model\items\*.java src\server\model\minigames\*.java src\server\model\npcs\*.java src\server\model\objects\*.java src\server\model\players\*.java src\server\model\players\skills\*.java src\server\model\players\packets\*.java src\server\model\shops\*.java src\server\net\*.java src\server\task\*.java src\server\util\*.java src\server\world\*.java src\server\util\log\*.java src\server\*.java src\server\world\map\*.java
    pause
    try them and see which one works for you
    Good Luck

    Second one worked after I fixed the error. Thanks man -- Thanks + Rep 4 Dayz!
    Quote Originally Posted by Ganorah View Post
    that you are a stupid kid that complains and complains on things that you dont appreciate, you should put a fucking bullet in your head no1 will miss you not even your parents... you dont deserve to live thats what im fucking on about, retard
    Reply With Quote  
     

  9. #7  
    Community Veteran

    mige5's Avatar
    Join Date
    Aug 2008
    Posts
    5,528
    Thanks given
    573
    Thanks received
    1,410
    Rep Power
    2114
    "I'm trying to get a Compiler for my Source to allow me to fix up last minute things when I'm about to be done with my project."

    - Just wondering what have u actually done to the server, if u haven't even compiled it once, and almost done? (not that u couldn't write 100k lines of content before compiling...)
    Number of page #1 releases with most views & posts: (Updated: 2023)
    RS2 server section: 1
    RS2 client section: 2
    Reply With Quote  
     

  10. #8  
    GravityScape & SimpliCity Developer.

    RSWSkiller's Avatar
    Join Date
    Dec 2013
    Age
    27
    Posts
    754
    Thanks given
    184
    Thanks received
    68
    Rep Power
    172
    Quote Originally Posted by mige5 View Post
    "I'm trying to get a Compiler for my Source to allow me to fix up last minute things when I'm about to be done with my project."

    - Just wondering what have u actually done to the server, if u haven't even compiled it once, and almost done? (not that u couldn't write 100k lines of content before compiling...)
    rekt x.x
    Reply With Quote  
     

  11. #9  
    Member
    Join Date
    Jul 2013
    Age
    25
    Posts
    379
    Thanks given
    81
    Thanks received
    14
    Rep Power
    0
    Quote Originally Posted by mige5 View Post
    "I'm trying to get a Compiler for my Source to allow me to fix up last minute things when I'm about to be done with my project."

    - Just wondering what have u actually done to the server, if u haven't even compiled it once, and almost done? (not that u couldn't write 100k lines of content before compiling...)
    Lol, obviously you cannot read, no offense. I said, "allow me to fix up last minute things when I'm about to be done." I never said I was about to be done, I said WHEN I'm about done I can fix up some things. Again no offense.
    Quote Originally Posted by Ganorah View Post
    that you are a stupid kid that complains and complains on things that you dont appreciate, you should put a fucking bullet in your head no1 will miss you not even your parents... you dont deserve to live thats what im fucking on about, retard
    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. [REQ] 317 Pi source and client
    By arceus in forum Requests
    Replies: 1
    Last Post: 07-27-2014, 07:23 PM
  2. [317 PI] - Source Compiler
    By Classy Penguin in forum Help
    Replies: 8
    Last Post: 06-25-2014, 01:59 AM
  3. Replies: 1
    Last Post: 04-16-2014, 12:28 PM
  4. Replies: 4
    Last Post: 01-12-2014, 12:59 AM
  5. Rune Vapor 317 [Pi] Source+Client
    By Moot in forum Downloads
    Replies: 23
    Last Post: 03-25-2011, 08:24 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
  •