Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Server/mods/deathmatch/editor.conf
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@
<ped_far_sync_interval>2000</ped_far_sync_interval>
<!-- Unoccupied_vehicle sync interval. Default: 400 -->
<unoccupied_vehicle_sync_interval>400</unoccupied_vehicle_sync_interval>
<!-- Object sync interval. Default: 500 -->
<object_sync_interval>500</object_sync_interval>
<!-- Keysync mouse rotation sync interval. For limiting key sync packets due to mouse movement. Default: 100 -->
<keysync_mouse_sync_interval>100</keysync_mouse_sync_interval>
<!-- Keysync analog movement sync interval. For limiting key sync packets due to joystick movement. Default: 100 -->
Expand Down
2 changes: 2 additions & 0 deletions Server/mods/deathmatch/local.conf
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@
<ped_far_sync_interval>2000</ped_far_sync_interval>
<!-- Unoccupied_vehicle sync interval. Default: 400 -->
<unoccupied_vehicle_sync_interval>400</unoccupied_vehicle_sync_interval>
<!-- Object sync interval. Default: 500 -->
<object_sync_interval>500</object_sync_interval>
<!-- Keysync mouse rotation sync interval. For limiting key sync packets due to mouse movement. Default: 100 -->
<keysync_mouse_sync_interval>100</keysync_mouse_sync_interval>
<!-- Keysync analog movement sync interval. For limiting key sync packets due to joystick movement. Default: 100 -->
Expand Down
1 change: 1 addition & 0 deletions Server/mods/deathmatch/logic/CMainConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1449,6 +1449,7 @@ const std::vector<SIntSetting>& CMainConfig::GetIntSettingList()
{true, true, 50, 400, 4000, "ped_sync_interval", &g_TickRateSettings.iPedSync, &CMainConfig::OnTickRateChange},
{true, true, 50, 2000, 4000, "ped_far_sync_interval", &g_TickRateSettings.iPedFarSync, NULL},
{true, true, 50, 400, 4000, "unoccupied_vehicle_sync_interval", &g_TickRateSettings.iUnoccupiedVehicle, &CMainConfig::OnTickRateChange},
{true, true, 50, 500, 4000, "object_sync_interval", &g_TickRateSettings.iObjectSync, &CMainConfig::OnTickRateChange},
{true, true, 50, 100, 4000, "keysync_mouse_sync_interval", &g_TickRateSettings.iKeySyncRotation, &CMainConfig::OnTickRateChange},
{true, true, 50, 100, 4000, "keysync_analog_sync_interval", &g_TickRateSettings.iKeySyncAnalogMove, &CMainConfig::OnTickRateChange},
{true, true, 50, 100, 4000, "donkey_work_interval", &g_TickRateSettings.iNearListUpdate, &CMainConfig::OnTickRateChange},
Expand Down
2 changes: 2 additions & 0 deletions Server/mods/deathmatch/mtaserver.conf
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@
<ped_far_sync_interval>2000</ped_far_sync_interval>
<!-- Unoccupied_vehicle sync interval. Default: 400 -->
<unoccupied_vehicle_sync_interval>400</unoccupied_vehicle_sync_interval>
<!-- Object sync interval. Default: 500 -->
<object_sync_interval>500</object_sync_interval>
<!-- Keysync mouse rotation sync interval. For limiting key sync packets due to mouse movement. Default: 100 -->
<keysync_mouse_sync_interval>100</keysync_mouse_sync_interval>
<!-- Keysync analog movement sync interval. For limiting key sync packets due to joystick movement. Default: 100 -->
Expand Down
2 changes: 2 additions & 0 deletions Server/mods/deathmatch/mtaserver.conf.template
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@
<ped_far_sync_interval>2000</ped_far_sync_interval>
<!-- Unoccupied_vehicle sync interval. Default: 400 -->
<unoccupied_vehicle_sync_interval>400</unoccupied_vehicle_sync_interval>
<!-- Object sync interval. Default: 500 -->
<object_sync_interval>500</object_sync_interval>
<!-- Keysync mouse rotation sync interval. For limiting key sync packets due to mouse movement. Default: 100 -->
<keysync_mouse_sync_interval>100</keysync_mouse_sync_interval>
<!-- Keysync analog movement sync interval. For limiting key sync packets due to joystick movement. Default: 100 -->
Expand Down
Loading