-
Posts
32 -
Joined
-
Last visited
-
The Eagles Nest - Operation Bear Trap (Kola) Hello everyone! Welcome to Operation Bear Trap and our server hosting the Kola Map. Server Information Discord - https://discord.gg/ySUBK3zgyp Server Name - The Eagles Nest - Operation Bear Trap SRS - Autoconnect Current version - 0.1 Website Stat Tracking - https://theeaglesnest.uk/leaderboard/ What is the Mission About Liberation of Kola! War has broken out on the Kola peninsula! Red forces have taken parts of Norway and surrounded Finland. As red or blue forces you must weaken the defences of the opposing faction and destroy the main warehouse deep in enemy territory. Server is a work in progress and will include features such as base build logistics and levelling along with recon deep in enemy territory. Side objectives present in both red and blue zones for Air to Ground operations with map data in the F10 showing approximate locations. Air to air combat available with support and all AI aircraft respect the relevant cold war style borders. Cross them and face immediate attack! Some of the mission features below AI Mission Tasking Manager with SRS tasking MEDEVAC/CASEVAC zones for CSAR support Persistent and Dynamic World Google TTS Support AI AWACS Discord/Website Mission and Stat Tracking Cargo and unit building from bases available Persistent CTLD Dynamic side mission loading Slots available for both red and blue Many thanks to MOOSE and other contributors to the project.
-
- 2
-
-
Best eye tracker for DCS?
eaglefirefly replied to maverick90's topic in PC Hardware and Related Software
Started using Beam Eye Tracker after using all of the other solutions and my opinion is that it is better value for money than trackir and tobii. So if you have a spare webcam lying around? Worth it imo -
Beam Eye Tracker - affordable head tracking?
eaglefirefly replied to Beirut's topic in PC Hardware and Related Software
Just got this yesterday and I have to say. It is impressive -
Would this be a possibility instead/alongside of the GUI installer for dedicated servers only? Or is this already a thing? Even if the .exe can be used with cmds I presume in the form of .exe --cmdline or something. If this is possible ourselves with others included would be able to use instanced based cmd line server administration. Thanks.
-
The Eagles Nest - Operation Iron Storm (Caucasus)
eaglefirefly replied to eaglefirefly's topic in Multiplayer
Massive two weeks for us! Topping concurrent player counts of 25 over the weekend and lag free! While it may seem small to some it is huge for us! Lots more being added. Now added Airboss system from Moose, additional capture points and tankers now move to a late game phase when certain airbases are captured. Recent patch notes :- Changed ZU Emplacement for FireCans as Emplacements are a pain. Under review Added more outpost restart spawns to the server, these now total 18 and refresh location each restart so there is always something to do Moved SAM locations in the north to try and avoid overlapping Added STATE INTENT to the mission menu. Only Sukhumi is added but this is to broadcast airfield intent for those that don't use SRS. (small surprise coming for this in the coming updates). More airfields to be added soon. Added Batallion units for the frontlines. I am still testing this and the high client count is awesome, persistant numbers needed so we know how far we can go with this! -
Some servers have different functionality and uses for discord. Like ours has stat tracking and mission information etc. Also the mission speaks and updates to the chat channels when things happen inside the mission
-
The Eagles Nest - Operation Iron Storm (Caucasus)
eaglefirefly replied to eaglefirefly's topic in Multiplayer
Updated with new FARP's and website stats leaderboard. Also dynamic missions available in the F10 menu! -
The Eagles Nest - Operation Iron Storm (Caucasus) Hello everyone! Welcome to Operation Iron Storm and our server hosting the Caucasus Map. Server Information Discord - https://discord.gg/ySUBK3zgyp Server Name - The Eagles Nest - Operation Iron Storm SRS - Autoconnect Website Stat Tracking - https://theeaglesnest.uk/leaderboard/ Server Guide (WIP) - https://theeaglesnest.uk/dcs-world-iron-storm-guide/ What is the Mission About Liberation of Caucasus! Liberate the airbases moving north and capture the Krymsk stronghold locations to complete the mission. Various dynamic side missions available to turn the tide of battle allowing your forces to increase resources to increase the coalitions strength. Capture key locations to allow you to deploy ground forces from their locations (under development) Some of the mission features below Persistent and Dynamic World Overlord SRS Bot Discord/Website Mission and Stat Tracking Cargo and unit building from bases available Persistent CTLD Dynamic mission loading where the enemy can push back Carrier Airboss System with discord scores and trap sheets
-
The Eagles Nest - Operation Wicker Hill (Falklands/South Atlantic) Hello everyone! Welcome to Operation Wicker Hill and our server hosting the South Atlantic Map. Server Information Discord - https://discord.gg/ySUBK3zgyp Server Name - The Eagles Nest - Operation Wicker Hill SRS - Autoconnect What is the Mission About The mission is based on a liberation style mechanic with side missions to go with it. Liberate the bases on the Falkland Islands and also participate in the battle on the other side of the map. Earn credits to eventually deploy and request assets to help you complete the mission. Clear enemy forces from Mount Kent and conduct MEDEVACS to secure Blue assets. Fight back and regain control of Goose Green and much more! Some of the mission features below Persistent and Dynamic World Overlord SRS Bot Discord Mission and Stat Tracking Cargo and unit building from bases available Persistent CTLD Dynamic mission loading where the enemy can push back Carrier Airboss System with discord scores and trap sheets
-
The Eagles Nest - Desert Wind (Persian Gulf)
eaglefirefly replied to eaglefirefly's topic in Multiplayer
Updated link and new map update today. Visual RED and BLUE zones including auto capture. Enjoy! -
Warehouse control functions
eaglefirefly replied to BIGNEWY's topic in Scripting Tips, Tricks & Issues
Something like this would work, maybe have a look at MOOSE they have added the api to their codebase yesterday as a helper if truckenterzone == true then do the add fuel thing end -
Warehouse control functions
eaglefirefly replied to BIGNEWY's topic in Scripting Tips, Tricks & Issues
I believe so! I am testing it today for the Tarawa you basically use the name of what you want to access the resources of. That I presume includes ships. But I will edit this comment with my findings later. EDIT - The answer is yes all you need to do is enter the unit name of the warehouse you want to access. I will add the relevant part of the cope snippet I used below BASE:E("Fuel check running.....") local _tarawaairbase = Airbase.getByName('BLUE TARAWA') local _tarawawarehouse = _tarawaairbase:getWarehouse() local _tarawainventory = _tarawawarehouse:getInventory() local function dump(o) if type(o) == 'table' then local s = '{\n' for k,v in pairs(o) do if type(k) ~= 'number' then k = '"'..k..'"' end s = s .. '['..k..'] = ' .. dump(v) .. ',\n' end return s .. '}\n' else return tostring(o) end end if first_load == true then _deltawarehouse:setLiquidAmount(0,FuelArray[0]) local _romediesel = dump(_romeinventory['liquids'][3]) local _tarawajet = dump(_tarawainventory['liquids'][0]) BASE:E(_tarawajet) Result = BASE00000.function(100000) -
Warehouse control functions
eaglefirefly replied to BIGNEWY's topic in Scripting Tips, Tricks & Issues
If it helps anyone this is the table in the liquids part of the warehouse and what they are if anyone wants to add it to some docs (if not already) -- [1] = 4999000 -- AV GAS -- [2] = 4998000 -- WATER METH -- [3] = 4997000 -- DIESEL FUEL -- [0] = 5000000 --JET FUEL -
Warehouse control functions
eaglefirefly replied to BIGNEWY's topic in Scripting Tips, Tricks & Issues
This is amazing! Thank you team! I was just finishing up some code that could hook into something like this so now lets see if it works!