安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题








Thanks for the feedback! As for your suggestion, it's actually already implemented and automatically enabled when you disallow headcrabs from taking over players, so alyx and barney will not be able to be taken over if you yourself can't be taken over.
You can use the option mentioned above, OR, a more in depth option that requires some LUA coding knowledge, which lets you create any sort of blacklist you could ever want. This second option involves using this LUA hook:
headcrabtakeoverbeforecreatezombiehook - (target, damage)
Here's a quick guide:
-Go into the garry's mod addons folder
-Create a new folder in the addons folder with whatever name you want
-Create a folder called "autorun" inside of the newly created folder
-Create a folder called "server" inside of the "autorun" folder
-Create an empty lua file inside the "server" folder with whatever name you want (you can create a text file and change its extension to .lua to quickly create an empty lua file)
-Copy and paste this code inside of the lua file
if target:GetClass() == "npc_alyx" || target:GetClass() == "npc_barney" then return false end
end)
This is a simple example of a lua hook, but with enough knowledge, you can add any sort of condition you want.