Jump to content

BoneDust

Members
  • Posts

    1533
  • Joined

  • Last visited

Everything posted by BoneDust

  1. We are opening the door again for one more F18 pilot in North America. One of the new guys will be graduating this week so we will bring in one more hornet pilot. Door is still open for F14 and Euro guys; they are more difficult to find so recruiting is ongoing. Some of the fellas are conducting work up prior to the wing's deployment.
  2. F18 recruiting is closed again. Still looking for F14 pilot and RIOs and Euro pilots cheers.
  3. Not getting any errors now, yet still not getting the airboss menu. I've been trying to get this working because its driving me nuts haha. Using a clean mission and making some changes to the script. I'll post the log and new script later. cheers
  4. I am still not able to get the AirBoss working. I changed the script and it doesn't show any errors in the log, yet the Airboss menu is still not showing in the F10 menu. I made a very basic Airboss script (two lines) and still no F10 menu. The only thing I can think of is the moose version, but I updated the dev file tonight and it said it was updated 2 hours ago.
  5. We are opening recruiting for 1 more F18 pilot. Still looking for Euro pilots
  6. The latest I grab is the dev Moose static. Is that not the latest?
  7. Yes, you are correct on the terminology bud. In SP all you need to do is set the trigger to Mission Start and nothing to trigger it and then set Radio Transmission in the third box.
  8. I tried a clean jet with no wind and had no roll.
  9. Anyone having an issue getting the server.exe to run on their server since updating to 1.6.3?
  10. I updated to 1.6.3 but can't get the server.exe to run on our server. Anyone having this issue?
  11. There are a few ways to do it depending on which theater and whether you're playing off line or on line; I thing do to bugs. I generally use this method because it works online: Create a trigger zone; Set trigger to Switched action; Set unit in zone; Set Radio transmission if you only want to hear it on a specific frequency.
  12. cheers :thumbup:
  13. How are you locking targets on the radar? What is the command called so I can map it.
  14. Triggers seem to function randomly depending on whether you are offline (single player), MP, or theater. I insert a basic trigger with "load on start" to play a radio transmission. It works offline in Caucasus but not in Nevada; or on line. In order to get it to work on line I have to set it up as a "switched condition" and "unit in zone" which is a lot more work with multiple units. Is this a bug? I know the net code has some issues right now.
  15. I've tried this and it doesn't lock tgts.
  16. What are the commands called for locking a target; like in the hornet TDC depress for example.
  17. This is the new script: -- Rescue Helo @ USS John C. Stennis. rescueheloStennis = RESCUEHELO:New("USS Stennis", "Rescue Helo Group") rescueheloStennis:SetRescueOn() -- Helo will rescue downed pilot rescueheloStennis:SetTakeoffAir() rescueheloStennis:SetModex(54) -- Helo will be spawned and respawn in air. rescueheloStennis:Start() -------------------------------- -- NOTE: The RESCUE helo object has to be a GLOBAL variable or the lua garbage collector will deallocate it for unknown reasons. -- Rescue Helo @ USS Tarawa. rescueheloCg = RESCUEHELO:New("OHP1", "Rescue Helo Group CG") rescueheloCg:SetRescueOn() -- Helo will rescue downed pilot rescueheloCg:SetTakeoffAir() rescueheloStennis:SetModex(51) -- Helo will be spawned and respawn in air. rescueheloCg:Start() -- E-2D @ USS Stennis spawning in air. awacsStennis = RECOVERYTANKER:New("USS Stennis", "E2D Group") -- Custom settings: awacsStennis:SetAWACS() awacsStennis:SetCallsign(CALLSIGN.AWACS.Wizard) awacsStennis:SetTakeoffAir() awacsStennis:SetAltitude(25000) awacsStennis:SetSpeed(275) awacsStennis:SetRadio(254) awacsStennis:SetTACAN(55, "WIZ") awacsStennis:SetRacetrackDistances(40, 20) awacsStennis:SetHomeBase("USS Stennis") awacsStennis:SetModex(526) awacsStennis:Start() ------------------------------------------------------------------- -- S3 RECOVERY TANKER SCRIPT S3Stennis = RECOVERYTANKER:New(UNIT:FindByName("USS Stennis"), "TankerS3") --carrier unit name and tanker group name S3Stennis:SetTACAN(42,"ARC")--sets TACAN to 42, defaults to Y S3Stennis:SetRadio(257) --sets radio to 254, defaults to AM S3Stennis:SetTakeoffAir() --sets take off from carrier once, then respawn in the air S3Stennis:SetAltitude(7000) --change number to whatever altitude you want S3Stennis:SetSpeed(300) -- change number to whatever speed you want the tanker to fly S3Stennis:SetRacetrackDistances(20,5) --sets the racetrack distance from the carrier in NM S3Stennis:SetHomeBase ("USS Stennis") S3Stennis:SetModex(56) S3Stennis:Start() --------------------------------------------- -- KC130 Respawn Spawn_tanker1 = SPAWN:NewWithAlias("KC130 Tanker","TEXACO") Spawn_tanker1:InitRepeatOnEngineShutDown() Spawn_tanker1:InitLimit(1,6) Spawn_tanker1:SpawnScheduled(300,0) Spawn_tanker1:InitRadioFrequency(251) Spawn_tanker1:SpawnAtAirbase( AIRBASE:FindByName( AIRBASE.Caucasus.Kobuleti ), SPAWN.Takeoff.Hot ) Spawn_tanker1:OnSpawnGroup() Spawn_tanker1:EnRouteTaskTanker() Spawn_tanker2 = SPAWN:NewWithAlias("KC135 MPRS Tanker","SHELL") Spawn_tanker2:InitRepeatOnEngineShutDown() Spawn_tanker2:InitLimit(1,6) Spawn_tanker2:SpawnScheduled(300,0) Spawn_tanker2:InitRadioFrequency(256) Spawn_tanker2:SpawnAtAirbase( AIRBASE:FindByName( AIRBASE.Caucasus.Batumi ), SPAWN.Takeoff.Hot ) Spawn_tanker2:OnSpawnGroup() Spawn_tanker2:EnRouteTaskTanker() ----------------------------------AIRBOSS-------------- local AirbossStennis=AIRBOSS:New("USS Stennis") -- Add recovery windows: -- Case I from 9 to 10 am. local window1=AirbossStennis:AddRecoveryWindow( "9:00", "10:00", 1, nil, true, 25) -- Case II with +15 degrees holding offset from 15:00 for 60 min. local window2=AirbossStennis:AddRecoveryWindow("15:00", "16:00", 2, 15, true, 23) -- Case III with +30 degrees holding offset from 2100 to 2200. local window3=AirbossStennis:AddRecoveryWindow("21:00", "22:00", 3, 30, true, 21) -- Set folder of airboss sound files within miz file. AirbossStennis:SetSoundfilesFolder("Airboss Soundfiles/") -- Single carrier menu optimization. AirbossStennis:SetMenuSingleCarrier() -- Skipper menu. AirbossStennis:SetMenuRecovery(30, 20, false) -- Remove landed AI planes from flight deck. AirbossStennis:SetDespawnOnEngineShutdown() -- Load all saved player grades from your "Saved Games\DCS" folder (if lfs was desanitized). AirbossStennis:Load() -- Automatically save player results to your "Saved Games\DCS" folder each time a player get a final grade from the LSO. AirbossStennis:SetAutoSave() -- Enable trap sheet. AirbossStennis:SetTrapSheet() -- Start airboss class. AirbossStennis:Start() --- Function called when recovery tanker is started. function tanker:OnAfterStart(From,Event,To) -- Set recovery tanker. AirbossStennis:SetRecoveryTanker(tanker) -- Use tanker as radio relay unit for LSO transmissions. AirbossStennis:SetRadioRelayLSO(self:GetUnitName()) end --- Function called when AWACS is started. function awacs:OnAfterStart(From,Event,To) -- Set AWACS. AirbossStennis:SetRecoveryTanker(tanker) end --- Function called when rescue helo is started. function rescuehelo:OnAfterStart(From,Event,To) -- Use rescue helo as radio relay for Marshal. AirbossStennis:SetRadioRelayMarshal(self:GetUnitName()) end --- Function called when a player gets graded by the LSO. function AirbossStennis:OnAfterLSOGrade(From, Event, To, playerData, grade) local PlayerData=playerData --Ops.Airboss#AIRBOSS.PlayerData local Grade=grade --Ops.Airboss#AIRBOSS.LSOgrade ---------------------------------------- --- Interface your Discord bot here! --- ---------------------------------------- local score=tonumber(Grade.points) local name=tostring(PlayerData.name) -- Report LSO grade to dcs.log file. env.info(string.format("Player %s scored %.1f", name, score)) end This is the log errors: 2019-10-05 23:54:18.678 INFO SCRIPTING: 92940( -1)/I: RESCUEHELO00394.function(RESCUEHELO USS Stennis_Rescue Helo Group_01 | Starting Rescue Helo Formation v1.0.5 for carrier unit USS Stennis of type Stennis.) 2019-10-05 23:54:18.678 INFO SCRIPTING: Error in SCHEDULER function:[string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00001EAF.lua"]:92955: attempt to call method 'InitModex' (a nil value) 2019-10-05 23:54:18.678 INFO SCRIPTING: stack traceback: [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00006E83.lua"]:20598: in function 'InitModex' [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00001EAF.lua"]:92955: in function <[string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00001EAF.lua"]:92936> (tail call): ? [C]: in function 'xpcall' [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00006E83.lua"]:20606: in function '_call_handler' [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00006E83.lua"]:20702: in function <[string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00006E83.lua"]:20612> (tail call): ? [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis000040BF.lua"]:11: in main chunk 2019-10-05 23:54:18.679 INFO SCRIPTING: 92940( -1)/I: RESCUEHELO00399.function(RESCUEHELO OHP1_Rescue Helo Group CG_02 | Starting Rescue Helo Formation v1.0.5 for carrier unit OHP1 of type PERRY.) 2019-10-05 23:54:18.679 INFO SCRIPTING: Error in SCHEDULER function:[string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00001EAF.lua"]:92955: attempt to call method 'InitModex' (a nil value) 2019-10-05 23:54:18.679 INFO SCRIPTING: stack traceback: [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00006E83.lua"]:20598: in function 'InitModex' [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00001EAF.lua"]:92955: in function <[string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00001EAF.lua"]:92936> (tail call): ? [C]: in function 'xpcall' [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00006E83.lua"]:20606: in function '_call_handler' [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00006E83.lua"]:20702: in function <[string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00006E83.lua"]:20612> (tail call): ? [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis000040BF.lua"]:20: in main chunk 2019-10-05 23:54:18.679 INFO SCRIPTING: 91405( -1)/I: RECOVERYTANKER00404.function(Starting Recovery Tanker v1.0.6 for carrier unit USS Stennis of type Stennis for tanker group E2D Group.) 2019-10-05 23:54:18.679 INFO SCRIPTING: Error in SCHEDULER function:[string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00001EAF.lua"]:91418: attempt to call method 'InitRadioCommsOnOff' (a nil value) 2019-10-05 23:54:18.679 INFO SCRIPTING: stack traceback: [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00006E83.lua"]:20598: in function 'InitRadioCommsOnOff' [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00001EAF.lua"]:91418: in function <[string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00001EAF.lua"]:91402> (tail call): ? [C]: in function 'xpcall' [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00006E83.lua"]:20606: in function '_call_handler' [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00006E83.lua"]:20702: in function <[string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00006E83.lua"]:20612> (tail call): ? [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis000040BF.lua"]:37: in main chunk 2019-10-05 23:54:18.679 INFO SCRIPTING: 91405( -1)/I: RECOVERYTANKER00408.function(Starting Recovery Tanker v1.0.6 for carrier unit USS Stennis of type Stennis for tanker group TankerS3.) 2019-10-05 23:54:18.679 INFO SCRIPTING: Error in SCHEDULER function:[string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00001EAF.lua"]:91418: attempt to call method 'InitRadioCommsOnOff' (a nil value) 2019-10-05 23:54:18.679 INFO SCRIPTING: stack traceback: [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00006E83.lua"]:20598: in function 'InitRadioCommsOnOff' [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00001EAF.lua"]:91418: in function <[string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00001EAF.lua"]:91402> (tail call): ? [C]: in function 'xpcall' [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00006E83.lua"]:20606: in function '_call_handler' [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00006E83.lua"]:20702: in function <[string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis00006E83.lua"]:20612> (tail call): ? [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis000040BF.lua"]:51: in main chunk 2019-10-05 23:54:18.680 ERROR DCS: Mission script error: : [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis000040BF.lua"]:60: attempt to call method 'InitRadioFrequency' (a nil value) stack traceback: [C]: in function 'InitRadioFrequency' [string "C:\Users\dwigh\AppData\Local\Temp\DCS.openbeta\/~mis000040BF.lua"]:60: in main chunk
  18. Yes, we've seen this and the canopy open in mid flight.
×
×
  • Create New...