Our forum is going offline at the end of July. We suggest moving all discussions to Discord. Exile will stay on Steam. Thanks for a great time!
Jump to content
Question
1 answer to this question
Create an account or sign in to comment
You need to be a member in order to leave a comment
Sign in
Already have an account? Sign in here.
Sign In Now
Hello,
So, here's my problem, installed server, first join is ok, but after relog and second join is: Waiting for server to load.
And this is this file .sqf
/** * ExileServer_system_database_query_selectSingleField * * Exile Mod * exile.majormittens.co.uk * © 2015 Exile Mod Team * * This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. * To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/. */ private["_parameters", "_query", "_result"]; _parameters = _this; _query = [0, ExileServerDatabaseSessionId, _parameters] joinString ":"; _result = call compile ("extDB2" callExtension _query); switch (_result select 0) do { case 0: { (format["Database Error: %1", (_result select 1)]) call ExileServer_util_log; }; case 2: { _result = (_result select 1) call ExileServer_system_database_handleBig; }; }; ((_result select 1) select 0) select 0
line 27 is this -----> ((_result select 1) select 0) select 0
Share this post
Link to post
Share on other sites