#PLAYERRECCE - add picture

This commit is contained in:
Applevangelist 2022-10-18 10:29:34 +02:00
parent 7c724bdee7
commit f495a583eb

View File

@ -1,10 +1,12 @@
--- **Ops** - Allow a player in a helo like the Gazelle to detect, smoke, flare, lase and report ground units to others. --- **Ops** - Allow a player in a helo like the Gazelle, KA-50 to recon and lase groud targets.
-- --
-- ## Features: -- ## Features:
-- --
-- * Allow a player in the Gazelle to detect, smoke, flare, lase and report ground units to others. -- * Allow a player in a helicopter to detect, smoke, flare, lase and report ground units to others.
-- * Implements visual detection from the helo -- * Implements visual detection from the helo
-- * Implements optical detection via the Vivianne system and lasing -- * Implements optical detection via the Gazelle Vivianne system and lasing
-- * KA-50 BlackShark basic support
-- * Everyone else gets visual detection only
-- * Upload target info to a PLAYERTASKCONTROLLER Instance -- * Upload target info to a PLAYERTASKCONTROLLER Instance
-- --
-- === -- ===
@ -23,7 +25,7 @@
-- === -- ===
-- --
-- @module Ops.PlayerRecce -- @module Ops.PlayerRecce
-- @image @image Detection.JPG -- @image Ops_PlayerRecce.png
------------------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------------------
-- PLAYERRECCE -- PLAYERRECCE
@ -87,9 +89,12 @@
-- --
-- # PLAYERRECCE -- # PLAYERRECCE
-- --
-- * Allow a player in the Gazelle to detect, smoke, flare, lase and report ground units to others. -- * Allow a player in a helicopter to detect, smoke, flare, lase and report ground units to others.
-- * Implements visual detection from the helo -- * Implements visual detection from the helo
-- * Implements optical detection via the Vivianne system and lasing -- * Implements optical detection via the Gazelle Vivianne system and lasing
-- * KA-50 BlackShark basic support
-- * Everyone else gets visual detection only
-- * Upload target info to a PLAYERTASKCONTROLLER Instance
-- --
-- If you have questions or suggestions, please visit the [MOOSE Discord](https://discord.gg/AeYAkHP) channel. -- If you have questions or suggestions, please visit the [MOOSE Discord](https://discord.gg/AeYAkHP) channel.
-- --
@ -202,7 +207,7 @@ PLAYERRECCE.FlareColor = {
["ownflare"] = FLARECOLOR.Green, ["ownflare"] = FLARECOLOR.Green,
} }
--- Create and rund a new PlayerRecce instance. --- Create and run a new PlayerRecce instance.
-- @param #PLAYERRECCE self -- @param #PLAYERRECCE self
-- @param #string Name The name of this instance -- @param #string Name The name of this instance
-- @param #number Coalition, e.g. coalition.side.BLUE -- @param #number Coalition, e.g. coalition.side.BLUE
@ -1501,7 +1506,7 @@ function PLAYERRECCE:onafterRecceOnStation(From, Event, To, Client, Playername)
local text2tts = string.format("All stations, FACA %s on station at %s!",callsign, coordtext) local text2tts = string.format("All stations, FACA %s on station at %s!",callsign, coordtext)
text2tts = self:_GetTextForSpeech(text2tts) text2tts = self:_GetTextForSpeech(text2tts)
if self.debug then if self.debug then
self:I(text2.."\n"..text2tts) self:I(text2.."\n"..text2tts)
end end
if self.UseSRS then if self.UseSRS then
local grp = Client:GetGroup() local grp = Client:GetGroup()