Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps | Demo | Docs | Install
  1. Cloudron Forum
  2. App Wishlist
  3. Minecraft Forge Server

Minecraft Forge Server

Scheduled Pinned Locked Moved Solved App Wishlist
54 Posts 5 Posters 8.0k Views 6 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • nebulonN Away
    nebulonN Away
    nebulon
    Staff
    wrote on last edited by
    #22

    Great, I think we are close to getting this into the app library. I've forked your repo into the cloudron namespace and you should be a "developer" for that repo at https://git.cloudron.io/cloudron/minecraft-forge-app

    ? 1 Reply Last reply
    0
    • nebulonN nebulon

      Great, I think we are close to getting this into the app library. I've forked your repo into the cloudron namespace and you should be a "developer" for that repo at https://git.cloudron.io/cloudron/minecraft-forge-app

      ? Offline
      ? Offline
      A Former User
      wrote on last edited by A Former User
      #23

      @nebulon cool. Yeah the only thing I was thinking of changing there was hosting the actual server jar files and libs in a file storage server somewhere to reduce the bloat of the repo. Do you think that or the current method make the most sense?

      1 Reply Last reply
      0
      • BrutalBirdieB BrutalBirdie

        And I have my base for a papermc server 😄

        (ps: My version has a problem where the web console displays no text but works 🤷 might fix this if I find the time)

        Paper is a high performance fork of the Spigot Minecraft Server that aims to fix gameplay and mechanics inconsistencies as well as to improve performance.

        https://git.cloudron.io/BrutalBirdie/papermc-minecraft-app/-/tree/feature/v1.6.5

        ? Offline
        ? Offline
        A Former User
        wrote on last edited by A Former User
        #24

        @brutalbirdie also perhaps this change I made to mine will help get the terminal working for yours? https://git.cloudron.io/cloudron/minecraft-forge-app/-/commit/b49f9b9ce3620dde5ca82aa4394345630120b251#d7eea7e71cfc09240e80c27cf7a3c1b6b21de82b

        You’d have to see what the papermc server spits out

        BrutalBirdieB 2 Replies Last reply
        0
        • ? A Former User

          @brutalbirdie also perhaps this change I made to mine will help get the terminal working for yours? https://git.cloudron.io/cloudron/minecraft-forge-app/-/commit/b49f9b9ce3620dde5ca82aa4394345630120b251#d7eea7e71cfc09240e80c27cf7a3c1b6b21de82b

          You’d have to see what the papermc server spits out

          BrutalBirdieB Offline
          BrutalBirdieB Offline
          BrutalBirdie
          Partner
          wrote on last edited by
          #25

          @atrilahiji will try that.

          Like my work? Consider donating a drink. Cheers!

          1 Reply Last reply
          0
          • ? A Former User

            @brutalbirdie also perhaps this change I made to mine will help get the terminal working for yours? https://git.cloudron.io/cloudron/minecraft-forge-app/-/commit/b49f9b9ce3620dde5ca82aa4394345630120b251#d7eea7e71cfc09240e80c27cf7a3c1b6b21de82b

            You’d have to see what the papermc server spits out

            BrutalBirdieB Offline
            BrutalBirdieB Offline
            BrutalBirdie
            Partner
            wrote on last edited by BrutalBirdie
            #26

            @atrilahiji That wont work for me 😄
            My Console output looks like this.

            Feb 08 17:14:35 [16:14:35 INFO]: [Vault] No new version available
            Feb 08 19:42:41 [18:42:41 INFO]: CONSOLE issued server command: /help
            Feb 08 19:42:41 [18:42:41 INFO]: To view help from the console, type '?'.
            Feb 08 19:42:55 [18:42:55 INFO]: -------------------- Help --------------------
            

            so I would have to match \\[\d+\:\d+\:\d+\s[INFO|WARN|ERROR]\\]

            Like my work? Consider donating a drink. Cheers!

            ? 1 Reply Last reply
            0
            • BrutalBirdieB BrutalBirdie

              @atrilahiji That wont work for me 😄
              My Console output looks like this.

              Feb 08 17:14:35 [16:14:35 INFO]: [Vault] No new version available
              Feb 08 19:42:41 [18:42:41 INFO]: CONSOLE issued server command: /help
              Feb 08 19:42:41 [18:42:41 INFO]: To view help from the console, type '?'.
              Feb 08 19:42:55 [18:42:55 INFO]: -------------------- Help --------------------
              

              so I would have to match \\[\d+\:\d+\:\d+\s[INFO|WARN|ERROR]\\]

              ? Offline
              ? Offline
              A Former User
              wrote on last edited by
              #27

              @brutalbirdie 😧

              BrutalBirdieB 1 Reply Last reply
              0
              • ? A Former User

                @brutalbirdie 😧

                BrutalBirdieB Offline
                BrutalBirdieB Offline
                BrutalBirdie
                Partner
                wrote on last edited by BrutalBirdie
                #28

                @atrilahiji I will test this

                .toString().split(/\[\d+\:\d+\:\d+\s(INFO|WARN|ERROR)\]\:\s/)[2]);
                

                Tested it with jsfiddle and regex101

                text = "Feb 08 17:14:35 [16:14:35 INFO]: [Vault] No new version available";
                console.log(text.toString().split(/\\[\d+\:\d+\:\d+\s(INFO|WARN|ERROR)\\]\:\s/)[2]);
                

                Like my work? Consider donating a drink. Cheers!

                BrutalBirdieB 1 Reply Last reply
                0
                • BrutalBirdieB BrutalBirdie

                  @atrilahiji I will test this

                  .toString().split(/\[\d+\:\d+\:\d+\s(INFO|WARN|ERROR)\]\:\s/)[2]);
                  

                  Tested it with jsfiddle and regex101

                  text = "Feb 08 17:14:35 [16:14:35 INFO]: [Vault] No new version available";
                  console.log(text.toString().split(/\\[\d+\:\d+\:\d+\s(INFO|WARN|ERROR)\\]\:\s/)[2]);
                  
                  BrutalBirdieB Offline
                  BrutalBirdieB Offline
                  BrutalBirdie
                  Partner
                  wrote on last edited by BrutalBirdie
                  #29

                  Well ... silly me did a copy-paste mistake and forgot the \ at the first [
                  also why not this RegEx \\[.*\\]\:\s a lot simpler.

                  Like my work? Consider donating a drink. Cheers!

                  ? 1 Reply Last reply
                  0
                  • BrutalBirdieB BrutalBirdie

                    Well ... silly me did a copy-paste mistake and forgot the \ at the first [
                    also why not this RegEx \\[.*\\]\:\s a lot simpler.

                    ? Offline
                    ? Offline
                    A Former User
                    wrote on last edited by
                    #30

                    @brutalbirdie Lol true that should work

                    1 Reply Last reply
                    0
                    • ? Offline
                      ? Offline
                      A Former User
                      wrote on last edited by A Former User
                      #31

                      @nebulon FYI I submitted a PR to the repo https://git.cloudron.io/cloudron/minecraft-forge-app/-/merge_requests/1

                      This should clean it up a bit more. Let me know if theres anything else you need from my end on getting this up and running as a proper app. Again, I am perfectly willing to be in charge of submitting MRs for any updates to take a bit of the load off of @staff

                      1 Reply Last reply
                      1
                      • nebulonN Away
                        nebulonN Away
                        nebulon
                        Staff
                        wrote on last edited by
                        #32

                        yes thanks, saw that. I still have to play this through on my own to see what this business with the jar files is 😉

                        ? 1 Reply Last reply
                        2
                        • nebulonN nebulon

                          yes thanks, saw that. I still have to play this through on my own to see what this business with the jar files is 😉

                          ? Offline
                          ? Offline
                          A Former User
                          wrote on last edited by
                          #33

                          @nebulon For sure, thanks! Yeah if you have any ideas about that let me know. I'm a bit lost with trying to run a jar headless if it relies on options to be selected in the GUI and there is no documentation that indicates that it can be run headless

                          1 Reply Last reply
                          0
                          • girishG Offline
                            girishG Offline
                            girish
                            Staff
                            wrote on last edited by
                            #34

                            Iirc, a jar is just a zip file. So maybe the files are inside it as resources.

                            ? 1 Reply Last reply
                            0
                            • girishG girish

                              Iirc, a jar is just a zip file. So maybe the files are inside it as resources.

                              ? Offline
                              ? Offline
                              A Former User
                              wrote on last edited by A Former User
                              #35

                              @girish Found this when unpacking the installer jar file...
                              Screen Shot 2021-02-08 at 6.30.38 PM.png

                              I have basically 0 knowledge about Java. Does this mean anything to anyone?
                              Screen Shot 2021-02-08 at 6.33.16 PM.png

                              girishG 1 Reply Last reply
                              0
                              • ? A Former User

                                @girish Found this when unpacking the installer jar file...
                                Screen Shot 2021-02-08 at 6.30.38 PM.png

                                I have basically 0 knowledge about Java. Does this mean anything to anyone?
                                Screen Shot 2021-02-08 at 6.33.16 PM.png

                                girishG Offline
                                girishG Offline
                                girish
                                Staff
                                wrote on last edited by
                                #36

                                @atrilahiji Ah, good catch. I guess we can put in a link to https://www.patreon.com/LexManos in the DESCRIPTION/Doc link and maybe also setup some patreon from our side if we decide to publish it. I am not sure how popular forge is, but we can scale that amount based on usage.

                                ? 1 Reply Last reply
                                0
                                • girishG girish

                                  @atrilahiji Ah, good catch. I guess we can put in a link to https://www.patreon.com/LexManos in the DESCRIPTION/Doc link and maybe also setup some patreon from our side if we decide to publish it. I am not sure how popular forge is, but we can scale that amount based on usage.

                                  ? Offline
                                  ? Offline
                                  A Former User
                                  wrote on last edited by
                                  #37

                                  @girish Yeah thats going to be troublesome. I suppose from your end its a huge issue if the maintainer feels ripped off here. I suppose it really doesn't matter if it remains as an unlisted app for the moment (unless you think its ok... I definitely prefer having it listed but I get it if thats not possible). Either way I'll add proper attribution and patreon links.

                                  Would you like me to reach out to the developer?

                                  girishG 1 Reply Last reply
                                  0
                                  • ? A Former User

                                    @girish Yeah thats going to be troublesome. I suppose from your end its a huge issue if the maintainer feels ripped off here. I suppose it really doesn't matter if it remains as an unlisted app for the moment (unless you think its ok... I definitely prefer having it listed but I get it if thats not possible). Either way I'll add proper attribution and patreon links.

                                    Would you like me to reach out to the developer?

                                    girishG Offline
                                    girishG Offline
                                    girish
                                    Staff
                                    wrote on last edited by
                                    #38

                                    @atrilahiji Yes, agreed. I think since there is a special comment about automating the installation, we should check regardless of the license. Please do reach out to them and ask how he/she feels about it.

                                    ? 3 Replies Last reply
                                    0
                                    • girishG girish

                                      @atrilahiji Yes, agreed. I think since there is a special comment about automating the installation, we should check regardless of the license. Please do reach out to them and ask how he/she feels about it.

                                      ? Offline
                                      ? Offline
                                      A Former User
                                      wrote on last edited by
                                      #39

                                      @girish Ok sent him a message. Waiting for a reply. I'll let you know what comes of this.

                                      1 Reply Last reply
                                      0
                                      • girishG girish

                                        @atrilahiji Yes, agreed. I think since there is a special comment about automating the installation, we should check regardless of the license. Please do reach out to them and ask how he/she feels about it.

                                        ? Offline
                                        ? Offline
                                        A Former User
                                        wrote on last edited by
                                        #40

                                        @girish C940F49E-B4CB-4324-B5ED-3A9906D82E96.jpeg

                                        I asked my brother about this since he’s more experienced with forge. Looks like this works...

                                        Still waiting to hear back from the developer

                                        1 Reply Last reply
                                        1
                                        • ? Offline
                                          ? Offline
                                          A Former User
                                          wrote on last edited by A Former User
                                          #41

                                          Pushed an MR for 0.4.0 with proper automation. That message from my brother saved the day 🙂

                                          Made a new one... no conflicts this time.

                                          1 Reply Last reply
                                          2
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Bookmarks
                                          • Search