High CPU usage after april update..Solved
phatblinkie

there is an oxide fix above your post, its a facepunch issue, not oxide or other issue, we all know they (facepunch) dont tell us much. I just want to know, who the hell they had this this thing, that could not see that performance issue. moving to carbon will not change that

Do i copy paste that fix above some where, or is it a download, and where do i download it!!

i cant actually attach a file here, just make a file called PingEstimatorFix.cs
paste the contents into it, and put it in your oxide/plugins/ folder
then on console run o.load PingEstimatorFix
all done

Zulg I'm on Carbon, makes no difference for what it's worth. The issue is in the core rustserver. I'm sure FP will patch it tomorrow because everyone is complaining about it.

htmlSh3wbejUsbb.png JimDeadlock

Zulg I'm on Carbon, makes no difference for what it's worth. The issue is in the core rustserver. I'm sure FP will patch it tomorrow because everyone is complaining about it.

you can try this, it was in the carbon discord
make file named NoPingEstimation.cs

paste this into it

using System;
using System.Threading.Tasks;
using HarmonyLib;
using Facepunch.Ping;

namespace Carbon.Plugins;

// Reference: Facepunch.Ping

[Info("NoPingEstimation", "Rdeathul", "1.0.0")]
public class NoPingEstimation : CarbonPlugin
{
	public override bool AutoPatch => true;

	[HarmonyPatch(typeof(PingEstimater), "UpdateClosestRegion")]
	public class PingEstimater_UpdateClosestRegion
	{
		public static bool Prefix(ref Task __result)
		{
			__result = Task.CompletedTask;
			return false;
		}
	}
}

do whatever carbon needs to load it, i assume a load command. i dont use carbon

I got the correct cs plugin now the server works great, thanks everyone!

Increase refresh interval from 5m -> 45m
Add `ping_refresh_interval` to modify how often ping refreshes
Set to 0 to never run ping estimation
Return ping results after each iteration rather than waiting for all 5 iterations to finish before returning any results
where can I get this CS file??
 
friesi
where can I get this CS file??I got it from the Umod Discord , by clicking on discord at the top of this page!
 

I got it from the Umod Discord, by clicking discord on the top of this page!!!

Locked automatically