The run Command Does Not work

Discussion in 'Bukkit Help' started by Bkr_basedgod, Jun 6, 2014.

Thread Status:
Not open for further replies.
  1. Offline

    Bkr_basedgod

    When im using the run command
    'java -Xmx1024M -jar craftbukkit.jar -o true PAUSE'
    it wont let me start it up so idk what i have to do i put this inside my new
    text document and save it as Run.bat in all files and i double click on run and it says press any key to continue idk what to do
     
  2. Offline

    GRANTSWIM4

    Make sure you craftbukkit is named CRAFTBUKKIT.JAR
     
  3. Offline

    LordDarthBob

    Bkr_basedgod
    First, make sure you're using the correct run.bat data for your operating system. On a mac, run.bat looks like this:
    Code:
    #!/bin/bash
    cd "$( dirname "$0" )"
    java -Xmx1024M -jar craftbukkit.jar -o true
    Second, make sure the filename you specify in the run.bat is the same as your craftbukkit file's name (i.e You should use craftbukkit.jar as a file name because that is what you defined in run.bat.)


    Third, run.bat should be in the same folder as craftbukkit.jar.

    If these don't help, re-read this for some additional information.
     
  4. Offline

    Bkr_basedgod

    I tried what you said lordDarthBob i still need different codes to use in the run.bat starting up command and i need one for windows 7 if not if wont let me start up my server
     
  5. Offline

    TreeDB

    Bkr_basedgod The startup command looks incorrect, try copying and pasting this:
    Code:
    @echo off
    java -Xmx1024M -jar craftbukkit.jar -o true
    pause
    
     
Thread Status:
Not open for further replies.

Share This Page