adzvaughan Posted July 14, 2014 Report Share Posted July 14, 2014 Hi Guys, We are struggling with "Creating player to create now and again, its rare but when it happens only fix is a reboot of the server we are on. We have ridiculous bandwidth as shown below: We have 3 servers running, one is a public hive vanilla the other two are OverPoch servers getting 50 players each. MySQL ini is set to default. Here is my basic.cfg (after reading these forums): language="English"; MinBandwidth=20971520; MaxBandwidth=1073741824; MinErrorToSendNear=0.029999999; MaxCustomFileSize=0; MaxMsgSend=1024; adapter=-1; Resolution_Bpp=32; 3D_Performance=1; Windowed=0; MinErrorToSend=0.0019999994; MaxSizeNonguaranteed=64; Could anyone recomend any changes to try and resolve the issue? Any help appriciated. Thanks, Adam Link to comment Share on other sites More sharing options...
0 Defent Posted July 14, 2014 Report Share Posted July 14, 2014 We have that too. I think it's general across many 112555 servers. Link to comment Share on other sites More sharing options...
0 adzvaughan Posted July 14, 2014 Author Report Share Posted July 14, 2014 Personally I feel with my current setup its the basic.cfg and MySQL ini file Link to comment Share on other sites More sharing options...
0 Defent Posted July 14, 2014 Report Share Posted July 14, 2014 I used the same settings in 1.0.4.2 and 1.0.5.1. When I installed patch 112555 this started happening. It does not depend on those settings. I have experiemented around a lot and no sucess. Link to comment Share on other sites More sharing options...
0 Anarior Posted July 15, 2014 Report Share Posted July 15, 2014 We had the same issue constantly on 112555, had to database kill players so they could join again. As soon as we upgraded to the newer Steam patches the problem disappeared. Link to comment Share on other sites More sharing options...
0 Fully Posted July 16, 2014 Report Share Posted July 16, 2014 Do you mean this? That was constant for me on the same server. I could join other servers with no issues. When I could log in after 2 deaths This issue popup up again, login to a different server then log back in. I had retail Arma 2 and Steam version of Operation Arrowhead. I deleted everything related to Arma2 +DLCs. (I had a full Steam Arma 2 Package) I downloaded/reinstalled/Ran the games in this order Arma2, Arma2OA, BAF/PMC, Epoch 1.0.5.1, Overwatch. The Login-timeout went away (Waiting for character to create) This only started with the new 1.63 version. I have no idea what was causing it, I tried a lot of different stuff to fix it But the above was the only solution =) Link to comment Share on other sites More sharing options...
0 roose Posted November 28, 2014 Report Share Posted November 28, 2014 Currently having the same issue. This usually happens with us during the end of the restart around 30-21 minutes left.. Any fix? Link to comment Share on other sites More sharing options...
0 Gr8 Posted November 30, 2014 Report Share Posted November 30, 2014 Happens when we get 55+ people near 30 mins of restart every 2 hours. People start getting create vehicle restriction #0 And getting stuck Requesting Authentication and Retrying Authentication Link to comment Share on other sites More sharing options...
0 Sandbird Posted November 30, 2014 Report Share Posted November 30, 2014 same here Link to comment Share on other sites More sharing options...
0 cen Posted December 1, 2014 Report Share Posted December 1, 2014 We get the same on full servers. Link to comment Share on other sites More sharing options...
0 Gr8 Posted December 3, 2014 Report Share Posted December 3, 2014 I think it all comes down to the basic.cfg limiting the data transfer Link to comment Share on other sites More sharing options...
0 f3cuk Posted December 3, 2014 Report Share Posted December 3, 2014 Possibly, but i think a lot has to do with bad scripting. Start by fixing your private vars - Squint2 is your friend. Other things you can try Ask an admin that is on to use the cleanup function in your AH Finetune your basic.cfg Start debugging your server properly, use the client rpt to find and fix bugs in your mission file and use the server RPT to debug your server. If everyone could report like the latest 250 files in their client.rpt when they cannot get it, it would help pin down where this bug is coming from. Link to comment Share on other sites More sharing options...
0 Gr8 Posted December 3, 2014 Report Share Posted December 3, 2014 Maybe we can share each others Basic.cfg here is mine for 60 max players: MaxMsgSend=128; MinBandwidth=100428800; MaxBandwidth=104857600; MinErrorToSend=0.0049999999; MinErrorToSendNear=0.0099999998; MaxCustomFileSize=160000; adapter=-1; 3D_Performance=93750; Resolution_W=0; Resolution_H=0; Resolution_Bpp=32; Windowed=0; serverLongitude=-115; serverLatitude=36; serverLongitudeAuto=-115; serverLatitudeAuto=36; Link to comment Share on other sites More sharing options...
0 Sandbird Posted December 3, 2014 Report Share Posted December 3, 2014 I think i pinpointed the problem with mine...although if its not this.....i am remaking the server. IF you are getting (in the client log files not the server's) this error: Client: Object 650:99 (type Type_99) not found. Client: Object 650:99 (type Type_99) not found. Client: Object 650:99 (type Type_98) not found. Client: Object 650:99 (type Type_124) not found. then its that old getPos instead of getPosATL bug. When you use createvehicle and prior you are getting the player's position with "player getposATL" then you have to use getPos instead. I tweaked a few of my scripts and for a couple of days i didnt have a problem. The reason why this is happening with more people online...is because the chances that the script will get activated (that has this bug) has more chances to be 'fired' with more people online. Probably the server fps play a roll with it also. I wish that arma debug log was giving better explanations with errors. Link to comment Share on other sites More sharing options...
0 Gr8 Posted December 3, 2014 Report Share Posted December 3, 2014 Is it better to just use getPos or getPosATL? Link to comment Share on other sites More sharing options...
0 Sandbird Posted December 3, 2014 Report Share Posted December 3, 2014 Is it better to just use getPos or getPosATL? When you use createvehicle command and add a pos for the vehicle to spawn, then use getPos when you retrieve the position. Like for example: _pos = getpos player; _object = createVehicle [_classname, _pos, [], 0, "CAN_COLLIDE"]; I dont know exactly which script 'breaks' the server....could be any one really...so i'll start changing all my scripts that have createvehicle in them, and see how it goes. But i remember i had this long time ago on 1.0.3.1 epoch...and that solved the Waiting problem. It seems that the server doesnt know (or breaks) where to spawn a player that joins the server....so they are stuck there... Link to comment Share on other sites More sharing options...
0 Gr8 Posted December 4, 2014 Report Share Posted December 4, 2014 Thanks, did some search and replacing Link to comment Share on other sites More sharing options...
0 f3cuk Posted December 4, 2014 Report Share Posted December 4, 2014 Use FNC_GetPos. It auto detects if a object is above water and gets the position accordingly. Use like: _pos = [_object] call FNC_GetPos; then to use pos _object setPos _pos; Link to comment Share on other sites More sharing options...
0 Sandbird Posted December 4, 2014 Report Share Posted December 4, 2014 Use FNC_GetPos. It auto detects if a object is above water and gets the position accordingly. Use like: _pos = [_object] call FNC_GetPos; then to use pos _object setPos _pos; But that does _pos = getPosATL _obj; which brings us back to the problem :P Link to comment Share on other sites More sharing options...
0 f3cuk Posted December 5, 2014 Report Share Posted December 5, 2014 Yeah that wasn't the brightest of posts.. Over the past few days i have been working on reworking most of the dayz_server files for Epoch. Stuff like publishvehicle and the server_monitor needed some overdue maintenance. Just finished transforming all of the server and dayz_code files to use FNC_GetPos and use SetPosATL where needed. Things i have done so far Fix all the private vars A lot of files have missing ones by default and wrongly placed ones. This could cause for memory leaks. Reworked a lot of code to better handle database calls. Took out stuff like while{ try max 10 times } do { db call }. That is just asking for problems on a busy server. Optimized the global to local object stream Side project I have been working on. Basically turning a proof of concept to production. Lot of general code cleanup A lot of poor markup has been removed. Mainly to enhance readability but also to improve performance. Result is lower filesize and better code. -> FNC_GetPos Added this function everywhere applicable. Use it in combination with setPosATL and you are mostly gold. Been quite a rough ride cause i pushed a lot of experimental stuff on our live server, mainly because it's much faster to test code on a server with a lot of players. Just pushed the latest - pretty stable - code to our github for you to checkout SandBird. Hope it helps you sorting your issues, cheers. Sandbird 1 Link to comment Share on other sites More sharing options...
0 cen Posted December 5, 2014 Report Share Posted December 5, 2014 Yeah that wasn't the brightest of posts.. Over the past few days i have been working on reworking most of the dayz_server files for Epoch. Stuff like publishvehicle and the server_monitor needed some overdue maintenance. Just finished transforming all of the server and dayz_code files to use FNC_GetPos and use SetPosATL where needed. Things i have done so far Fix all the private vars A lot of files have missing ones by default and wrongly placed ones. This could cause for memory leaks. Reworked a lot of code to better handle database calls. Took out stuff like while{ try max 10 times } do { db call }. That is just asking for problems on a busy server. Optimized the global to local object stream Side project I have been working on. Basically turning a proof of concept to production. Lot of general code cleanup A lot of poor markup has been removed. Mainly to enhance readability but also to improve performance. Result is lower filesize and better code. -> FNC_GetPos Added this function everywhere applicable. Use it in combination with setPosATL and you are mostly gold. Been quite a rough ride cause i pushed a lot of experimental stuff on our live server, mainly because it's much faster to test code on a server with a lot of players. Just pushed the latest - pretty stable - code to our github for you to checkout SandBird. Hope it helps you sorting your issues, cheers. Any chance you're going to release all these fixes? Link to comment Share on other sites More sharing options...
0 f3cuk Posted December 5, 2014 Report Share Posted December 5, 2014 Hey Cen, Not likely no. I am however sharing them with the devs of A2 Epoch Evolved and hopeful they will find some use for it. Cheers, f3cuk Link to comment Share on other sites More sharing options...
0 cen Posted December 6, 2014 Report Share Posted December 6, 2014 Hey Cen, Not likely no. I am however sharing them with the devs of A2 Epoch Evolved and hopeful they will find some use for it. Cheers, f3cuk This makes me sad :( Link to comment Share on other sites More sharing options...
0 f3cuk Posted December 7, 2014 Report Share Posted December 7, 2014 This makes me sad :( What is your github username? I'll add you to the repo, cannot give any support though. Link to comment Share on other sites More sharing options...
0 cen Posted December 7, 2014 Report Share Posted December 7, 2014 What is your github username? I'll add you to the repo, cannot give any support though. CEN-ATD Link to comment Share on other sites More sharing options...
0 f3cuk Posted December 7, 2014 Report Share Posted December 7, 2014 - Link to comment Share on other sites More sharing options...
Question
adzvaughan
Hi Guys,
We are struggling with "Creating player to create now and again, its rare but when it happens only fix is a reboot of the server we are on.
We have ridiculous bandwidth as shown below:
We have 3 servers running, one is a public hive vanilla the other two are OverPoch servers getting 50 players each. MySQL ini is set to default.
Here is my basic.cfg (after reading these forums):
language="English";
MinBandwidth=20971520;
MaxBandwidth=1073741824;
MinErrorToSendNear=0.029999999;
MaxCustomFileSize=0;
MaxMsgSend=1024;
adapter=-1;
Resolution_Bpp=32;
3D_Performance=1;
Windowed=0;
MinErrorToSend=0.0019999994;
MaxSizeNonguaranteed=64;
Could anyone recomend any changes to try and resolve the issue?
Any help appriciated.
Thanks,
Adam
Link to comment
Share on other sites
28 answers to this question
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now