basic.cfg for Reality server

Bibikey

New Member
Hi all. I have a server with three core 4 GHz processor, 4GB of RAM and 100Mb internet. I have installed Reality 1.7.5.1 server. What configuration server (basic.cfg) should I use for online 30+ people?
P.S. Sorry for my bad English.
 
I mean no harm by this, but did you even read that guide completely?
You cant just blatantly copy/paste other server's values, you need to calculate your own..
 
But these settings:
Code:
MaxMsgSend=92;
MaxSizeGuranteed=128;
MaxSizeNonguaranteed=64;
MinErrorToSendNear=0.029999997;
MinErrorToSend=0.0019999994;
is not suitable for my server. If I use these settings, players have very high ping. For example, I have a standard ping ~ 50, but with these settings, I have 200+ ping.
Change the settings MinBandwidth and MaxBandwidth do not correct the situation.
Now I have these settings:
Code:
MinBandwidth=10000000;
MaxBandwidth=40000000;
MaxMsgSend=192;
MaxSizeNonguaranteed=256;
MinErrorToSendNear=0.029999999;
MinErrorToSend=0.003;
MaxCustomFileSize=150000;
Windowed=0;
adapter=-1;
3D_Performance=1;
Resolution_Bpp=32;
class sockets
{
    maxPacketSize=1400;
};
But when a player is more than 25, ping starts to grow. And when online - 30, I have ping 80-130.
 
First, this issue is not specific to reality or dayz, this is a general ARMA server configuration issue.

Second, Each and every server has to be configured individually, you need to take into account your hardware and your connection speed. No one on here can give you a cut and paste solution that will magically fix your server.

did you even bother to go to that link that was posted above?

I'm going to assume you did and configured your server based on that information, in that case i would guess that your server is on a 5Mbit connection, Which if it is the case then lagging after 25 people join would make sense.

If its not the case and you have more bandwidth you need to go back and do some math, maybe your missing a 0 from "MaxBandwidth=40000000;"

Find out what you have/need here:
https://www.google.com/#hl=en&safe=off&tbo=d&output=search&sclient=psy-ab&q=bits+to+bytes
 
Thanks, I'll try to change MaxBandwidth to 100000000, because my server has a 100Mbit connection. Can you tell me your hardware configuration and basic.cfg? The configuration of my server is in the first post.
 
Now I use these settings
MinBandwidth=204800000;
MaxBandwidth=1600000000;
MaxMsgSend=128;
MaxSizeGuranteed=256;
MaxSizeNonguaranteed=128;
MinErrorToSendNear=0.029999999;
MinErrorToSend=0.003;
MaxCustomFileSize=150000;
Windowed=0;
adapter=-1;
3D_Performance=1;
Resolution_Bpp=32;
class sockets
{
maxPacketSize=1400;
};
serverLongitude=25;
serverLatitude=57;
serverLongitudeAuto=25;
serverLatitudeAuto=57;

And I have lags (players and vehicles teleportations) on my server. If you sit behind the passenger seat of the car, the car passes through the building. What is wrong with my settings?
 
So you have a minimum of 204 Mbps and a max of 1600? I would love to have your speeds. I suggest you scale that back to something reasonable and use a bandwidth calculator. While that setting is not the end all be all, it definitely has an effect.


Desync might happen if used MaxSizeGuaranteed/MaxSizeNonguaranteed values over the maxPacketSize.
maxPacketSize default reduced from 1490 to 1400, thus MaxSize... values over 1300 could be affected negatively.

(((Server FPS * Number of Players)* MaxMsgSend) * MaxSizeGuranteed ) = 81920000 bps assuming 50 players and 50 FPS which most servers wont get. In addition if your MaxMsgSend and MaxSizeGuranteed is > then maxPacketSize then you will have a potential issue.
 
just wanting to compare with other admins

I have a 100/100Mbps line with 50 player slots.

Here is my basic.cfg

MinBandwidth=25000000;
MaxBandwidth=100000000;
MaxMsgSend=128;
MaxSizeGuaranteed=512;
MaxSizeNonguaranteed=192;
MinErrorToSendNear=0.029999999;
MinErrorToSend=0.0099999998;
MaxCustomFileSize=0;
Windowed=0;
adapter=-1;
3D_Performance=1;
Resolution_Bpp=32;
class sockets
{
maxPacketSize=1400;
};
serverLongitude=-114;
serverLatitude=37;
serverLongitudeAuto=-114;
serverLatitudeAuto=37;
 
Back
Top