Steam installeren
inloggen
|
taal
简体中文 (Chinees, vereenvoudigd)
繁體中文 (Chinees, traditioneel)
日本語 (Japans)
한국어 (Koreaans)
ไทย (Thai)
Български (Bulgaars)
Čeština (Tsjechisch)
Dansk (Deens)
Deutsch (Duits)
English (Engels)
Español-España (Spaans - Spanje)
Español - Latinoamérica (Spaans - Latijns-Amerika)
Ελληνικά (Grieks)
Français (Frans)
Italiano (Italiaans)
Bahasa Indonesia (Indonesisch)
Magyar (Hongaars)
Norsk (Noors)
Polski (Pools)
Português (Portugees - Portugal)
Português - Brasil (Braziliaans-Portugees)
Română (Roemeens)
Русский (Russisch)
Suomi (Fins)
Svenska (Zweeds)
Türkçe (Turks)
Tiếng Việt (Vietnamees)
Українська (Oekraïens)
Een vertaalprobleem melden
yes, i have no creature mods and both spawn on Center on my server
Archelon, Xiphactinus, Deinosuchus and Cerato.
Yeah they've been adding in almost every 'additions' creature. We're about to get that big aggressive elephant too.
I'm a long time coder for unofficial, this is the code to disable some of the tames that used to be mods only (make sure to do a wild dino wipe):
PreventDinoTameClassNames="Ceratosaurus_Character_BP_ASA_C"
PreventDinoTameClassNames="DeinosuchusASA_Character_BP_C"
PreventDinoTameClassNames="Xiphactinus_Character_BP_ASA_C"
Only the creatures that were formally the mod additions use the 'ASA' in the code, usually it looks like:
PreventDinoTameClassNames="Ichthyornis_Character_BP_C"
PreventDinoTameClassNames="Pegomastax_Character_BP_C"
We always had seagulls and pegos disabled as they are just a nuisance to everyone.
It's not necessary but you can also disable the ability to tame existing ones, and also the ability to transfer with them if someone already tamed them. It is also possible to leave certain tames in the map, but disable the ability to tame them, leaving them as wild only:
PreventTransferForClassNames="Ceratosaurus_Character_BP_ASA_C"
PreventTransferForClassNames="DeinosuchusASA_Character_BP_C"
PreventTransferForClassNames="Xiphactinus_Character_BP_ASA_C"
PreventDinoTameClassNames="Ceratosaurus_Character_BP_ASA_C"
PreventDinoTameClassNames="DeinosuchusASA_Character_BP_C"
PreventDinoTameClassNames="Xiphactinus_Character_BP_ASA_C"
You can also kill any spawned on the map, tamed or non tamed (though it won't work for creatures in cryopods) with these examples:
cheat DestroyWildDinoClasses "Ceratosaurus_Character_BP_ASA_C" 1
cheat DestroyWildDinoClasses "DeinosuchusASA_Character_BP_C" 1
cheat DestroyWildDinoClasses "Xiphactinus_Character_BP_ASA_C" 1
For example, to delete all currently spawned former mod creatures.