-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
4 changed files
with
55 additions
and
45 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
private ["_net","_pos"]; | ||
_net = _this select 0; | ||
_pos = position _net; | ||
_net setpos [_pos select 0, _pos select 1, (_pos select 2) -0.62]; | ||
_this spawn { | ||
_net = _this select 0; | ||
|
||
waitUntil {alive _net}; | ||
_pos = position _net; | ||
_net setpos [_pos select 0, _pos select 1, (_pos select 2) -0.62]; | ||
}; |
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,4 +1,8 @@ | ||
private ["_crater","_pos"]; | ||
_crater = _this select 0; | ||
_pos = position _crater; | ||
_crater setpos [_pos select 0, _pos select 1, (_pos select 2) -0.2]; | ||
_this spawn { | ||
|
||
_crater = _this select 0; | ||
waitUntil {alive _crater}; | ||
_pos = getpos _crater; | ||
_crater setpos [_pos select 0, _pos select 1, (_pos select 2) -0.2]; | ||
}; |