smokified
Member-
Content Count
3 -
Joined
-
Last visited
-
Medals
Community Reputation
0 NeutralAbout smokified
-
Rank
Rookie
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
I am using a .PBO file that was acquired from playing on a server with that mission/map. I also updates some of the files in the PBO based on the current public release from the developer: ofps-public / ofps-mode · GitLab The readme says: I updated the mode folder as described. Where do I update the map parameters as described? It looks like the mode variable is already in the .sqf mentioned. Where do I set the "mode param to default"? Also, in my logs when attempting to launch the .PBO that was downloaded from the server, it looks like I am missing files: Also later in the logs it looks like I am missing: The mission appears to initialize, I can join the server, and have the team/role selection options, but after that, I just join as a bird that can't move. What do I need to do to get the missing files found/created/loaded? The code in the init.sqf file has reference to some of the files: //--- Server JIP/DC Handler if (isMultiplayer && CTI_IsServer) then { CTI_SE_FNC_OnPlayerConnected = compileFinal preprocessFileLineNumbers (CTI_Server_path + "Functions\Server_OnPlayerConnected.sqf"); CTI_SE_FNC_OnPlayerDisconnected = compileFinal preprocessFileLineNumbers (CTI_Server_path + "Functions\Server_OnPlayerDisconnected.sqf"); addMissionEventHandler ["PlayerConnected", { params ["_id", "_uid", "_name", "_jip", "_owner", "_idstr"]; [_uid, _name, _jip] call CTI_SE_FNC_OnPlayerConnected; }]; addMissionEventHandler ["PlayerDisconnected", { params ["_id", "_uid", "_name", "_jip", "_owner", "_idstr"]; [_id, _uid, _name] call CTI_SE_FNC_OnPlayerDisconnected; }]; };
-
You cannot play/edit this mission
smokified replied to smokified's topic in ARMA 3 - SERVERS & ADMINISTRATION
OFPS BECTI (Altis map for testing) I have their most recent public code release from here: Files · 32a43bb01e6bc9a42de6765f546eb64dcf47c63e · ofps-public / ofps-mode · GitLab along with the workshop mods required to run the mission and map. There are a lot of files in the code release that don't seem to be on my server, but I am not sure where I need to put them. I see messages in the log showing the .sqf files processing, but it looks like some are missing: 14:34:30 "[CTI (INFORMATION)] [frameno:14410 | ticktime:49.386 | fps:0.858415] [FILE: Common\Init\Init_Parameters.sqf] Defining parameter [SEPARATOR11] with value [1]" 14:34:30 "[CTI (INFORMATION)] [frameno:14410 | ticktime:49.386 | fps:0.858415] [FILE: Common\Init\Init_Parameters.sqf] Defining parameter [CTI_SERVER_RESTART] with value [1]" 14:34:30 "[CTI (INFORMATION)] [frameno:14410 | ticktime:49.386 | fps:0.858415] [FILE: Common\Init\Init_Parameters.sqf] Defining parameter [SEPARATOR14] with value [1]" 14:34:30 "[CTI (INFORMATION)] [frameno:14410 | ticktime:49.386 | fps:0.858415] [FILE: Common\Init\Init_Parameters.sqf] Defining parameter [CTI_DEV_MODE] with value [0]" 14:34:30 Warning Message: Script Server\Functions\Server_OnPlayerConnected.sqf not found 14:34:30 Warning Message: Script Server\Functions\Server_OnPlayerDisconnected.sqf not found When I search my sever files, I can't find the directory noted in the log information, even for the ones that are loading properly. Where should these files be located? The Readme says: Add Mode folder into Common/Config/modename/ Update Parameters for all maps to support new modename - very first param Add mode directory variable (CTI_MODE_DIR) to Common/Init/Init_CommonConstants.sqf at bottom - append to existing Directory in constants must match mode config folder exact Set your mode param to default and you are good to go! COMPOSITIONS - if you are adding compostions, you must manually add file links to description.ext file Where is this "Common" folder supposed to be located? -
I am getting the error: Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.\na3_characters_f I realize it appears something is missing, but I am not able to find what mod or location is being referenced. Does anyone know what na3_characters_f is part of, or where it should be in the server files?