forked from igorkis-scrts/A3-Antistasi-Plus
-
Notifications
You must be signed in to change notification settings - Fork 38
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
d59511b
commit a60d21c
Showing
2 changed files
with
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,17 @@ | ||
["emergence"] call A3U_fnc_setInvaderState; | ||
["emergence"] call A3U_fnc_setInvaderState; | ||
|
||
private _attackCount = 0; | ||
private _attackAmount = 2; | ||
|
||
for "_i" from 0 to _attackAmount do { | ||
[Invaders] spawn A3A_fnc_chooseAttack; | ||
_attackCount = _attackCount + 1; | ||
|
||
// Wait 5 minutes before choosing another attack | ||
uiSleep 300; | ||
}; | ||
|
||
// waitUntil {sleep 30; _attackCount >= _attackAmount}; | ||
|
||
// private _possibleTargets = airportsX + outposts + seaports + factories + resourcesX + milbases; | ||
// _possibleTargets = _possibleTargets select {sidesX getVariable [_x,sideUnknown] == teamPlayer}; |
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