1
0
Fork 0

Removed all example ini files from Install.

They are copied from MCServer by the nightbuild script.
This commit is contained in:
madmaxoft 2013-08-03 20:41:26 +02:00
parent 3255c29e7a
commit b3906500c7
12 changed files with 16 additions and 116 deletions

3
Install/.gitignore vendored
View File

@ -1,3 +1,4 @@
MCServer.exe
*.7z
*.tag
*.tag
*.example.ini

View File

@ -6,13 +6,10 @@
..\MCServer\items.ini
..\MCServer\monsters.ini
MCServer*debug.cmd
banned.example.ini
groups.example.ini
*.example.ini
Lua-LICENSE.txt
LuaExpat-license.html
LuaSQLite3-LICENSE.txt
MersenneTwister-LICENSE.txt
settings.example.ini
users.example.ini
webadmin.example.ini
whitelist.example.ini
webadmin.example.ini

View File

@ -1,31 +0,0 @@
[Server]
Port=25565
MaxPlayers=42
Description=MCServer - Slightly more custom!
[Worlds]
DefaultWorld=world
;World=world_sexy
[Plugins]
NewPlugin=Core
NewPlugin=ChatLog
[HelpPlugin]
ShowPluginNames=1
[Physics]
Water=0
[Redstone]
SimulateRedstone=0
[Monsters]
AnimalsOn=0
AnimalSpawnInterval=10
Types=Spider,Chicken,Cow,Pig,Sheep,Squid,Enderman,Zombiepigman,Cavespider,Creeper,Ghast,Silverfish,Skeleton,Slime,Spider,Zombie
[Authentication]
Server=session.minecraft.net
Address=/game/checkserver.jsp?user=%USERNAME%&serverId=%SERVERID%
Authenticate=0

View File

@ -1,8 +0,0 @@
[SomeAdmin]
Groups=Admins
[FancyModerator]
Groups=Moderators
[ImportantPerson]
Groups=Vips

View File

@ -1,6 +0,0 @@
[WebAdmin]
Enabled=1
Port=8080
[User:admin]
Password=admin

View File

@ -1,3 +1,3 @@
[Banned]
;PlayerName=1
[Banned]
;PlayerName=1

View File

@ -1,17 +0,0 @@
[Admins]
Permissions=*
Color=c
[Mods]
Color=5
Inherits=Vips
Permissions=core.time,core.item
[Vips]
Permissions=core.teleport
Color=2
Inherits=Default
[Default]
Permissions=core.build,core.help,core.playerlist,core.pluginlist,core.spawn
Color=7

View File

@ -1,6 +1,6 @@
[WhiteListSettings]
WhiteListOn=0
[WhiteList]
;PlayerName=1
[WhiteListSettings]
WhiteListOn=0
[WhiteList]
;PlayerName=1

View File

@ -92,6 +92,9 @@ if errorlevel 1 goto haderror
:: Copy all the example ini files into the Install folder for zipping:
copy MCServer\*.example.ini Install\*.example.ini
:: Use 7-zip to compress the resulting files into a single file:
set FILESUFFIX=%MYYEAR%_%MYMONTH%_%MYDAY%_%MYTIME%_%COMMITID%
echo FILESUFFIX=%FILESUFFIX%

View File

@ -1,39 +0,0 @@
@echo off
:: UpdateVersions.cmd
:: This script processes all *.template files into their non-templated variants using subwcrev, substituting WC-related keywords in the process
:: subwcrev is expected to be in path; you can pass the correct path for your system as env var "subwcrev"
:: Subwcrev (from TortoiseSVN, for querying revision number; by default in PATH):
if %subwcrev%a == a set subwcrev=subwcrev
:: Copy all *.template files into their non-template versions, substituting SVN keywords:
for /r %%X in (*.template) do (
%subwcrev% . "%%X" "%%~dpX%%~nX"
if errorlevel 1 goto haderror
)
goto end
:haderror
echo an error was encountered, check command output above
pause
goto finished
:end
if "a%1" == "a" pause
:finished