Featured Replies
Сейчас на странице 0
- Нет пользователей, просматривающих эту страницу
A better way to browse. Learn more.
A full-screen app on your home screen with push notifications, badges and more.
Используя этот сайт, вы соглашаетесь Условия использования.
This Addon/Mod is just tweaking the following dvars:
It's not much, but it reduces my ping about 20ms.
I would recommend every serveradmin to use it, because people, that are playing on your server, will have a lower ping.
Source:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using InfinityScript; namespace PingFix { public class PingFix : BaseScript { public PingFix() : base() { PlayerConnected += new Action(entity => { entity.SpawnedPlayer += new Action(() => { entity.Call("setClientDvar", "cl_maxpackets", 100); entity.Call("setClientDvar", "cl_packetdup", 1); entity.Call("setClientDvar", "snaps", 30); entity.Call("setClientDvar", "rate", 25000); }); }); } } }Compiled:
[attachment=0]PingFix.rar[/attachment]