반응형
좀보이드 테스트 플레이 진행중에 "서버에서 추방 되었습니다." 라는 멘트와 함께
플레이중인 유저가 서버에서 튕기는 현상이 생겼다.
로그 확인 결과 gameserver.kick> the player test was kicked. the reason was ui_policy_kick, type21
ui_policy_kick의 이유로 추방되었고, type은 21이라는 걸 확인가능했다.
# test라는 유저의 추방 로그
gameserver.kick> the player test was kicked. the reason was ui_policy_kick, type21
원인을 찾아보니 Servername.ini 파일안에 있는 안티치트 "true" 설정이 문제였다.
설정을 모두 "true" 에서 "false"로 변경해주고 서버를 reboot하면 해당 현상이 해결된다.
# Disables anti-cheat protection for type 1.
AntiCheatProtectionType1=true
# Disables anti-cheat protection for type 2.
AntiCheatProtectionType2=true
# Disables anti-cheat protection for type 3.
AntiCheatProtectionType3=true
# Disables anti-cheat protection for type 4.
AntiCheatProtectionType4=true
# Disables anti-cheat protection for type 5.
AntiCheatProtectionType5=true
# Disables anti-cheat protection for type 6.
AntiCheatProtectionType6=true
# Disables anti-cheat protection for type 7.
AntiCheatProtectionType7=true
# Disables anti-cheat protection for type 8.
AntiCheatProtectionType8=true
# Disables anti-cheat protection for type 9.
AntiCheatProtectionType9=true
# Disables anti-cheat protection for type 10.
AntiCheatProtectionType10=true
# Disables anti-cheat protection for type 11.
AntiCheatProtectionType11=true
# Disables anti-cheat protection for type 12.
AntiCheatProtectionType12=true
# Disables anti-cheat protection for type 13.
AntiCheatProtectionType13=true
# Disables anti-cheat protection for type 14.
AntiCheatProtectionType14=true
# Disables anti-cheat protection for type 15.
AntiCheatProtectionType15=true
# Disables anti-cheat protection for type 16.
AntiCheatProtectionType16=true
# Disables anti-cheat protection for type 17.
AntiCheatProtectionType17=true
# Disables anti-cheat protection for type 18.
AntiCheatProtectionType18=true
# Disables anti-cheat protection for type 19.
AntiCheatProtectionType19=true
# Disables anti-cheat protection for type 20.
AntiCheatProtectionType20=true
AntiCheatProtectionType21=true
AntiCheatProtectionType22=true
AntiCheatProtectionType23=true
AntiCheatProtectionType24=true
반응형
'취미' 카테고리의 다른 글
[OpenAI] ChatGPT API 공식 공개 및 간단한 사용 방법 (Postman 이용) (2) | 2023.03.02 |
---|---|
챗 GPT(Chat GPT) 가입 및 사용방법 (0) | 2023.02.09 |
[Linux/Zomboid] 도커를 활용하여 리눅스에 좀보이드 데디케이트 서버 세팅하기 (0) | 2023.01.17 |