Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
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.