Removed all example ini files from Install.
They are copied from MCServer by the nightbuild script.
This commit is contained in:
parent
3255c29e7a
commit
b3906500c7
1
Install/.gitignore
vendored
1
Install/.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
MCServer.exe
|
MCServer.exe
|
||||||
*.7z
|
*.7z
|
||||||
*.tag
|
*.tag
|
||||||
|
*.example.ini
|
@ -6,13 +6,10 @@
|
|||||||
..\MCServer\items.ini
|
..\MCServer\items.ini
|
||||||
..\MCServer\monsters.ini
|
..\MCServer\monsters.ini
|
||||||
MCServer*debug.cmd
|
MCServer*debug.cmd
|
||||||
banned.example.ini
|
*.example.ini
|
||||||
groups.example.ini
|
|
||||||
Lua-LICENSE.txt
|
Lua-LICENSE.txt
|
||||||
LuaExpat-license.html
|
LuaExpat-license.html
|
||||||
LuaSQLite3-LICENSE.txt
|
LuaSQLite3-LICENSE.txt
|
||||||
MersenneTwister-LICENSE.txt
|
MersenneTwister-LICENSE.txt
|
||||||
settings.example.ini
|
settings.example.ini
|
||||||
users.example.ini
|
|
||||||
webadmin.example.ini
|
webadmin.example.ini
|
||||||
whitelist.example.ini
|
|
@ -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
|
|
@ -1,8 +0,0 @@
|
|||||||
[SomeAdmin]
|
|
||||||
Groups=Admins
|
|
||||||
|
|
||||||
[FancyModerator]
|
|
||||||
Groups=Moderators
|
|
||||||
|
|
||||||
[ImportantPerson]
|
|
||||||
Groups=Vips
|
|
@ -1,6 +0,0 @@
|
|||||||
[WebAdmin]
|
|
||||||
Enabled=1
|
|
||||||
Port=8080
|
|
||||||
|
|
||||||
[User:admin]
|
|
||||||
Password=admin
|
|
@ -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
|
|
@ -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:
|
:: Use 7-zip to compress the resulting files into a single file:
|
||||||
set FILESUFFIX=%MYYEAR%_%MYMONTH%_%MYDAY%_%MYTIME%_%COMMITID%
|
set FILESUFFIX=%MYYEAR%_%MYMONTH%_%MYDAY%_%MYTIME%_%COMMITID%
|
||||||
echo FILESUFFIX=%FILESUFFIX%
|
echo FILESUFFIX=%FILESUFFIX%
|
||||||
|
@ -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
|
|
Loading…
Reference in New Issue
Block a user