Added new Bliss GitHub

Here is a batch script I use to install a new Bliss server.

Code:
@echo off
set /P input=Do you have perl installed(Y/N):
if %input%==Y (
start setup_perl.bat
goto build
) else (
goto noperl
)
 
:build
echo ---------------------------
echo Chernarus
echo Lingor
echo Takistan
echo Utes
echo Panthera
echo Fallujah
echo Zargabad
echo Namalsk
echo Celle
echo Taviana
echo ---------------------------
echo Input World Name
set /P input2=World:
if %input2%==Chernarus (
set /P input3=Instance:
perl build.pl --world %input2% --instance %input3%
goto mysql
) else (
perl db_utility.pl setworld %input2% --instance %input3%
goto mysql
)
 
:mysql
set /P input4=Do you have your database and MySQL server created (Y/N):
if %input4%==Y (
goto migrate
) else (
goto nodbmysql
)
 
:migrate
set /P input5=Database Password:
perl db_migrate.pl --password %input5%
goto package
 
:package
set /P input8=Install pacakges (Y/N):
if %input8%==Y (
echo Available Packages:
echo ---------------------------
echo carepkgs
echo killmsgs
echo messaging
echo buildings
echo wrecks
echo invcust
echo ---------------------------
echo.
SET /P input=Please Enter A Package Name:
perl package_manager.pl install %input%
goto con
:con
SET /P input9=Install Another Package (Y/N):
if %input9%==Y (
goto package
) else (
goto done
)
 
:done
echo You are all set!
echo Now Exiting.
timeout /T 5
exit
 
:noperl
echo Please install perl
echo Now exiting
timeout /T 5
exit
 
:nodbmysql
echo Please setup a mysql server and your database
echo Now exiting
timeout /T 5
exit

I haven't added the loadout parameter as I keep getting a FATAL: Inventory invalid.
 
I will try to make the changes as he requested, but I am deep in the development of the Reality Builder. Other then getting it working as is on 1.7.5 I do not plan on spending much time continuing the development as a lot of the perl scripts are incredibly buggy and do not properly build a server with addons. It will build a vanilla server or a server with a single add on perfectly fine.

As it stands the Reality Builder will be far superior to the original product and support more functionality in the long run. It will support the Bliss database and add on packages that it already had in place. Therefore, users who run Bliss will have no problems transferring over to the Reality Builder and using this for server deployments. Here are a couple of screen shot of the current development build.

Mission packages, server packages and missions can be added on the fly by going to the proper tab and selecting the objects you want to enable. Clicking build will allow you to create a package for that particular add on, which is indicated by the top photo. If you have a pkg file create, it will enable that package for the Builder to compile the server from.

This will allow the software to support any and all scripts that are available anywhere and provide a quick way to recompile a server with those addons. You will notice that the Mission tab has an upload and download button, which I will be create a web service for to handle consuming requests for addons to be provided. This will allow add on makers to maintain their code from the tool and provide these for other server admins.


1mnPm


1vbSr
 
aww ok thank you for the quick info!

we have any ideas when 1.7.5 is coming out? i heard friday-ish (2/1/13)
 
We installed 1.7.5 (hive version, not bliss) on one of our servers last night and been playing it for like 10hs, it works.
You just need to create the conf files etc., like Stapo does on his lite packages.
 
I was under the impression it was Friday as well. They just deleted the 1.7.5 branch; however, so I am not sure if the release date may have changed as well. There have been a few bugs found, so it's possible they are trying to patch these up quickly.
 
thevisad, I was planning on doing something like the reality builder in c# too, sadly I'm taking vacations right now (tomorrow), but let's join efforts or let me know how I can help. I just finished (barring a few last touches to clean up the public interface) a new rcon library in c# and was planning to keep working towards an integrated backend (pull logs+database+rcon stream into an info aggregator) to provide an integrated info source to detect hackers. Check besharp here: https://github.com/st4l/BEsharp
 
thevisad, I was planning on doing something like the reality builder in c# too, sadly I'm taking vacations right now (tomorrow), but let's join efforts or let me know how I can help. I just finished (barring a few last touches to clean up the public interface) a new rcon library in c# and was planning to keep working towards an integrated backend (pull logs+database+rcon stream into an info aggregator) to provide an integrated info source to detect hackers. Check besharp here: https://github.com/st4l/BEsharp


Hit me up when you get back and we can chat.
 
Yeah, I was about to check that to update our server ;) Probably gonna move it to the dev or stable branches.
 
That's ok - couldn't get on the server.
Database errors eventually caused the server crash or lock up and give a constant red chain.
Will wait for now until something gets released.

Thanks for the help.
 
Did you replace the dayz_code, dayz_anim and dayz_sfx from the package as well or just replace the dayz_server?
 
Back
Top