Всем привет.
Многие наверно знают мод LVRP, он же RoleGame (все в ЛВ).
Проблема с ботами. Они не подключаются к серверу. То ли самповская защита им не дает, то ли в моде защита, НО, примерно полгода назад, я запускал этот мод и все работало. Мне тогда помог таймер, чтобы боты коннектились не одновременно, а раз в секунду например.
Если поможете, то буду очень благодарен!
Сейчас есть таймер, но что-то не помогает. В консоли вот что:
[20:07:08] Incoming connection: 188.120.253.237:32888
[20:07:08] Incoming connection: 188.120.253.237:52688
[20:07:08] Incoming connection: 188.120.253.237:34455
[20:07:08] Incoming connection: 188.120.253.237:49013
[20:07:08] Incoming connection: 188.120.253.237:36725
[20:07:08] Incoming connection: 188.120.253.237:34161
[20:07:08] Incoming connection: 188.120.253.237:57467
[20:07:08] Incoming connection: 188.120.253.237:40083
[20:07:08] Incoming connection: 188.120.253.237:37094
[20:07:08] Incoming connection: 188.120.253.237:57002
[20:07:08] Incoming connection: 188.120.253.237:44579
Вот таймер:
Код:forward ConnectNPCtime();Код:OnGameModeInit: SetTimer("ConnectNPCtime",2000,1);Код:public ConnectNPCtime() { static count; count++; if(count == 1) { ConnectNPC("dealer","dealer2"); } else if(count == 2) { ConnectNPC("cop","dealer2"); } else if(count == 3) { ConnectNPC("Molly_Nilson","dealer2"); } else if(count == 4) { ConnectNPC("old_harry","dealer2"); } else if(count == 5) { ConnectNPC("bank1","dealer2"); } else if(count == 6) { ConnectNPC("bank2","dealer2"); } else if(count == 7) { ConnectNPC("radiog1","dealer2"); } else if(count == 8) { ConnectNPC("radiog2","dealer2"); } else if(count == 9) { ConnectNPC("photo","photo"); } else if(count == 10) { ConnectNPC("pilot","pilot"); } else if(count == 11) { ConnectNPC("jetpilot","jetpilot"); } else if(count == 12) { ConnectNPC("airportstaff","dealer2"); } else if(count == 13) { ConnectNPC("airportstaffsf","dealer2"); } else if(count == 14) { ConnectNPC("airportcopLV","airportcopLV"); } else if(count == 15) { ConnectNPC("airportcopSF","airportcopSF"); } else if(count == 16) { ConnectNPC("lvpcop1","dealer2"); } else if(count == 17) { ConnectNPC("lvpcop2","dealer2"); } else if(count == 18) { ConnectNPC("sfpcop1","dealer2"); } else if(count == 19) { ConnectNPC("tramdriver","tramdriver"); } else if(count == 20) { ConnectNPC("sfcityhall","dealer2"); } else if(count == 21) { ConnectNPC("lvdialog","dealer2"); } else if(count == 22) { ConnectNPC("barmen","dealer2"); } }



