반응형
시작하며
서문
- 본 가이드는 YouTube 채널 “테크팀” 에서 제작 되었으며, 테크팀 채널의 영상내용에 최적화 되어있습니다.
- 본가이드의 오류발견시 아래 주소로 제보 부탁 드립니다.
- 공식 유튜브채널 [ https://www.youtube.com/@kortechtim ]
- 공식 디스코드 [ https://discord.gg/ZQ6DzC58rZ ]
방화벽 포트
- UDP 27015 : Game Query Port
- UDP 7777 : Game Client Port (Unreal Engine Port)
기타 정보
- 최대 멀티플레이 가능 인원 : [확인중]
- SteamApp ID : 1420710
- 지원 OS 플랫폼 : 윈도우, 리눅스
유용한 사이트
- Night of the dead, The Ultimate Guide : 링크이동
사전작업
방화벽 개방
- PowerShell : 관리자 권한으로 실행
New-NetFirewallRule -DisplayName "NightOfDead" -Direction Inbound -LocalPort 7777,27015 -Protocol UDP -Action Allow
포트포워딩 (아래 유튜버 영상참조)
- IPTime 공유기 포트포워딩 : 링크이동
- KT 공유기 포트포워딩 : 링크이동
- TP 링크 포트포워딩 : 링크이동
- Next(넥스트) 공유기 포트포워딩 : 링크이동
- SK 브로드밴드 공유기 포트포워딩 : 링크이동
게임 서버 설치
SteamCMD 설치
- 스팀 다운로드 : 사이트 이동
C:\에 게임서버 디렉토리르 생성하고, steamcmd.exe 파일을 옮긴다
게임엔진 설치
- "새 텍스트 문서.txt" 파일 생성
텍스트 파일을 생성
- 새 텍스트 문서.txt --> install.bat 파일로 변경
- Install.bat 파일 편집
- 설치 구문 삽입
steamcmd.exe +login anonymous +app_update 1420710 +quit
- 게임 설치
설치에 대략 3~4분 정도 소요됨
서버 환경 설정
ServerSettings.ini
- 파일 위치
{서버디렉토리}\steamapps\common\Night of the Dead Dedicated Server
- 옵션 설명
//- - - - - - - - - - - - - - - - - - - - - - - -
//- Night of the Dead
//- ServerSettings.ini
//- Default settings:
//- - - - - - - - - - - - - - - - - - - - - - - -
//- SERVER SETTINGS
[ServerSettings]
//- The name of your server as seen on the listing
ServerName=My Host Name
//- The password required to enter the server. Leave blank for no password
Password=
//- Limit the number of players in the game at one time
MaxPlayers=10
//- - - - - - - - - - - - - - - - - - - - - - - -
//- SYSTEM SETTINGS
[SystemSettings]
//- The name of the save game file
SaveName=worldsave
//- Password to the admin tools in-game. (Server Info button)
IngameAdminPassword=123
//- Auto-save feature. It's advised to leave this set to zero on a dedicated server
SaveIntervalHour=0
//- MOTD popup when you enter the game. Can also be left blank and set in-game instead
DefaultMessageOfTheDay=Welcome!
//- - - - - - - - - - - - - - - - - - - - - - - -
//- GAME SETTINGS
[GameSettings]
//- The game difficulty. Must be set to Custom in order to change a lot of settings below.
//- Peaceful / Easy / Normal / Hard / Survival / Challenge / Legend / Custom
Difficulty=Normal
//- - - - - - - - - - - - - - - - - - - - - - - -
//- GAME SETTINGS / GENERAL
[GameSettings/General]
//- These settings are binary. 0 for off and 1 for on:
//- The game mode: PvE or PvP. 0=PvP, 1=PvE
MODSelect=1
//- 1 will disable the waves. 0 to turn them back on. This applies to day waves as well
NoWave=0
//- Activate Building Forbidden Area. Prevents people from building near important sites.
NoSpawnBuildingBlocker=0
//- 1 stops zombies from respawning. 0 to respawn them
NoZombieRespawn=0
//- Should trees, rocks, mushrooms respawn? 1 to respawn
NaturalObjectRespawn=1
//- Should cars, loot boxes, etc. respawn? 1 to respawn
SyntheticObjectRespawn=1
//- Generators don't break when set to 1
NoGeneratorTrouble=1
//- No Research Lost Upon Dying when set to 1
NoDeathResearchDrop=1
//- Drop what you're carrying when you exit when you set this to 1
DropItemsOnExit=0
//- Can't injure a team mate
NoTeamKill=1
//- Disables the ending so that people can't do the escape quest using this game
NoEnding=1
//- Building decays after 5 days of inactivity
UsePlayerBuildingCorrode=0
//- Limits number of zombies that a wave will produce at one time.
//- valid values: 50 / 100 / 200 / 400 / 800 / 2000. default = 200
Limit Wave Zombie Amount=200
//- - - - - - - - - - - - - - - - - - - - - - - -
//- GAME SETTINGS / BASIC
[GameSettings/Basic]
//- * THE SETTINGS BELOW ONLY WORK WHEN DIFFICULTY IS SET TO CUSTOM *
//- These settings are in a range from 0 - 100:
//- Light Zombie HP
NormalZombieHealth=17
//- Heavy Zombie HP
SpecialZombieHealth=17
//- Giant Zombie HP
GiantZombieHealth=17
//- Zombie Damage
ZombieDamage=18
//- Zombie Movement Speed
ZombieMovementSpeed=35
//- World Zombie Spawn Amount
WorldZombieSpawn=17
//- Wave Zombie HP
WaveZombieHealth=25
//- Light Zombie Amount
WaveNormalZombieAmount=44
//- Heavy Zombie Amount
WaveSpecialZombieAmount=17
//- Giant Zombie Amount
WaveGiantZombieAmount=21
//- Animal HP
AnimalHealth=17
//- Animal Attack Damage
AnimalDamage=18
//- These settings are in minutes (times per day). 60 = 1 hour:
//- Light Zombie Respawn Time; valid settings: 30 / 60 / 120 / 180 / 240
WorldNormalZombieRespawnTime=120
//- Heavy Zombie Respawn Time; valid settings: 120 / 300 / 600 / 900 / 1200
WorldSpecialZombieRespawnTime=600
//- Giant Zombie Respawn Time; valid settings: 120 / 300 / 600 / 900 / 1200
WorldGiantZombieRespawnTime=600
//- - - - - - - - - - - - - - - - - - - - - - - -
//- GAME SETTINGS / ADVANCED
[GameSettings/Advanced]
//- * THE SETTINGS BELOW ONLY WORK WHEN DIFFICULTY IS SET TO CUSTOM *
//- No EXP Lost Upon Dying ; 0 = disable, 1 = enable
NoExperienceLoss=0
//- No Items Drop Upon Dying ; 0 = disable, 1 = enable
NoDeathItemDrop=0
//- Dont drop what you have equipped when you die ; 0 = disable, 1 = enable
NoDeathEquipmentItemDrop=1
//- Research Data Consumption ; value = 0 - 100
ResearchDataConsumption=50
//- Fish Speed ; value = 0 - 100
FishSpeed=66
//- Building HP ; value = 0 - 100
BuildingHit=90
//- Trap Attack Damage ; value = 0 - 100
TrapDamage=66
//- Materials Return Rate After Building Destruction ; value = 0 - 100
ResourcesReturnedAfterBuildingDestroyed=30
//- Fish Power ; value = 0 - 100
FishingGaugeDecrease=40
//- High-Grade Equipment Drop Rate ; value = 0 - 100
SuperiorOrHigherEquipmentGainMultiplier=40
//- Gain EXP Amount; 1 / 2 / 3 / 4 / 5
AmountOfExperienceGained=1
//- Item Obtained Amount; 1 / 2 / 3
ResourceAcquisition=1
//- Initial Food Amount; 0 / 1 / 2 / 5 / 10 / 12 / 15
InitialFoodAmount=5
//- Natural Objects Respawn Time; 240 / 360 / 480 / 720 / 840 / 960
NaturalObjectRespawnTime=480
//- Synthetic Objects Respawn Time; 240 / 360 / 480 / 720 / 840 / 960
SyntheticObjectRespawnTime=480
//- Farm Resource Production Amount; 1 / 1.25 / 1.5 / 1.75 / 2
FarmResourceOutput=1
//- Machine Resource Production Amount; 0.5 / 1 / 1.5 / 2
MachineResourceOutput=1
//- Animal Trap Time; 0.5 / 1 / 1.5 / 2 / 2.5
AnimalTrapTime=1
//- Farm Resource Production Time; 0.5 / 1 / 1.5
FarmResourceProductionTime=1
//- Machine Resource Production Time; 0.5 / 1 / 1.5
MachineResourceProductionTime=1
//- Power Generated; 0.5 / 1 / 1.5 / 2 / 2.5
ElectricGeneration=1
//- Power Consumption; 0.5 / 1 / 1.5
ElectricConsumption=1
//- Power Limit; 0.5 / 1 / 1.5 / 2 / 2.5
ElectricOvercurrentLimit=1
//- Standby Power; 0.5 / 1 / 1.5
ElectricStandbyPower=1
//- - - - - - - - - - - - - - - - - - - - - - - -
//- GAME SETTINGS / DETAILS
[GameSettings/Detail]
//- * THE SETTINGS BELOW ONLY WORK WHEN DIFFICULTY IS SET TO CUSTOM *
//- In minutes, how long do you want 1 game day to be? ; 60 / 120 / 180 / 240 / 300 / 360 / 420
OneDayTime=120
//- unlocks all building modules in this game without having to do quests, for all players
UnlockAllBuilding=0
//- Death is permanent if you set this to 1
Hardcore=0
서버 구동
- 서버 실행 파일 위치
{사설서버구축위치}\steamapps\common\Night of the Dead Dedicated Server
반응형
'게임 서버구축 메뉴얼 > 기타게임' 카테고리의 다른 글
AbioticFactor, 서버구축 자주하는 질문 & 답변 모음 (0) | 2024.05.10 |
---|---|
에이바이오틱팩터 서버 구축하기 : GCP (0) | 2024.05.10 |
에이바이오틱팩터 서버 구축하기 : 윈도우 (0) | 2024.05.09 |
테라테크월드, 서버구축 자주하는 질문 & 답변 모음 (0) | 2024.03.30 |
[윈도우] 테라테크월드 서버 구축하기 (1) | 2024.03.23 |