Craftopia: config and server stop fixes (#147)
* Updates to download config file * Fix server stop
This commit is contained in:
parent
43ee4e8e57
commit
2a9992265a
@ -23,12 +23,12 @@ App.LinuxCommandLineArgs=
|
||||
App.WindowsCommandLineArgs=
|
||||
App.CommandLineArgs=-batchmode -showlogs
|
||||
App.AppSettings={}
|
||||
App.EnvironmentVariables={"LD_LIBRARY_PATH":"./linux64:%LD_LIBRARY_PATH%","SteamAppId":"1670340"}
|
||||
App.EnvironmentVariables={"LD_LIBRARY_PATH":"{{$FullBaseDir}}linux64:%LD_LIBRARY_PATH%","SteamAppId":"1307550"}
|
||||
App.CommandLineParameterFormat=-{0} "{1}"
|
||||
App.CommandLineParameterDelimiter=
|
||||
App.ExitMethod=String
|
||||
App.ExitTimeout=120
|
||||
App.ExitString=quit
|
||||
App.ExitTimeout=30
|
||||
App.ExitString=stop
|
||||
App.ExitFile=app_exit.lck
|
||||
App.HasWriteableConsole=True
|
||||
App.HasReadableConsole=True
|
||||
@ -45,7 +45,7 @@ App.RemoteAdminPassword=Password123
|
||||
App.AdminMethod=STDIO
|
||||
App.RCONConnectDelaySeconds=5
|
||||
App.RCONConnectRetrySeconds=5
|
||||
App.UpdateSources=[{"UpdateStageName":"SteamCMD Download","UpdateSourcePlatform":"All","UpdateSource":"SteamCMD","UpdateSourceData":"1670340"},{"UpdateStageName":"Start Server","UpdateSourcePlatform":"All","UpdateSource":"StartApplication"},{"UpdateStageName":"Wait For Server Start","UpdateSourcePlatform":"All","UpdateSource":"WaitForStartupComplete"},{"UpdateStageName":"Stop Server","UpdateSourcePlatform":"All","UpdateSource":"ShutdownApplication"}]
|
||||
App.UpdateSources=[{"UpdateStageName":"SteamCMD Download","UpdateSourcePlatform":"All","UpdateSource":"SteamCMD","UpdateSourceData":"1670340"},{"UpdateStageName":"Server Config File Download","UpdateSourcePlatform":"All","UpdateSource":"FetchURL","UpdateSourceData":"https://raw.githubusercontent.com/Greelan/AMPTemplates/craftopia/craftopiaserversetting.ini","UpdateSourceTarget":"../","OverwriteExistingFiles":true},{"UpdateStageName":"Config File Copy","UpdateSourcePlatform":"All","UpdateSource":"CopyFilePath","UpdateSourceData":"./craftopia/1670340/ServerSetting.ini","UpdateSourceArgs":"./craftopiaserversetting.ini","OverwriteExistingFiles":false}]
|
||||
App.Compatibility=None
|
||||
App.SteamUpdateAnonymousLogin=True
|
||||
App.SteamForceLoginPrompt=False
|
||||
|
87
craftopiaserversetting.ini
Normal file
87
craftopiaserversetting.ini
Normal file
@ -0,0 +1,87 @@
|
||||
|
||||
; Game World Data Setting - name, difficulty, gameMode
|
||||
; name : world name
|
||||
; difficulty : 0- Easy, 1- Normal(default), 2- Hard, 3- VeryHard
|
||||
; gameMode : 1- NormalWorld(default), 2- CreativeWorld_Build, 3- CreativeWorld_Play
|
||||
|
||||
; Server Setting - port : used when not using steam lobby function
|
||||
; maxPlayerNumber : maximum number of player can join into the server(1 ~ 127)
|
||||
; usePassword : using server password(1- True / 0- False)
|
||||
; serverPassword : setting server password up to 8 digit number pin
|
||||
|
||||
; Graphics Setting - vSyncCount, maxFPS, grassBend, clothSimOption
|
||||
; vSyncCount : vertical sync, 0- disable, 1- once per frame 2- per two frame
|
||||
; maxFPS : max frames per second, set to -1 for unlimited fps
|
||||
; grassBend : enable Grass Bend(1- True / 0- False)
|
||||
; ClothSimOption : cloth simulation, 1- animate everybody's, 2- animate nobody's
|
||||
|
||||
; Save Setting - autoSaveSec, autoSavePerHour
|
||||
; autoSaveSec : autoSavePer ** second, to disable, set to -1
|
||||
; autoSavePerHour : enable autoSavePerHour(1- True / 0- False)
|
||||
; savePath : relative path base on ServerSetting.ini folder or absolute path
|
||||
|
||||
; Creative Mode Setting -
|
||||
; quickCraft : crafting without checking item cost(1- True / 0- False)
|
||||
; ageLevel : age Level of the game world, effect crafting recipe
|
||||
; islandLevel : island level override, effect monster and dungeon level, set to -1 to disable override
|
||||
; noDeath : player character would not dead(1- True / 0- False)
|
||||
; noDamage : player character would not take damage(1- True / 0- False)
|
||||
; noHunger : player character would not be hungry(1- True / 0- False)
|
||||
; infinitStamina : player character has infinit stamina(1- True / 0- False)
|
||||
; forceDayTime : game world day time override, 0 to 24, set to -1 to disable
|
||||
; buildingIgnoreDamage : building would not take damage(1- True / 0- False)
|
||||
; noBuild : player can not place new building(1- True / 0- False)
|
||||
|
||||
; Creative Mode Player Status Override - apply at gameStart
|
||||
; Level : override character level, set to 0 to disable
|
||||
; Health : override character health, set to 0 to disable
|
||||
; Mana : override character mana, set to 0 to disable
|
||||
; Stamina : override character stamia, set to 0 to disable
|
||||
; Money : override character money
|
||||
; SkillPoint : override character skill point
|
||||
; EnchantPoint : override character enchant point
|
||||
|
||||
[GameWorld]
|
||||
name=AMP World
|
||||
difficulty=1
|
||||
gameMode=1
|
||||
|
||||
[Host]
|
||||
port=6587
|
||||
maxPlayerNumber=7
|
||||
usePassword=0
|
||||
serverPassword=00000000
|
||||
bindAddress=0.0.0.0
|
||||
isUseSteamLobby=0
|
||||
|
||||
[Graphics]
|
||||
vSyncCount=0
|
||||
maxFPS=60
|
||||
grassBend=0
|
||||
clothSimOption=2
|
||||
|
||||
[Save]
|
||||
autoSaveSec=300
|
||||
autoSavePerHour=1
|
||||
savePath=DedicatedServerSave/
|
||||
|
||||
[CreativeModeSetting]
|
||||
quickCraft=1
|
||||
ageLevel=7
|
||||
islandLevel=-1
|
||||
noDeath=1
|
||||
noDamage=1
|
||||
noHunger=1
|
||||
infinitStamina=1
|
||||
forceDayTime=-1
|
||||
buildingIgnoreDamage=0
|
||||
noBuild=0
|
||||
|
||||
[CreativeModePlStatus]
|
||||
Level=0
|
||||
Health=0
|
||||
Mana=0
|
||||
Stamina=0
|
||||
Money=1000
|
||||
SkillPoint=0
|
||||
EnchantPoint=0
|
Loading…
Reference in New Issue
Block a user