Due to human (non-bot) spam the first contribution of a user has to be reviewed and activated manually, all further contributions do not require this.
As long as a user does not have at least one reviewed and activated contribution, the user is unable to edit his profile, set a avatar, title picture or a signature.
-
I think i can help with that.. I might be totally wrong here but it seems like that VehicleUtilities.cs controls those things.
Try this:
(Make a backup on the file before editing and saving so you can revert and go back)
In your server folder go to -> Mods -> Objects and open/edit file "VehicleUtilities.cs"
In that file you have these rows:
// Excavator
var excavatorMap = new StackLimitTypeRestriction(true, 30);
excavatorMap.AddListRestriction(blockItems.GetItemsByBlockAttribute<Diggable>(), 20);
excavatorMap.AddListRestriction(blockItems.GetItemsByBlockAttribute<Minable>(), 80);
AdvancedVehicleStackSizeMap.Add(typeof(ExcavatorObject), excavatorMap);
// Skidsteer (same as excavator currently)
AdvancedVehicleStackSizeMap.Add(typeof(SkidSteerObject), excavatorMap);
Display More
The Skidsteer is using the same map as the excavator so you need to change the 3 numbers in the excavatorMap variable.
Let me know how it went
-
NemoMrMagic added a new file:
File
Small plugin that makes the animal run from you instead of attacking you!
NemoMrMagic
October 1, 2020 at 10:09 PM
Quote
Hello folks!
A small plugin that changes some variables in the predator animals so they run instead of attacking you. Like they did in v8.
The predators are: Jaguar, Aligator, Wolf, Coyote.
They still attack other animals and kill them, but if you enter thier preception they will run.
They can still attack you if you chase them and stand really really close to them!
To add the plugin on your server:
Unzip the zip file and out the AnimalControl folder into your server Mods folder.
This is my first plugin and i'm planning on expanding it with a config file and more features.
Hope you like it!
I'm available on discord in Eco Official and Eco Modding as @Nemo - Mr Magic.
Display More