-
Posts
1,881 -
Joined
-
Last visited
-
Days Won
77
Content Type
Profiles
Forums
Events
Downloads
Everything posted by Dennis
-
Minecraft (40+ modpacks, more than 200+ different versions)
Dennis replied to Dennis's topic in Game Config Files
You should run batch on Windows, not bash :-) -
In the new MVC templates you can set a background image per game that will show up when you're on the ServiceHome for each service (where you can start/stop/restart the service. If you don't configure a background image, you'll instead see the images that are on the Steam Store page for that game. If there's multiple images, a random one will be shown for each page reload.
-
If you experience monitor-crashes from time to time, there's a simple solution. You can set the Windows service to automatically restart if the service is shut down. On your Windows server, go to Services, right click the TCAdmin Monitor service and select Properties. In the Recovery tab, set First Failure and Second Failure to Restart the Service. Leave the Subsequent Failures to either Take no Action or Run a Program (you could make a script that notifies you about the crash). If TCAdmin keeps crashing, you would need to investigate the issue by opening the error log (C:\Program Files\TCAdmin2\Logs\Monitor\). Also, remember to set 'Reset fail counter' to 1. If it's set to 0, the fail counter will be reset to 0 every time the service is started again, meaning it will never go to Second Failure or Subsequent Failures - but this is just how we've done it. Tweak it to your own needs :-)
-
Hi, Go to System > Settings > Game & Other Voice Servers > Killing Floor 2 > Export. Upload that config file (.xml) here.
-
Yes ;-) Shouldn't be difficult getting other versions to work, so just let me know if you need any.
-
Can you please post your config? I'll have a look at it then.
-
Minecraft (40+ modpacks, more than 200+ different versions)
Dennis replied to Dennis's topic in Game Config Files
Here you go: https://clientforums.tcadmin.com/showthread.php?p=80301 -
This is a very simple config for Minecraft: Bedrock Edition. Instead of using the official software, this config is using NukkitX which support plugins. MC_BE - Windows.xml
-
What exact errors are this? :-)
-
I've posted a config here: https://clientforums.tcadmin.com/showthread.php?p=80294
-
You will need to configure this config before it can be used. Files for mods aren't included. You will need to get these yourself or remove them from the config. Features: Install Craftbukkit/Spigot from Mods Install more than 40 other mods Install more than 200+ different version of Minecraft/Spigot/Craftbukkit Create custom command lines World backup Load world backup Create firewall rules If you are encountering any issues, please install Python 2.7 and go to System > Settings > Server Management > Servers > Select your server > Custom Fields. Enter the path to your Python 2.7 Lib folder in Custom Field 1. This is required because most scripts are Python scripts and will work for both Linux and Windows. Linux are not tested. You can use this to install/update Spigot and Craftbukkit: https://clientforums.tcadmin.com/showthread.php?p=80293 MC - Linux.xml MC - Windows.xml
-
We use the following bash script to keep Spigot/Craftbukkit updated: Updatespigot.sh: #!/bin/bash cd /path/to/buildtools-directory _JAVA_OPTIONS=-Djdk.net.URLClassPath.disableClassPathURLCheck=true java -jar -Xmx1024M BuildTools.jar --rev $1 cp spigot-$1.jar /path/to/gamefiles/minecraft/TCA.Mods/spigot.jar cp spigot-$1.jar /path/to/gamefiles/minecraft/TCA.Updates/spigot.jar cp spigot-$1.jar /path/to/gamefiles/minecraft/TCA.Updates/spigot-$1.jar cp CraftBukkit/target/craftbukkit-$1-R0.1-SNAPSHOT.jar /path/to/gamefiles/minecraft/TCA.Mods/craftbukkit.jar cp CraftBukkit/target/craftbukkit-$1-R0.1-SNAPSHOT.jar /path/to/gamefiles/minecraft/TCA.Updates/craftbukkit.jar cp CraftBukkit/target/craftbukkit-$1-R0.1-SNAPSHOT.jar /path/to/gamefiles/minecraft/TCA.Updates/craftbukkit-$1.jar cp spigot-$1.jar /path/to/gamefiles/minecraft/spigot.jar cp CraftBukkit/target/craftbukkit-$1-R0.1-SNAPSHOT.jar /path/to/gamefiles/minecraft/craftbukkit.jar Run it like this: sh /path/to/buildtools-directory/updatespigot.sh 1.14.2The above command will install Spigot and Craftbukkit v 1.14.2 and place it into the appropriate folders. Now you should go to the game config file, add a new update (file name would be spigot-1.14.2.jar fx). Create a custom script for the update with the following: import sys sys.path.append(ThisServer.CustomField1) #Assuming Python 2.7 has been installed and path to the /Lib folder is specified in Servers > Servername > Custom Field 1 from shutil import move move(ThisService.RootDirectory + "spigot-1.14.2.jar", ThisService.RootDirectory + "spigot.jar") You can setup a cron job to run every hour to update the files.
-
What distro are you using?
-
Just use the service's IP and whatever port you use for FTP.
-
The ability to update mods from the Steam Workshop. Should be enough with an 'Update' button that downloads the latest files from the workshop.
-
DELETE FROM tc_tasks WHERE status IN (3, 4, 5) AND last_run_time < '2019-1-1'; DELETE FROM tc_task_steps WHERE task_id NOT in (SELECT task_id FROM tc_tasks); We do this regularly. Our database once took up gigabytes of space, and connections to the database seemed slow. Removing old tasks fixed it ;-) Edit: Also remember to optimize the tables afterwards: optimize table tc_tasks; optimize table tc_task_steps;
-
Remember to clean them up regularly. The panel might load slower.
-
Finally a native way to do this
-
You'll still need to have the game server files before you start setting up the game server. There's no files to copy right now.
-
Hi, That's the default. You can also make a Before Stopped-script that simulates this: Script.WriteToConsole("^C");
-
You will need to make sure that the server files exists on the server in C:\TCAFiles\Games\rust first. Go to Settings > Game Tools > Steam Game Download and download the server files for Rust.
-
MVC is not complete yet. I'd wait paying $200 for something that can't be completed yet..
-
It shouldn't be testuser (unless you've setup that user to run ARK servers). Try going to Actions > Repair.
-
Make sure that the TCAGame user (or similar) has the proper permissions for the folder. Can you update if you run SteamCMD as root?
-
That's because you're not using the latest version of TCAdmin. If you can't update (for one reason or another), you can open the XML file and delete line 23-25. You might need to delete more lines.