-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCAP_Packages.lua
More file actions
71 lines (63 loc) · 3.1 KB
/
CAP_Packages.lua
File metadata and controls
71 lines (63 loc) · 3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
--[[
Script by Tobias00723 ████████
from the TGFB server ████████ ████████
Discord : https://discord.gg/hEHd4A3czx ██████ ██████
any questions? ^^ ████ ▒ ▒ █████
find me on my discord server ^^ ████ ▒▒ ▒▒▒ ███
_________________________________ ████ ▒▒▒ ▒▒▒ ███
███ ▒▒▒▒ ▒▒▒▒ ███
██ ▒▒▒▒ ▒▒▒▒▒ ███
███ ▒▒▒▒▒▒ ▒▒▒▒▒▒ ███
Script as is. ███ ▓▒▒▒▒▒▒ ▒▒▒▒▒▒▒ ███
███ ▒▒▒▒▒▒▒▒ ▓▒▒▒▒▒▒▓ ███
Enjoy The open sauce! ███ ▓▒▒▓▒▒▓▒▓ ▒▒▓▒▒▒▒▒ ███
███ ▓▒▓▓▒▓▓▒▓ ▓▓▒▓▓▓▓▓▓ ███
If used credit, is appreaciated. █ ▓▓▓▒▓ ▓▓▓▒ ▓▓▓▓ ▒▓▒▓▓ █
Happy "borrowing" :) ▓▓▓▓ ▓▓▓ ████ ▓▓▓ ▓▓▓▓
_________________________________ ▓▓▓ ▓▓ ▓▓▓▓ ▓▓ ▓▓▓
▓▓ ▓▓ ▓▓▓▓ ▓▓ ▓▓
▓▓ ▓ ▓▓▓▓ ▓ ▓▓
Copyright (c) 2025 TGFB ▓▓▓▓
All rights reserved. ▓▓▓▓
]]
do
---@meta
--classes
do
---@private
---@class CAP_packages_class
---@field last_idx number Index tracking the last package
---@field blue table A table to store the blue packages
---@field red table A table to store the red packages
end
---@type CAP_packages_class
CAP_packages = {
last_idx = 1,
blue = {},
red = {}
}
end
do
--No Docu
--Unknows functionality ads a entry to CAP_Package
---@param country country.id
---@param ... string list of unit names to add
function addPackage(country, ...) end
--No Docu
---comment
---@param country country.id
---@param name string unit name
---@return boolean
function checkCAPSync(country, name) end
--No Docu
---@param country country.id
---@param name string
---@param WPidx number
function setFlightCurrentWP(country, name, WPidx) end
--No Docu
--- simple function that will force a group to attack the other group
--- using its controller
---@param Attacker string
---@param Target string
function forceAttackGroup(Attacker, Target) end
end