mirror of
https://github.com/spencershepard/RotorOps.git
synced 2025-11-10 15:45:30 +00:00
-adds checkbox for adding server scripts -server script adds perk to points conversion -drone invisibility #needs_testing
76 lines
2.0 KiB
Lua
76 lines
2.0 KiB
Lua
RotorOpsServer = {}
|
|
RotorOpsServer.version = "0.4"
|
|
trigger.action.outText("ROTOROPS SERVER SCRIPT: "..RotorOpsServer.version, 5)
|
|
env.info("ROTOROPS SERVER SCRIPT STARTED: "..RotorOpsServer.version)
|
|
|
|
--Mission Ending
|
|
RotorOpsServer.time_to_end = 900
|
|
|
|
function RotorOpsServer.endMission(secs)
|
|
if secs then
|
|
RotorOpsServer.time_to_end = secs
|
|
end
|
|
|
|
local function countdown()
|
|
local minutes = math.floor(RotorOpsServer.time_to_end / 60)
|
|
local seconds = RotorOpsServer.time_to_end - (minutes * 60) --handle as string
|
|
if seconds < 10 then
|
|
seconds = "0" .. seconds
|
|
end
|
|
trigger.action.outText("RTB now. Mission will end in "..minutes..":"..seconds, 2, true)
|
|
RotorOpsServer.time_to_end = RotorOpsServer.time_to_end - 1
|
|
if RotorOpsServer.time_to_end <= 0 then
|
|
trigger.action.setUserFlag('mission_end', 2)
|
|
else
|
|
timer.scheduleFunction(countdown, {}, timer.getTime() + 1)
|
|
end
|
|
end
|
|
countdown()
|
|
end
|
|
|
|
function RotorOpsServer.convertPointsToSpawnCredits(playerName, points)
|
|
if dcsbot then
|
|
env.info("RotorOpsServer: Converting "..points.." points to spawn credits for "..playerName)
|
|
dcsbot.addUserPoints(playerName, points)
|
|
return true
|
|
end
|
|
return false
|
|
end
|
|
|
|
function RotorOpsServer.addPerks()
|
|
env.info("RotorOpsServer: Adding perks to RotorOpsPerks.")
|
|
---- PERKS: Convert points to spawn credits ----
|
|
|
|
RotorOpsPerks.perks["spawnCredits"] = {
|
|
perk_name='spawnCredits',
|
|
display_name='Buy 10 Spawn Credits',
|
|
cost=50,
|
|
cooldown=0,
|
|
max_per_player=1000,
|
|
max_per_mission=1000,
|
|
at_mark=false,
|
|
at_position=true,
|
|
enabled=true,
|
|
sides={0,1,2},
|
|
}
|
|
|
|
RotorOpsPerks.perks.spawnCredits["action_function"] = function(args)
|
|
local playerName = Unit.getByName(args.player_unit_name):getPlayerName()
|
|
return RotorOpsServer.convertPointsToSpawnCredits(playerName, 10)
|
|
end
|
|
|
|
---- End of Spawn Credits Perk ----
|
|
|
|
end
|
|
|
|
if dcsbot then
|
|
RotorOpsServer.addPerks()
|
|
else
|
|
env.warning("RotorOpsServer: DCSBot not found. Perks not added.")
|
|
end
|
|
|
|
|
|
|
|
|
|
|