-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a34d1e9
commit 8d6f4fa
Showing
9 changed files
with
868 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!-- markdownlint-disable MD041 --> | ||
## About | ||
|
||
Gremlin Waves is a reinforcements script for your missions. Running low on RedFor, but not ready for the fun to end? Call in reinforcements with Gremlin Waves! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<!-- markdownlint-disable MD041 --> | ||
### Setup | ||
|
||
#### Configuration | ||
|
||
```lua,editable | ||
Waves:setup({ | ||
adminPilotNames = { | ||
'Steve Jobs', | ||
'Linus Torvalds', | ||
'Bill Gates', | ||
}, | ||
waves = { | ||
['Wave 2'] = { | ||
trigger = { | ||
type = 'time', | ||
value = 12600, -- 3.5 hours | ||
}, | ||
groups = { | ||
['F-14B'] = { | ||
category = Group.Category.AIRPLANE, | ||
country = country.USA, | ||
zone = 'Reinforcement Staging', | ||
scatter = 15, | ||
orders = {}, | ||
units = { | ||
['F-14B'] = 3, | ||
}, | ||
}, | ||
['Ground A'] = { | ||
category = Group.Category.GROUND, | ||
country = country.USA, | ||
zone = 'Reinforcement Staging', | ||
scatter = 5, | ||
orders = {}, | ||
units = { | ||
['Infantry'] = 4, | ||
} | ||
}, | ||
['Ground B'] = { | ||
category = Group.Category.GROUND, | ||
country = country.USA, | ||
zone = 'Reinforcement Staging', | ||
scatter = 5, | ||
orders = {}, | ||
units = { | ||
['RPG'] = 1, | ||
['Infantry'] = 3, | ||
['JTAC'] = 1, | ||
} | ||
}, | ||
}, | ||
}, | ||
}, | ||
}) | ||
``` | ||
|
||
- `adminPilotNames` table | ||
- list of pilots who should see the menu | ||
- `waves` table | ||
- collection of reinforcement waves for this mission | ||
- wave | ||
- `trigger` table | ||
- `type` one of `time`, `event`, or `menu` | ||
- `value` a time, event id / filter, or menu item text | ||
- `groups` table | ||
- list of groups to spawn | ||
- group | ||
- `category` a member of `Groups.Category` indicating the group's category | ||
- `country` a `country` id | ||
- `zone` where to spawn the group | ||
- `scatter` how far apart, in meters, to scatter units at spawn | ||
- `orders` table | ||
- a list of [DCS AI tasks](https://www.digitalcombatsimulator.com/en/support/faq/1267/#3307680) for the group to perform | ||
- `units` table | ||
- key: the unit type to spawn | ||
- value: how many to spawn in the group |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!-- markdownlint-disable MD041 --> | ||
### Usage | ||
|
||
Gremlin Waves is really simple to use. Configure it once (see [the Setup page](./setup.md)), and it handles the rest! |
Oops, something went wrong.