| | 382 | | | | | 383 | | signal_add("server lag disconnect", (SIGNAL_FUNC) sig_server_lag_disconnected);
| | | 384 | | signal_add("server reconnect remove", (SIGNAL_FUNC) sig_server_reconnect_removed);
| | | 385 | | signal_add("server reconnect not found", (SIGNAL_FUNC) sig_server_reconnect_not_found);
| | | 386 | | | | | 387 | | signal_add("chat protocol unknown", (SIGNAL_FUNC) sig_chat_protocol_unknown);
| | | 388 | | } | | | 389 | | | | | 390 | | void fe_server_deinit(void) | | | 391 | | { | | Wrong Number of Parameters | 392 | | command_unbind("server", (SIGNAL_FUNC) cmd_server);
| | | 393 | | command_unbind("server connect", (SIGNAL_FUNC) cmd_server_connect);
| | | 394 | | command_unbind("server add", (SIGNAL_FUNC) cmd_server_add);
| | | 395 | | command_unbind("server remove", (SIGNAL_FUNC) cmd_server_remove);
| | | 396 | | command_unbind("server", (SIGNAL_FUNC) server_command);
| | | 397 | | command_unbind("disconnect", (SIGNAL_FUNC) server_command);
| | | 398 | | | | | 399 | | signal_remove("server looking", (SIGNAL_FUNC) sig_server_looking);
| | | 400 | | signal_remove("server connecting", (SIGNAL_FUNC) sig_server_connecting);
| | | 401 | | signal_remove("server connected", (SIGNAL_FUNC) sig_server_connected);
| | | 402 | | signal_remove("server connect failed", (SIGNAL_FUNC) sig_connect_failed);
|
|