Jump to content

Search the Community

Showing results for tags 'dedicated'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • BOHEMIA INTERACTIVE
    • BOHEMIA INTERACTIVE - NEWS
    • BOHEMIA INTERACTIVE - JOBS
    • BOHEMIA INTERACTIVE - GENERAL
  • FEATURED GAMES
    • Arma Reforger
    • Vigor
    • DAYZ
    • ARMA 3
    • ARMA 2
    • YLANDS
  • MOBILE GAMES
    • ARMA MOBILE OPS
    • MINIDAYZ
    • ARMA TACTICS
    • ARMA 2 FIRING RANGE
  • BI MILITARY GAMES FORUMS
  • BOHEMIA INCUBATOR
    • PROJECT LUCIE
  • OTHER BOHEMIA GAMES
    • ARGO
    • TAKE ON MARS
    • TAKE ON HELICOPTERS
    • CARRIER COMMAND: GAEA MISSION
    • ARMA: ARMED ASSAULT / COMBAT OPERATIONS
    • ARMA: COLD WAR ASSAULT / OPERATION FLASHPOINT
    • IRON FRONT: LIBERATION 1944
    • BACK CATALOGUE
  • OFFTOPIC
    • OFFTOPIC
  • Die Hard OFP Lovers' Club's Topics
  • ArmA Toolmakers's Releases
  • ArmA Toolmakers's General
  • Japan in Arma's Topics
  • Arma 3 Photography Club's Discussions
  • The Order Of the Wolfs- Unit's Topics
  • 4th Infantry Brigade's Recruitment
  • 11th Marine Expeditionary Unit OFFICIAL | 11th MEU(SOC)'s 11th MEU(SOC) Recruitment Status - OPEN
  • Legion latina semper fi's New Server Legion latina next wick
  • Legion latina semper fi's https://www.facebook.com/groups/legionlatinasemperfidelis/
  • Legion latina semper fi's Server VPN LEGION LATINA SEMPER FI
  • Team Nederland's Welkom bij ons club
  • Team Nederland's Facebook
  • [H.S.O.] Hellenic Special Operations's Infos
  • BI Forum Ravage Club's Forum Topics
  • Exilemod (Unofficial)'s General Discussion
  • Exilemod (Unofficial)'s Scripts
  • Exilemod (Unofficial)'s Addons
  • Exilemod (Unofficial)'s Problems & Bugs
  • Exilemod (Unofficial)'s Exilemod Tweaks
  • Exilemod (Unofficial)'s Promotion
  • Exilemod (Unofficial)'s Maps - Mission Files
  • TKO's Weferlingen
  • TKO's Green Sea
  • TKO's Rules
  • TKO's Changelog
  • TKO's Help
  • TKO's What we Need
  • TKO's Cam Lao Nam
  • MSOF A3 Wasteland's Server Game Play Features
  • MSOF A3 Wasteland's Problems & Bugs
  • MSOF A3 Wasteland's Maps in Rotation
  • SOS GAMING's Server
  • SOS GAMING's News on Server
  • SOS GAMING's Regeln / Rules
  • SOS GAMING's Ghost-Town-Team
  • SOS GAMING's Steuerung / Keys
  • SOS GAMING's Div. Infos
  • SOS GAMING's Small Talk
  • NAMC's Topics
  • NTC's New Members
  • NTC's Enlisted Members
  • The STATE's Topics
  • CREATEANDGENERATION's Intoduction
  • CREATEANDGENERATION's HAVEN EMPIRE (NEW CREATORS COMMUNITY)
  • HavenEmpire Gaming community's HavenEmpire Gaming community
  • Polska_Rodzina's Polska_Rodzina-ARGO
  • Carrier command tips and tricks's Tips and tricks
  • Carrier command tips and tricks's Talk about carrier command
  • ItzChaos's Community's Socials
  • Photography club of Arma 3's Epic photos
  • Photography club of Arma 3's Team pics
  • Photography club of Arma 3's Vehicle pics
  • Photography club of Arma 3's Other
  • Spartan Gamers DayZ's Baneados del Servidor
  • Warriors Waging War's Vigor
  • Tales of the Republic's Republic News
  • Operazioni Arma Italia's CHI SIAMO
  • [GER] HUSKY-GAMING.CC / Roleplay at its best!'s Starte deine Reise noch heute!
  • empire brotherhood occult +2349082603448's empire money +2349082603448
  • NET88's Twitter
  • DayZ Italia's Lista Server
  • DayZ Italia's Forum Generale

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Yahoo


Jabber (xmpp)


Skype


Biography


Twitter


Google+


Youtube


Vimeo


Xfire


Steam url id


Raptr


MySpace


Linkedin


Tumblr


Flickr


XBOX Live


PlayStation PSN


Origin


PlayFire


SoundCloud


Pinterest


Reddit


Twitch.Tv


Ustream.Tv


Duxter


Instagram


Location


Interests


Interests


Occupation

