-
Posts
727 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by BlackLibrary
-
MB-339A/PAN by Frecce Tricolori Virtuali
BlackLibrary replied to Jagg's topic in Utility/Program Mods for DCS World
i made a DCS-BIOS file for this nice Plane. download here: GitHUB DCS_BIOS -
any news about this thing? looks cool for the nttr trainings map
-
Nice Work!!! is it posible to set the plane number? like 703 (would be nice for the rescue helo, too)
-
Debolestis Shapeways shop
BlackLibrary replied to debolestis's topic in PC Hardware and Related Software
I have a request for the logitech Switch panel. https://images-na.ssl-images-amazon.com/images/I/417uhvQxyYL._SX355_.jpg It have a gear lever but not Good looking. It would nice to have a Tomcat style one and a hook lever. Meassurements Can be done -
hi i got the same problem as MagnumHB. (force sensor) the X axis (left right) are not controllable anymore. with win calibraton or TH Calibrations tool no changes. its strange last week it works like a charm
-
DCS-BIOS F/A-18C library. Get it here!
BlackLibrary replied to Bullant's topic in Controller Questions and Bugs
In our rep is your version with additions for readouts of the Radios and one change for the sby alt knob because he only increase. -
DCSFlightpanels (DCSFP) thread. Saitek Pro Flight Panels & DCS
BlackLibrary replied to a topic in DCS Modding
i would say the from my sig link. here i merged all. but i have never tested it, because i didnt own the hornet -
DCSFlightpanels (DCSFP) thread. Saitek Pro Flight Panels & DCS
BlackLibrary replied to a topic in DCS Modding
the BIOS File form the Flightpanbel DCS-BIOS is based on the last verson from andrewW. https://forums.eagle.ru/showpost.php?p=3512225&postcount=1 i added to these the additon from CaptnZeen and changed the standby Presure altimeter, because he only increase but not decrease. if you not using this version. please try it. link in my signature -
Topgun
-
DCSFlightpanels (DCSFP) thread. Saitek Pro Flight Panels & DCS
BlackLibrary replied to a topic in DCS Modding
i found some files for the Mig15bis. i would do a DCS BIOS File for it. but i dont get all the files from the cockpit scripts (mainpanel_init is missing), and i need an tester for the finished file. because i dont own the MIG15 -
1. maybe, but not needed 2. "yes yes please!!!! " for the Warthog Base
-
DCSFlightpanels (DCSFP) thread. Saitek Pro Flight Panels & DCS
BlackLibrary replied to a topic in DCS Modding
i have made a fix in the Bios file, it will be uploaded and released this week -
i have wirten the script now every thing works like a charm exept the radio transmission. in a fc3 plane i should hear the transmission without tur to the frequency?! SCHEDULER:New( nil, function() HeloSET = SET_GROUP:New() :FilterPrefixes("/") :FilterStart() CVW17HeloZone = ZONE:New("Helo Enter") CVW17Ship = UNIT:FindByName("USS Lake Erie") CVW17ShipRadio = CVW17Ship:GetRadio() CVW17ShipCoordinate = CVW17Ship:GetCoordinate() USMCHeloZone = ZONE:New("Helo Enter #001") USMCShip = UNIT:FindByName("USS Gary") USMCShipRadio = USMCShip:GetRadio() USMCShipCoordinate = USMCShip:GetCoordinate() HeloSET:ForEachGroupCompletelyInZone(CVW17HeloZone, function(HeloSET) MESSAGE:New("USS Lake Erie: 'You are clear to Land!'",10):ToGroup(HeloSET) CVW17ShipRadio:NewUnitTransmission("USSOliverPerryHeloLand.ogg", 277, radio.modulation.AM):Broadcast() CVW17ShipCoordinate:FlareRed() end ) HeloSET:ForEachGroupCompletelyInZone(USMCHeloZone, function(HeloSET) MESSAGE:New("USS Gary: 'You are clear to Land!'",10):ToGroup(HeloSET) USMCShipRadio:NewUnitTransmission("USSOliverPerryHeloLand.ogg", 231, radio.modulation.AM):Broadcast() USMCShipCoordinate:FlareRed() end ) end, {}, 0, 10 ) trigger.action.outText("Airboss: 'Helo incoming...'", 10) env.info('Helo Script LOAD SUCCESSFUL... ok') can anybody look over my code maybe i made a mistake. this was my guide: https://github.com/FlightControl-Master/MOOSE_MISSIONS/blob/master/RAD%20-%20Radio/RAD-002%20-%20Transmission%20Tips%20and%20Tricks/RAD-002%20-%20Transmission%20Tips%20and%20Tricks.lua
-
DCSFlightpanels (DCSFP) thread. Saitek Pro Flight Panels & DCS
BlackLibrary replied to a topic in DCS Modding
@virus can you please test the attached lua? i hope i solve the problem FA-18C_hornet.lua -
WARNING EDCORE: Source C:\Users\***\Saved Games\DCS.openbeta\Mods/tech/WASP/Shapes is already mounted to the same mount /models/. und ähnliche kommen von den mods. in den lua files werden einige "ordner doppelt geladen". hatte ich auch habe alle luas dementsprechend umgearbeitet. ich habe alles in die entry gepackt und aus den anderen gelöscht, was so aussah: mount_vfs_model_path (current_mod_path.."/Shapes NATO") mount_vfs_liveries_path (current_mod_path.."/Liveries") mount_vfs_texture_path (current_mod_path.."/Textures/VPCtextures") hab dir mal dein log aussortiert wo ich der meinung bin, die fehler kann man beheben. rest der fehler sollten programm technisch vom spiel sein. die die noch da sind sind von den mods und eigendlich nix großartiges dcs.txt
-
Hi thank you this was the point im missing: HeloSET:ForEachGroupCompletelyInZone(MessageZone, function(HeloSET) if i want A radiot transmisson instead of usersound. i have to use this?: CVW17 = UNIT:FindByName("USS Lake Erie") CVW17Radio = USS Lake Erie:GetRadio() CVW17Radio:SetFileName("USSOliverPerryHeloLand.ogg") CVW17Radio:SetFrequency(127.5) CVW17Radio:SetModulation(radio.modulation.AM) CVW17Radio:SetLoop(false) and in the if CVW17Radio:Broadcast() i am right? thanks for the help
-
any news on the persian gulf pubs? looking forward to use these
-
:thumbup: hm i would take one. :)
-
is it possible to send a message only to the group that enter the zone? in my case: i have 4 helos, if one the enter a zone from a ship, the one (who entered) should get a message, the ship transmits a radio transmission (to all) and the ship should shot a flare. in my knowlege i must do it for every helo the same function. so is there a way to wrote one function? like: helo(x)=helo entered the zone ( can be /helo1 or /helo2 ...) if helo(X) in zone do Message: (hi):to Helo(X) radiotransmission shoot flare
-
DCSFlightpanels (DCSFP) thread. Saitek Pro Flight Panels & DCS
BlackLibrary replied to a topic in DCS Modding
hm than i musst look again. i dont own the hornet, so i cant test it ingame. i will check gain the entry. edit: is this knob with the problem? (if not please show me the one.) -
DCSFlightpanels (DCSFP) thread. Saitek Pro Flight Panels & DCS
BlackLibrary replied to a topic in DCS Modding
ok in dcs bios it defined as potentiometer and it works (i can test only in Modelviewer) i think the bios file it good. maybe in the Panel program, but here must artur or capt zeen look. i dont have the knowlege yet ;) -
DCSFlightpanels (DCSFP) thread. Saitek Pro Flight Panels & DCS
BlackLibrary replied to a topic in DCS Modding
@virus when you can say me which switch,Knob,.. it is for the pressure step increase decrease. i will have a look in the bios file -
Is it possible to Export the Displays to an other TFT?