Found 99 results

  1. Hello people, I have been struggling to make a working custom ticket system for my mission. My goal is to have a maximum of 7 global west tickets as I have 7 available player slots. To make it more fair, I want one ticket to subtract from west side every time a new player respawns on west side, but not when they respawn again. Server should keep track of tickets subtracted and add ticket back if player chooses to change sides to east or if he disconnects the server from the west side. My guess is, i have trouble making database work... Now I don't have any real coding experience and this is my idea of the code which I heavily edited multiple times using logic and ChatGPT: onPlayerRespawn.sqf // Variable ticket system private _uid = getPlayerUID player; // Retrieve player data private _playerData = [_uid] call TAG_fnc_retrievePlayerData; private _tempSideRespawned = side player; private _tempAlreadyRespawnedAsEast; private _tempHasReturnedTicket; private _lastRespawnedSide = profileNamespace getVariable ["lastRespawnedSide", east]; if (!isNull _playerData) then { _tempAlreadyRespawnedAsEast = _playerData select 1; _tempHasReturnedTicket = _playerData select 2; } else { _tempAlreadyRespawnedAsEast = false; _tempHasReturnedTicket = false; }; // Handle ticket decrement and increment based on the respawned side if (_tempSideRespawned == east && _tempSideRespawned != _lastRespawnedSide) then { [east, -1] call BIS_fnc_respawnTickets; _tempHasReturnedTicket = false; } else { if (_tempSideRespawned == west && _lastRespawnedSide == east && !_tempAlreadyRespawnedAsEast && !_tempHasReturnedTicket) then { [west, 1] call BIS_fnc_respawnTickets; _tempAlreadyRespawnedAsEast = true; _tempHasReturnedTicket = true; }; }; // Update the player's last respawned side private _lastRespawnedSide = _tempSideRespawned; profileNamespace setVariable ["lastRespawnedSide", _tempSideRespawned]; // Update the player's data in the database [_uid, [_tempSideRespawned, _tempAlreadyRespawnedAsEast, _tempHasReturnedTicket]] call TAG_fnc_storePlayerData; initServer.sqf execVM "Scripts\functions.sqf"; // Global array to store each player's data in the TAG_database if (isNil "TAG_database") then { TAG_database = []; }; // Event handler for player disconnect addMissionEventHandler ["PlayerDisconnected", { params ["_id", "_uid", "_name", "_jip", "_owner", "_idstr"]; // Get the player's data from TAG_database using UID private _playerData = [_uid] call TAG_fnc_retrievePlayerData; if (count _playerData > 0) then { private _side = _playerData select 0; private _hasReturnedTicket = _playerData select 2; if (_side == west && !_hasReturnedTicket) then { [west, 1] call BIS_fnc_respawnTickets; // Add one ticket to West side on the server diag_log "Ticket returned to West"; // Mark that the ticket has been returned for this player to prevent multiple returns [_uid, _side, true] call TAG_fnc_storePlayerData; }; }; // Remove the player's data from TAG_database upon disconnect TAG_database = TAG_database - [_uid]; }]; functions.sqf TAG_fnc_storePlayerData = { params ["_uid", "_data"]; private _playerIndex = -1; { if ((_x select 0) == _uid) then { _playerIndex = _forEachIndex; true } else { false }; } forEach TAG_database; if (_playerIndex < 0) then { TAG_database pushBack [_uid, _data]; } else { TAG_database set [_playerIndex, [_uid, _data]]; }; }; TAG_fnc_retrievePlayerData = { params ["_uid"]; private _playerIndex = -1; { if ((_x select 0) == _uid) then { _playerIndex = _forEachIndex; true } else { false }; } forEach TAG_database; if (_playerIndex >= 0) then { TAG_database select _playerIndex select 1; } else { []; }; }; TAG_fnc_getPlayerIndex = { params ["_uid"]; private _playerIndex = -1; { if ((_x select 0) == _uid) then { _playerIndex = _forEachIndex; true } else { false }; } forEach _database; _playerIndex; }; description.ext class CfgFunctions { class Anthill { class MissionFunctions { class fnc_startTimer { file = "Scripts\functions.sqf"; }; class fnc_stopTimer { file = "Scripts\functions.sqf"; }; class fnc_resetTimer { file = "Scripts\functions.sqf"; }; class fnc_checkEmptyServer { file = "Scripts\functions.sqf"; }; class fnc_missionTimer { file = "Scripts\functions.sqf"; }; class fnc_scheduleTimer { file = "Scripts\functions.sqf"; }; class TAG_fnc_storePlayerData { file = "Scripts\functions.sqf"; }; class TAG_fnc_retrievePlayerData { file = "Scripts\functions.sqf"; }; class TAG_fnc_getPlayerIndex { file = "Scripts\functions.sqf"; }; }; }; }; I have sorted all errors in RPT files, and I still can't manage to execute full onplayerrespawn.sqf... I don't know where is the problem or how else i can diagnose it beside diag_log which doens't always work. Thanks for insights
  2. Hi, I am hosting a dedicated server for a small group of friends. As I have only one PC and we don't want to rent a server because we play only once a week I found very nice way to host and play simultaneously. I just run arma3server_x64.exe before I log into Steam. I have placed config file and params file in A3 root folder. They are like this: //Config_Lythium.cfg hostname ="warhbg"; password ="bla"; passwordAdmin="blabla"; serverCommandPassword="blalabla"; motd[]= {"Welcome to the server!"}; BattlEye = 0; allowedVoteCmds[] = {}; class Missions { class Mission1 { template = Killbox_Lythium_3.lythium; difficulty = "Veteran"; class Params {}; }; }; //lythium_startup.txt -port=2302 -name = "kiba3x" -profiles = "C:\Users\%UserName%\Documents\Arma 3 - Other Profiles"; -config=Config_Lythium.cfg -mod="!Workshop\@CBA_A3;!Workshop\@ace;!Workshop\@ACE Compat - RHS USAF;!Workshop\@Advanced Sling Loading;!Workshop\@CUP ACE3 Compatibility Addon - Vehicles;!Workshop\@CUP ACE3 Compatibility Addon - Weapons;!Workshop\@CUP Terrains - Core;!Workshop\@CUP Terrains - Maps;!Workshop\@CUP Units;!Workshop\@CUP Vehicles;!Workshop\@CUP Weapons;!Workshop\@F-15 Eagle;!Workshop\@F-16 Fighting Falcon;!Workshop\@FA-18 Hornet;!Workshop\@FIR AWS(AirWeaponSystem);!Workshop\@Jbad;!Workshop\@LYTHIUM;!Workshop\@MGI ADVANCED MODULES;!Workshop\@Moe Pilot Gear Suite;!Workshop\@RHS LittleBirds 2.0;!Workshop\@RHSUSAF;!Workshop\@Simple Suppress;!Workshop\@Tier 1 Artillery Mod;!Workshop\@USAF Mod - Main;!Workshop\@USAF_AC130_BETA" -noPause I make a shortcut to arma3server_x64.exe and I add this -par="lythium_startup.txt" This way I could host and play at the same time and performance in missions is excellent. All mod names should be in one line, you get their names from A3 root !Workshop folder. Your mission pbo should be placed in MP Mission folder in A3 root.
  3. Hi! Thank you in advance for reading my post. So the problem is that players are complaining about low client FPS. And I can't find the reason. I suspect it's a problem with the network engine and desyncs but I can't find where it is exact. We are seeing a drop of about 10 FPS in clients compared to the "Yet Another ArmA Benchmark" for most clients. We have a pretty heavily scripted mission. We use ALiVE, ACE, HG Shops, Traffic from Enigma and a small number of other self written scripts. I analyzed the mission with Dedmen's ArmA 3 Script Profiler and found nothing critical. Only ACE always in Scheduler with it's scripts and a couple of while{true} runs every few minutes are in the Scheduler all the time. Although I didn't go with Profiling build for server. Don't understand how to use it on serverside. Here is the Google Drive with the mission if you want to look at it Regarding the server. We are using a VDS with Ryzen 5950x and 16gb RAM, SSD for storage. Server x64 with the latest Performance build. 1 Gbp/s for download and upload. Mods for the client: ArmA 3 Aegis ArmA 3 Atlas ACE CBA_A3 TFAR The CSAT Modification Project ALiVE And our little mod with factions and a couple of textures On the server side: ExtDB3 and our server-side database mod. In the RPT logs there were errors with the network engine, that it failed to send too large a message. I kind of fixed that in basic.cfg but I didn't have enough players to test it yet. The server FPS is averaging 40. Using two headless on a remote machine with Xeon via ACE Headless module. Here is our basic.cfg // This file has been tuned for a box running only one Arma 3 server on a // 1 GBit/s pipe with 64 slots /////////////////////////////////////////////////////////////////////////////// // Default Options language = "English"; adapter=-1; 3D_Performance=1; Resolution_Bpp=32; Windowed=0; /////////////////////////////////////////////////////////////////////////////// // Bandwidth Tuning // 100MB * 1024 * 1024 = 104857600 MinBandwidth = 104857600; // Do NOT set this too high or your Arma server will simulate ego-ddos // 1000MB * 1024 * 1024 = 1048576000 MaxBandwidth = 1200000000; /////////////////////////////////////////////////////////////////////////////// // Network Tuning MaxMsgSend = 1024; MaxSizeGuaranteed = 512; MaxSizeNonguaranteed = 192; MinErrorToSendNear=0.04; MinErrorToSend=0.004; MaxCustomFileSize = 122880; All in all, I'm lost. I can't figure out what's causing the clients FPS drop. I tried everything, optimized the mission as best I could so as not to cut the content for players, changed mods from RHS to 2035, played with basic.cfg and tried another machine. Nothing I suspect the problem is still somewhere in the crooked settings of the network engine but I need help with that. Thanks!
  4. Hi together, Last weeks I learned a lot about localisations, using them etc. with the help of the Forum here. And 90% percent of my planned Mission is tested and works but on one finally point I get absolute in struggle. I wanna use at the very end of the mission following part: - cinemaborder fade in - keyframe animation makes a cameraride around the players - cinemborder fade out - mission endscreen But the Keyframe animation seems to be my personal "endboss" in this way. First of All: On SP and MP it works but all tries to execute on Dedicated was totally failures. And I think it is a Localisation Problem again. I am not sure because of missing Infos in BI Wiki if this Module is Local Arg and Local Exc but I expect. I tried to remoteexecute the BI Fnc direct, I tried to remoteexecute execVM the BI fnc in a separate Script, I tried to to start the BI fnc with a trigger and executed the Trigger by Script (Trigger were mostly used in Tutorials I watched), I tried different settings inside Timeline Modul to play with and without loop and also start paused and not paused, I tried to execute before the BI init fnc. And now I am just clueless. This is such a very cute Feature of Animation and I hope some of you have a idea for me. BI Wiki: Keyframe Animation: https://community.bistudio.com/wiki/Arma_3:_Key_Frame_Animation BI Wiki: BIS_fnc_timeline_play: https://community.bistudio.com/wiki/BIS_fnc_timeline_play BI Wiki: BIS_fnc_timeline_init: https://community.bistudio.com/wiki/BIS_fnc_timeline_init Code Outro (last Testbuild, changed very often: Code Timeline (not needed to outsource in annother Script I think): Thanks for your support.
  5. Hey, I help some help to improve this: The script does: for dedicated and hosted servers, a multiplayer playable area control based on a trigger area (with Y, X, Z) dropped through Eden Editor, where, if some player leaves that area, that specific player is punished immediately and, if there is a vehicle with them, the vehicle must be destroyed too. Improvement desired: as the script is loaded by description.ext | cfgFunctions and the script checks all players alive (they are able to respawn) as long the match goes, the desire is to improve those lines, remembering my dedicated server runs, sometimes, til 30 players. Ps.: for now, the target is just human players, not considering AI units out there. Here we go: fn_PAC_init.sqf: if (!isServer) exitWith {}; private ["_playersAlive", "_isPlayableArea"]; [] spawn { while { true } do { _playersAlive = (allPlayers - (entities "HeadlessClient_F")) select {alive _x}; { // forEach _isPlayableArea = _x inArea PAC_playableAreaControl; // Eden trigger if !(_isPlayableArea) then { [_x, 1] call THY_PAC_fnc_setDamage; }; } forEach _playersAlive; sleep 5; }; }; fn_PAC_globalFunctions.sqf: THY_PAC_fnc_setDamage = { params ["_target", "_damage"]; ["You left the playable zone!"] remoteExec ["systemChat", _target]; sleep 0.1; if !(isNull objectParent _target) then // checking if the player is in vehicle { vehicle _target setDamage [_damage, false]; }; _target setDamage _damage; }; On Eden Editor: Dropped a trigger and name it as "PAC_playableAreaControl". Share your thoughts, it will be very much appreciated. thy
  6. Hi together, I am a scripting beginner and am trying to learn from problem delivery to problem delivery. after a few days of research and a lot of trying, i've reached a point where i just can't figure it out anymore and every reading leads to more confusion and so i'm asking for your support. Scenario: a SOG CDLC Jet is connected to a Multiplayer Respawn Module. After destruction and respawn, two addactions should be attached, Nightvision and Thermal should be switched off (also with regard to other Jets of Unsung Mod etc.) and a function that defines the group membership in the Mike Force script should be executed. My two .sqf are still rudimentary at this point and I will only continue to build them once I have solved the problem of execution. It currently works in the SP / Selfhosted but not on the Dedicated Server. I have both the way of directly executing the code in the expression of the respawn module and calling it from an external .sqf via remoteEexec. That means I have: - a locality problem - it is not clear to me whether my variable from the editor is retained after respawn or whether it has to be reassigned and so I had a failure because of doubling the params for new and old vehicle Init Vehicle (not Init Respawn Module - works on Dedicated by start): First Version Expression Field Resspawn Module - Direct Code : Second Version Expression Field Resspawn Module - calling a .sqf: Content of umdrehen.sqf (not urgent but for "awareness"): Content of exit.sqf (not required but for "awareness"): Content of newf1.sqf (maybe required, belongs to variabel and calling condition): Thank you very much in advance for your thoughts, suggestions and support.
  7. Hey, i just enabled BattlEye on our linux dedicated server for the first time and have some questions. BattlEye seems to run properly: It gets updated, is executing filters and scripts.txt, is writing logs and the remote console works. BUT: Clients with disabled BattlEye are still able to join that server. Why is that? Do i have to add some special filter-line for kicking them? Thanks for any hint.
  8. Hi there I have had a Linux dedicated arma3 server running fine for a while, these last days an issue appeared from no where: I use the 1.82 version, so I can connect to it with the Linux native client, With BE enabled. Now, I cannot connect anymore: Error message: DLCs mismatch. Other symptoms: 1) All DLC are in red in the details pane of the MP interface of Arma3 Linux Client. 2) The details pane shows only 8 DLCs 3) My Linux client has the 10 DLCs 4) My Linux server's console shows the 10 DLCs ... 5) if related, I see this message now that I dont think it was here before: 13:03:51 Cannot register unknown string STR_3DEN_CAMERA_NAME 13:03:51 Cannot register unknown string STR_DIFF_SCENE_ONLY 13:03:51 Cannot register unknown string STR_DIFF_SCENE_AND_MAP 12:49:21 ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 12:49:21 Arma 3 DLC Bundle 2 | dlcbundle2 | true | NOT FOUND | | | 12:49:21 Arma 3 DLC Bundle 1 | dlcbundle | true | NOT FOUND | | | 12:49:21 Arma 3 Tanks | tank | true | GAME DIR | 4df9fdc3af2a71c62627be80a7ab755a02dcf1df | 2ce77785 | /home/steamleg/arma3/tank 12:49:21 Arma 3 Tac-Ops | tacops | true | GAME DIR | 211c4e0554a0d385f9e06657f86014ea812e9c0a | 1ee5ddc3 | /home/steamleg/arma3/tacops 12:49:21 Arma 3 Laws of War | orange | true | GAME DIR | ef1cd56c40b4d010daf1fe1381a0d5cba5ee8ca9 | 9aa3097a | /home/steamleg/arma3/orange 12:49:21 Arma 3 Malden | argo | true | GAME DIR | 5bcf910df6383993f930b60be8d021bd84bf71ec | 71d3c487 | /home/steamleg/arma3/argo 12:49:21 Arma 3 Jets | jets | true | GAME DIR | 74f82e56aeb43fed4d356df93e4beac6ef325d51 | 8057ba80 | /home/steamleg/arma3/jets 12:49:21 Arma 3 Apex | expansion | true | GAME DIR | 64ea965281ee9614ad2faf70dfcb7f9bcfd819f3 | 8fe2dec7 | /home/steamleg/arma3/expansion 12:49:21 Arma 3 Marksmen | mark | true | GAME DIR | 6e50469e36f2352ccd7b1a42c8040c3c8ae34873 | f3c390b7 | /home/steamleg/arma3/mark 12:49:21 Arma 3 Helicopters | heli | true | GAME DIR | 82775a9a7fc84fa1b6778ac18afa572af8b14bce | 61ee9c5 | /home/steamleg/arma3/heli 12:49:21 Arma 3 Karts | kart | true | GAME DIR | 2d9f96493344582fe37d5b3ee10451e8166326c1 | f10e9c75 | /home/steamleg/arma3/kart 12:49:21 Arma 3 Zeus | curator | true | GAME DIR | e576b57de30c4fbaa7337db15aca30e906047e0e | 2e0f3c2b | /home/steamleg/arma3/curator 12:49:21 Arma 3 | A3 | true | NOT FOUND | | | 12:49:21 ========================================================================================================================================================================================================== Feel free to see it on your side, if you have time, my server is [FR] HAWCS3 ... in the MP listing / Steam ... the IP is 195.154.253.155
  9. I've been trying my best to get a script to work which allows a server to detect players within a specific vehicle. Here are the versions I've tested. They do not work on a dedicated server though. 1: {_x in object} count (playableUnits) == {alive _x} count (playableUnits); 2: _allPlayers = call BIS_fnc_listPlayers; {_x in object} count (_allPlayers) == {alive _x} count (_allPlayers); 3: {_x in object} count (allPlayers) == {alive _x} count (allPlayers); 4: ( {alive _x && !(_x in object)} count allPlayers ) == 0 I'm terrible at scripting but I try my best to understand. If you have a fix that is great, though I'd love to know how I messed up and how to improve for the future. :)
  10. After starting up my dedicated server, and loading into the briefing screen as admin. I select the Server tab within Game Options, set some variable, check "Overwrite Mission", select "OK". Then if I reopen the Game Options section, the variable will reset itself to the default value. I've tried toggling `filePatching` within the Start.bat file, and `allowedFilePatching` within server.cfg Current values: filePatching unchecked allowedFilePatching = 2 I've tried exporting the wanted Game Options into cba_settings.sqf within Server/@CBA_A3/userconfig and updating the mission pbo file at MissionDescription/gameSettings.hpp to contain: cba_settings_hasSettingsFile = 1; I'd prefer to set the Game Options using a custom preset when starting the server, not "hardcoding" the values within cba_settings. Also just to be clear, I tried using cba_settings just as a temporary possible solution, it may not be the correct way to do it, and I'm not looking to use that method. I'm currently running the latest git Community Antistasi which I packed into a pbo, as well as using CBA_A3 and ace, and I'm hosting with GTXGaming. I've setup this same mission with the same mods, and the same host before, I'm not sure why I'm having issues this time. Any advice or pointers are appreciated, thanks in advance!
  11. Hello everyone, and thank you for taking the time. I have returned to Arma 3 mission making and server hosting after a break, and have been really excited to get going. I know some ins and outs how to manage a server, and do some troubleshooting already, when it comes to mission making, scripts, and to find out problems with the server and the logs. However, this issue is not something that I have managed to resolve as of yet; There is some kind of desync issue with the server, sooner or later as I am hosting an operation, or another gamemode such as Escape, sooner or later at some point the server will start to desync strongly in periods .. like when AI is spawning or moving about. I have tried to run the missions without some scripts, to test if it fixes the desync but it hasn't .. so I was thinking maybe there is an issue in the mod list, somehow, or corrupted files in the server, or something to do with the server getting overloaded and too busy .. which has led me to read about Headless Clients, which is too complex for me. Current mod list during operations; Mod list during Escape (custom modded); Keep in mind we experience same desync issues, with both mod lists. Perhaps answers can be found in the log, I appreciate if anyone could take a look; This is the log from yesterday when we were playing Escape Tanoa (custom with mods).
  12. Hi guys, I've been steadily producing terrible code and making it less terrible as I go. I'm still having problems recognizing locality of certain commands, and when/who needs to execute the specific code. Thanks for your help, as I continue to produce horrible scripts! What I'm trying to do 1) Players use an addaction to start an event (working) 2) Players are transported into a plane (working) a) the plane begins to get shot down (crash) (working) b) some radio chatter (text and sound), and music plays (only working for the player that triggered the action ("player1")) c) some explosion happens and an engine fire starts (working) d) the plane is forced downward (working kind of brute force though) 3) Players encounter another explosion at low altitude (working) a) players are knocked unconscious (only working for "player1") b) random clutter is spawned based on player count (working) c) players are stripped of random items and those items are placed in some boxes (half working only player1 loses items) 3) Players awaken to a crash site (working again only player1 was unconscious) a) music switch to shorter track (working only for player1) b) static engine noise plays from the wreck (working for playe1 only) I have also noticed that for "player1" the events progress linearly through the script, but for the other players that is not necessarily the case. I was poking around and it sounds to be scheduler related, but I'm not quite understanding how to work around that. Ideally all of the events in my script would happen synchronously and in the order they are shown in the script. Any help in pointing me where to go from here is much appreciated, script and description.ext to follow. description.ext Crash.sqf
  13. Hi all, I'd like to better understand the JIP parameter used in remoteExec command. I read tons of pages (most of them are rather questions than answers) and of course several times the BIKI pages about remoteExec and JIP things. If I clearly understand, the JIP is set to FALSE by default. That means the code will not fire for a JIP as there is no "message" in queue. I guess the message is a kind of string code but there is no example or plain explanation about that. Anyway, here is my 2 cent question: I'm testing a mod on a server dedicated + client on the same PC. A script allows me modifying the loadout on pylons of a jet. This script is located on server where the aircraft is spawned. So, as setPylonLoadout is effect local , (really strange for a recent command!), I have to remoteExec this command everywhere. I forget the JIP thing, just remoteExecuting the command. OK. All is fine so far. Now, testing the mission, as client of my own dedicated server, I can see the new pylons and they are operational. BUT: If I disconnect and reconnect (the server is set to let the mission run when no player), I'm joining the ongoing mission and , by some way I can't understand, I can see the new pylons on the aircraft. On my mind, if no JIP parameter on remoteExec, the client has no info on what was remoteExecuted, so should see the standard loadout of the spawned aircraft. So, JIP or not, in what cases? Is there some exception on vehicles/objects? Isn't it a waste of net resource to JIP for nuts some parameters? but which ones? Thanks for reading.
  14. Hi everyone, I'm quite noob when it comes to the server-client interaction in arma, so please bear with me on this one. So I was testing a mission with my friend, with him being the server. I noticed that when my position was close enough to him, nothing seemed out of the ordinary, but when we're sufficiently far apart, like at least several kilometers, enemy AIs stopped responding to my gunshots (not going to alert) and will not try to engage, until I'm close enough to them (like 200m+ or so, even when they have weapons with long-ranged scope), while my friend, being the server, did not notice any problem at all (he still got sniped from 600m away). We tried some other simple scenarios and this kept happening so I concluded that it must have been arma's client-server thing. I've tried googling for the reference information about this but so far no luck, though pretty sure I'm just missing the right keyword, so can anyone please refer me to the relevant arma wiki page or any info page about this? Another question is, if this is indeed an issue with arma client-server interaction, would using dedicated server address this? Thank you in advance!
  15. Hi to all! For my server, it was necessary to perform a whitelist for players who connect to the server. To do this, I created a separate mod that works almost perfectly, but the problem is that checking for all given parameters occurs only after a briefing. How to run a script in an addon loop for example when starting the server itself or when connecting the player to the server (not in the game - possibly in the lobby or simply connecting the mission selection screen). Here is my example implementation: config.cpp In config, we create a Security class and set the preInit parameter (I understand that it executes before loading the mission, and I need it when connecting to the server) fn_init.sqf And it works as follows: the server has a config containing an array of player data (name, guid, ban status) and an access password (required in the server configuration using the command serverCommandPassword = "010101"; specify the same password which is also in the "Security \ functions \ config.ccp"). Then after the start of the game (after the briefing) the script makes a check: 1) The presence of GUID in whiteList, if not - kick, if so then step two 2) Checking player on banned: if paremetr false - then next step if parametr true - so does the kick. 3) Checking the registered name if it does not match what is indicated in the whiteList - kick 4) If the player passes all three checks, he successfully connected the game and receives a notification in the chat "Accepted". And now my main question to the specialists (if they are still here is): How to make this script work not when the mission starts, but when the server starts? Any variations are accepted (When connecting the player, when starting in the lobby (but not further than the lobby), it can be a cycle or something). Maybe something smarter than this nonsense.
  16. Hello, In my clan we're trying to establish a dedicated server like we did in the past and it doesn't seem to work. We tried establishing the server using two different machines, several different ports, and some other settings - the system is showing that the server is running but not showing up on the multiplayer servers browser. What could be the problem?
  17. Here's the server log: https://pastebin.com/hbyiXFJK I use LGSM, the machine has 96gb ram, 3ghz 8core 16 thread dual cpu (intel). Ubuntu 18. I was getting another error before this one when it kicked me: 12:42:28 BattlEye Server: Connected to BE Master 12:42:33 BEServer: cannot find channel #481584431, users.card=0 12:42:35 BEServer: cannot find channel #481584431, users.card=0 12:42:40 BEServer: cannot find channel #481584431, users.card=0 12:42:43 BEServer::finishDestroyPlayer(481584431): users.get failed I did a reinstall, changed some elements of the mission file and now I don't get that error, but I still get kicked and the console is flooded with: 5:04:30 File A3\Functions_F_Warlords\Warlords\fn_WLSectorPopulate.sqf [BIS_fnc_WLSectorPopulate]..., line 118 5:04:30 Error in expression <ts _newGrp < 3} do { _newUnit = _newGrp createUnit [_unitArr # floor random _uni> 5:04:30 Error position: <createUnit [_unitArr # floor random _uni> 5:04:30 Error Type Any, expected String The server seems to be up and running, it shows on the server list, just when I connect I get sent back to the server list with no pop up message.
  18. My friend and I have been working on getting a server to work with us with mods for 9 hours and its starting to get a bit frustrating. We feel like there is nothing for us to do. So basically one of the many issues we are having is that in the CONFIG_server.cfg file that I have, it does not appear to be registering the name of the server i have input, the server password or the admin password and when i enable them. These lead to other issues, such as not being able to access the Game Add On tab for the server so as to enable the mods once in game. If someone would let me know as to what I should be doing or what I have done wrong that would be great. Edit: This might be the potential issue because I was having the same problem with my .bat file The file is named CONFIG_server.cfg.txt so it isn't registering the .cfg as the file type??? it still says it's a .txt file even after I clarified while saving to not restrict it to only .txt This sounds like it might be the issue and I would be super happy if anyone could shed light on how to get it to stop making it .cfg.txt and just .cfg Edit of Edit: So i fixed the file type, server still doesn't recognize the name of server, admin password and normal password, will keep trying!!! Config File: // // server.cfg // // comments are written with "//" in front of them. // NOTE: More parameters and details are available at http://community.bistudio.com/wiki/server.cfg // STEAM PORTS (not needed anymore, it's +1 +2 to gameport) // steamPort = 8766; // default 8766, needs to be unique if multiple servers are on the same box // steamQueryPort = 27016; // default 27016, needs to be unique if multiple servers are on the same box // GENERAL SETTINGS hostname = "Server303"; // Name of the server displayed in the public server list //password = "serverpw"; // Password required to join the server (remove // at start of line to enable) passwordAdmin = "adminpw"; // Password to login as admin. Open the chat and type: #login password maxPlayers = 40; // Maximum amount of players, including headless clients. Anybody who joins the server is considered a player, regardless of their role or team. persistent = 1; // If set to 1, missions will continue to run after all players have disconnected; required if you want to use the -autoInit startup parameter // VOICE CHAT disableVoN = 0; // If set to 1, voice chat will be disabled vonCodecQuality = 10; // Supports range 1-30, the higher the better sound quality, the more bandwidth consumption: // 1-10 is 8kHz (narrowband) // 11-20 is 16kHz (wideband) // 21-30 is 32kHz (ultrawideband) // VOTING voteMissionPlayers = 1; // Minimum number of players required before displaying the mission selection screen, if you have not already selected a mission in this config voteThreshold = 0.33; // Percentage (0.00 to 1.00) of players needed to vote something into effect, for example an admin or a new mission. Set to 9999 to disable voting. allowedVoteCmds[] = // Voting commands allowed to players { // {command, preinit, postinit, threshold} - specifying a threshold value will override "voteThreshold" for that command {"admin", false, false}, // vote admin {"kick", false, true, 0.51}, // vote kick {"missions", false, false}, // mission change {"mission", false, false}, // mission selection {"restart", false, false}, // mission restart {"reassign", false, false} // mission restart with roles unassigned }; // WELCOME MESSAGE ("message of the day") // It can be several lines, separated by comma // Empty messages "" will not be displayed, but can be used to increase the delay before other messages motd[] = { "Welcome to My Arma 3 Server", "Discord: discord.somewhere.com", "TeamSpeak: ts.somewhere.com", "Website: www.example.com" }; motdInterval = 5; // Number of seconds between each message // LOGGING timeStampFormat = "short"; // Timestamp format used in the server RPT logs. Possible values are "none" (default), "short", "full" logFile = "server_console.log"; // Server console output filename // SECURITY BattlEye = 1; // If set to 1, BattlEye Anti-Cheat will be enabled on the server (default: 1, recommended: 1) verifySignatures = 2; // If set to 2, players with unknown or unsigned mods won't be allowed join (default: 0, recommended: 2) kickDuplicate = 1; // If set to 1, players with an ID that is identical to another player will be kicked (recommended: 1) allowedFilePatching = 1; // Prevents clients with filePatching enabled from joining the server // (0 = block filePatching, 1 = allow headless clients, 2 = allow all) (default: 0, recommended: 1) // FILE EXTENSIONS // only allow files with those extensions to be loaded via loadFile command (since Arma 3 v1.19.124216) allowedLoadFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"}; // only allow files with those extensions to be loaded via preprocessFile / preprocessFileLineNumbers commands (since Arma 3 v1.19.124323) allowedPreprocessFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"}; // only allow files and URLs with those extensions to be loaded via htmlLoad command (since Arma 3 v1.27.126715) allowedHTMLLoadExtensions[] = {"htm","html","php","xml","txt"}; // EVENT SCRIPTS - see http://community.bistudio.com/wiki/ArmA:_Server_Side_Scripting onUserConnected = ""; // command to run when a player connects onUserDisconnected = ""; // command to run when a player disconnects doubleIdDetected = ""; // command to run if a player has the same ID as another player in the server onUnsignedData = "kick (_this select 0)"; // command to run if a player has unsigned files onHackedData = "kick (_this select 0)"; // command to run if a player has tampered files // HEADLESS CLIENT headlessClients[] = {"127.0.0.1"}; // list of IP addresses allowed to connect using headless clients; example: {"127.0.0.1", "192.168.1.100"}; localClient[] = {"127.0.0.1"}; // list of IP addresses to which are granted unlimited bandwidth; example: {"127.0.0.1", "192.168.1.100"};
  19. Greetings to all. I usually use this script to spawn (on trigger position) hunters to hunt the players (on foot) in my multiplayer mission (dedi) and its works perfect. But updating the mission and adding vehicles for the players I realized that when a player is inside a vehicle and activates the trigger and then gets off the vehicle and continues on foot, the hunters reach the position of the abandoned vehicle and stop there, do not continue chasing the player on foot. Any help or advice is welcome. Thank You! Trigger size: 390 x 390 Activation: Any Player ActType: Present Server Only: yes Cond: this OnAct: null = [thistrigger,thislist] execvm "4hunters.sqf"; 4hunters.sqf _PosTrigger = _this select 0; _objetives = _this select 1; _objetive = _objetives select 0; if (isserver) then { private ["_hunters", "_leaderhunters"]; _CountEnemies = {alive _x && side _x == independent} count allUnits; //Spawn hunters if less than 100 enemies on the map if (_CountEnemies < 100) then { _SpawnPos = position _PosTrigger ; _hunters = createGroup independent; _hunters = [_SpawnPos, independent, ["I_C_Soldier_Para_2_F","I_C_Soldier_Para_1_F","I_C_Soldier_Para_2_F","I_C_Soldier_Para_1_F"],[],[],[],[],[],260] call BIS_fnc_SpawnGroup; //Move to player position _leaderhunters = leader _hunters; _leaderhunters move (position _objetive); _hunters setCombatMode "RED"; _hunters setBehaviour "AWARE"; _hunters allowFleeing 0; 0 = [_hunters,_objetive] spawn { while {true} do { params ["_hunters","_objetive"]; sleep 3; //If the player who activates the trigger moves more than 400 meters away, the hunters are deleted if ((_objetive distance (leader _hunters)) > 400) exitWith { {deleteVehicle _x} forEach units _hunters; }; }; }; //When the hunters reach the position where the trigger is activated (and the player is not there) wait 3 sec and update the player's new position. while {true} do { // _leaderhunters = leader _hunters; if ((unitReady _leaderhunters) && {(alive _leaderhunters)}) then { sleep 3; if (({ alive _x} count (units _hunters)) != 0) then { _leaderhunters = leader _hunters; _leaderhunters move (position _objetive); _hunters setCombatMode "RED"; _hunters setBehaviour "AWARE"; _hunters allowFleeing 0;};};}; }; };
  20. Hey guys, as i bought the Creator DLC, i first edited the new Wefelingen map in the EDEN Editor for a little nice base for my ZEUS missions. When i had it finished, i uploaded it to my Nitrado Server via FileZilla. As i joined in the lobby, the lobby started "flashing" with errors in the bottom left corner. I already put the "-mod:gm" in the modification field. And i tried it again with no assets or other buildings. I simply have the spawn and the roles on the map. I tried it with the winter map and the normal map. As i cant edit the files i dont know how to fix it. The only mods i have loaded are: - Achilles - CBA_A3 I hope you can help me 🙂
  21. I host dedicated server at standalone computer (i5, 8gb ram, GTX660) in my local net, behind the router, port forwarded. So I connecting to this server directly to 192.168.0.... , and my friends connectins from outside through internet. They have normal playable FPS, but not me, I have drops even to 10 FPS, despite I have i5, 16Gb ram, SSD, GTX1060 6Gb. In RPT file I have spam of: "23:29:13 Object id 9f6c9121 (289) not found in slot 402,251 23:28:06 Link cannot be resolved 23:28:06 In last 3000 miliseconds was lost another 2 these messages." In task manager all resources (CPU, GPU, RAM not used even at half). Server config: hostname = **** passwordAdmin = **** password = ***** kickduplicate = 1; verifySignatures = 2; persistent = 1; admins[] = **** enableDebugConsole = 1; forcedDifficulty = "custom"; forceRotorLibSimulation = 1; class Missions { class kp_liberation { template = "kp_liberation.lythium"; difficulty = "custom"; }; };
  22. Re-Activated December 28 2018 to counter the growing threat of CSAT and insurgents forces. All new recruits are to report to their nearest recruiting office for assignment. Recruiting Station https://discord.gg/NHzqFws Who Are We? -We are a Arma 3 tactical realism community for those who seek tactical team play, and others who want to relive that awesome military life with out the garrison customs and courtesy drama like cult thingy. Our community fosters new players and understands most have been playing fortnite, battlefield and Call of Duty their entire lives. We are here to help you transition from run n gun Rambo lone wolf solid snake American sniper tactics into awesome well oiled CSAT killing tactical machines. We also understand that sometimes a lot of what we teach doesn’t make sense to those accustomed to player revives with a dirty reused needle. So here we offer open membership to all our causal players to come and join us on our Dedicated Server and teamspeak channel to help us take some of these towns on the chaotic KP liberation mission. If you find out that you kinda like the team and some of the Official unit members then ask to officially join the unit. What do I have to do to join the Unit? -Good question! Most of that information can be found in that discord channel I posted in the beginning. But to give you a barnie style breakdown, you first need to attend the units basic training which is broken down into 3 30-60 minute sections Red, white and blue phase. The basic training will go over unit standards, tactics and all roles available for you to fill. After that there is specialized courses for various roles. You can specialize in one or be a jack of all trades, it’s up to you! When do you guys play? - the peak hours among the unit is around 1800 Gmt and we normally hold training on Tuesdays and Fridays, with unit operations on Saturdays. Any other days of the week are normally casual days so jump on and have fun. Can I be pilot? -Sure.....in casual gameplay, going to go ahead and assume you just downloaded the game. So if you want to be a unit pilot I’d prefer you practice, and learn to hurry up and wait. Because having planes blaze down an entire village before the troops get there is kinda a immersion killer. Can I fly Transport? -only if you can land Why do you only have slots for certain roles? -let’s put it this way, if your playing on a football team your likely not running the football if your a lineman and probably not catching the football if your the quarterback. Every position has a role and specific task and if one person is not sticking to their role the whole team fails. So in the 32nd ID we build our squads in a way where just about all tasks can be completed with the least amount of players. A Squad typically consists of about 9-12 players —ALPHA TEAM— Team leader Rifleman. (AT) Grenadier Automatic Rifleman --BRAVO TEAM— Team Leader Rifleman (SDM) Grenadier Automatic Rifleman —Command Elment— Squad leader Medic RTO/FO/JTAC Machine Gunner Other roles are planned for the future as the unit expands but for now we ask that players become familiar with the available roles. And fill them when needed. How to I get into the server or teamSpeak? - super easy, first join the discord and look in the appropriate channels or direct connect here: https://units.arma3.com/unit/32ndinfantry Hopefully you fill all warm and fuzzy inside about what we offer here, and muster up the courage to join. If you have any questions please feel free to ask either here, the discord or in game and will try are best to answers all reasonable questions. See you soon........
  23. Hello folks, I am currently working on a mission designed for training puposes. The mission is build upon the OlsenFramework, a mission making framework. Links are to either githubs. I am running into the following problem: a) If I test the mission in the Eden Editors host environment and singleplayer, all code executes flawslessly when addEventHandler is used (obviously no MP). b) When tested on a dedicated server, the EventHandlers (addEventHandler and addMPEventhandler) will not fire at all. This was tested via systemChat messages. The code: (All code can be viewed on the github linked, its the latest changes made and the last version tested on the server) A few months back I was given a script by my units training officer to work with popup targets but it was split in a multitude of files and also only worked partially on dedicated, which I did not like so I rewrote it into a single script. The origin of that code is not known to me, so forgive me for the missing credits. In the init.sqf of the mission, I call code which adds a line of code to each targets which apparently is supposed to 'fix' swivel targets not working in multiplayer dedicated environments. This can be found here. As far as I unterstand this is supposed to disable animation control on all clients (including non dedicated servers and HC), but sofar the targets still behave crappy. if (!isDedicated) then { _localTargets = (entities "Target_Swivel_01_ground_F") + (entities "Land_Target_Swivel_01_F"); { _x setVariable ["BIS_exitScript", false]; } forEach _localTargets; }; later I call my script which is mainly in control of the targets: popup.sqf once via the init.sqf to get all targets into a down position at mission start. This works flawless. Fnc_popup is the same as popup.sqf just processed via: Fnc_popup = compile preprocessFileLineNumbers "customization\popups.sqf"; if (isServer) then { [false,"init",500,initCenter] remoteExec ["Fnc_popup", 2]; }; Players being Instructors are makred via a variable "isInstructor" only players with this restriction will have access to the popup addAction ... actions. Which are placed on landBoards in the mission. en example from the addAction.sqf looks like this: Fnc_popup = compile preprocessFileLineNumbers "customization\popups.sqf"; if (!isDedicated) then { waitUntil { (player == player) }; if (player getVariable "isInstructor") then { arBoard addAction ["<t color='#FF0000'>Raise Bunker Targets",{[true,"setup",15,bnkTgts] remoteExec ["Fnc_popup", 2];}]; arBoard addAction ["<t color='#FF0000'>Lower Bunker Targets",{[false,"reset",15,bnkTgts] remoteExec ["Fnc_popup", 2];}]; }; }; This calls a precompiled form of popup.sqf and now the problöem occurs that everything in that popup.sqf works, except for the damn eventHandlers place on the trainingTargets. case init and case reset work, and throw no script errors. This is the popup.sqf file content: /////////////////////////////////////////////////////////////////////////////////////////// //Script to be called by inits or scripts for operating swivel and popup //targets around a specified object "_center". //params: [ShouldTargetsAutoPop?,WhichSwitchShouldRun?,WhatDistanceFromObject?,WhatObject?] //By PaxJaromeMalues /////////////////////////////////////////////////////////////////////////////////////////// params [["_popenabled",false],["_execution","init"],["_dist",25],["_center",initCenter]]; _targets = nearestObjects [position _center, ["TargetBase"], _dist]; _SwivelTargets = nearestObjects [position _center, ["Target_Swivel_01_base_F"], _dist]; switch (_execution) do { case "init": { { _x setVariable ["nopop", true]; _x animateSource ["terc",1] } forEach _targets; { _x setVariable ["BIS_poppingEnabled", false]; _x animateSource ["terc",1]; } forEach _SwivelTargets; }; case "setup": { "setup called" remoteExec ["systemChat"]; if (_popenabled) then { "popup first condition" remoteExec ["systemChat"]; { _x animateSource ["terc",0]; _x addMPEventHandler [ "MPHit", { "popup first condition EH before CBA" remoteExec ["systemChat"]; (_this select 0) animateSource ["terc",1]; [{ (_this select 0) animateSource ["terc",0]; "popup first condition EH in CBA" remoteExec ["systemChat"]; }, _this, 2 + (random 3)] call CBA_fnc_waitAndExecute; } ] } forEach _targets; } else { "popup second condition" remoteExec ["systemChat"]; { _x animateSource ["terc",0]; _x addMPEventHandler [ "MPHit", { (_this select 0) animateSource ["terc",1]; (_this select 0) removeEventHandler ["MPHit",0]; } ] } forEach _targets; }; if (_popenabled) then { "swivel first condition" remoteExec ["systemChat"]; { _x animateSource ["terc",0]; _x addMPEventHandler [ "MPHitPart", { ((_this select 0) select 0) animateSource ["terc",1]; [{ ((_this select 0) select 0) animateSource ["terc",0]; }, _this, 2 + (random 3)] call CBA_fnc_waitAndExecute; } ] } forEach _SwivelTargets; } else { "swivel second condition" remoteExec ["systemChat"]; { _x animateSource ["terc",0]; _x addMPEventHandler [ "MPHitPart", { ((_this select 0) select 0) animateSource ["terc",1]; ((_this select 0) select 0) removeEventHandler ["MPHit",0]; } ] } forEach _SwivelTargets; }; }; case "reset": { "reset called" remoteExec ["systemChat"]; { _x removeEventHandler ["MPHit",0]; _x animateSource ["terc",1]; } forEach _targets; { _x animateSource ["terc",1]; _x RemoveEventHandler ["MPHitPart",0]; } forEach _SwivelTargets; }; }; I have been sitting at this problem for over a month now, and have no idea what I am doing wrong here. Pls help.
  24. Hello guys, I am VERY new to servers but have some experience building PCs. Just wondering if I could just get an old tray server from eBay and stick an OS on it to run a dedicated server from. The server would be for co-op missions (PvE with AI) for up to around 32 players. I've been looking at an old Dell PowerEdge R710 server with 2 x Intel Xeon X5680s, 2 x 300GB SAS HDDs, 12 x 4GB DDR3 1600MHz memory cards. Would the old machine be enough or am I missing something? Any advice is greatly appreciated, thanks!
  25. # Takistan Insurgency 2019 RHS Steam link; https://steamcommunity.com/sharedfiles/filedetails/?id=1588092511 Insurgency style mission complete with all the tools you need for a full MILSIM experience. This is a unique experience, the 1st edition of the mission and is a rolling release. This mission is designed for a multiplayer environment on a dedicated server, however you can also enjoy it in single player. I hope you enjoy it as much as I do. GitHub; https://github.com/rcantec/Tak_Ins_ace_2019.takistan.git Mission includes support system for Artillary, CAS, Ammo drops and Heli extraction/transport; Drone call via radio Alpha Mission contains view distance settings, dynamic earplugs, vehicle spawns, rearm points, Zeus. Vehicle IED, suicide bombers and hidden roadside IED's are dynamic throughout the map. Side tasks are included as well as various active A/O zones to capture. Mission is a rolling release updated regularly for multiplayer performance. To play this mission ace, ace compat rhsusf3, CBA_A3; CUP Terrains-Core, Maps, Weapons, Units, Vehicles, TFAR and RHSUSAF addons are required. The mission is compatible with all addons. To begin using the Software; 1. To edit the mission move the file into the following directory ~\Steam\steamapps\common\Arma 3\MPMissions Special thanks to BangaBob, Engima, sethduda, cobra4v320, Soolie, aliascartoons, tonic & PHRONK. The Software is distributed without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. The Software (mission) is not an official addon or tool. Use of the Software (in whole or in part) is entirely at your own risk. This mission is (c) 2016-2019 RyanD rights reserved. Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0) https://creativecommons.org/licenses/by-nc-nd/4.0/
Ă—