This file contains hidden or 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
| _badmag = ""; | |
| _newmag = ""; | |
| { | |
| if(!isplayer _x) then { | |
| _numOfMags = {tolower _x == tolower _badmag} count magazines _x; | |
| if(_numOfMags > 0) then { | |
| _x removeMagazines _badmag; | |
| _x addMagazine [_newmag,_numOfMags]; | |
| }; |
This file contains hidden or 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
| <RepoConfigInfo> | |
| <Address>1tac.tks</Address> | |
| <Name>Team One</Name> | |
| <UserName></UserName> | |
| <PassWord></PassWord> | |
| </RepoConfigInfo> |
This file contains hidden or 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
| Pancakes ( 16 ish (hell naw)) | |
| 2 Eggs | |
| ½ teaspoon salt | |
| 1 tablespoon suger | |
| 6 dl milk | |
| almost 3 dl flour | |
| 2-3 tablespoons melted butter | |
| 1. |
This file contains hidden or 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
| <?xml version="1.0"?> | |
| <RepoData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |
| <Name>Test Name</Name> | |
| <Attributes> | |
| <item> | |
| <key> | |
| <string>BattleEye</string> | |
| </key> | |
| <value> | |
| <string>0</string> |
This file contains hidden or 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
| params["_path","_pos","_dir"]; | |
| _createdObjects = []; | |
| _objects = "isArray (_x >> 'position')" configClasses _path; | |
| _multiplyMatrixFunc = | |
| { | |
| private ["_array1", "_array2", "_result"]; | |
| _array1 = _this select 0; | |
| _array2 = _this select 1; | |
| _result = |
This file contains hidden or 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
| _prevFat = getFatigue player; | |
| while{alive player} do { | |
| _fat = getFatigue player; | |
| _dfat = _fat - _prevfat; | |
| if(_dfat < 0) then { | |
| _unit setFatigue (_fat + _dfat/2); | |
| }; | |
| _prevFat = getFatigue player; | |
| uisleep 1; | |
| }; |
This file contains hidden or 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
| #include "debug_console.hpp" | |
| conClear(); | |
| _items = []; | |
| #define TAB 9 | |
| #define BACKWARDSLASH 92 | |
| #define QUOTE 34 | |
| KK_fnc_insert = { | |
| private ["_arr", "_i", "_res"]; | |
| _arr = _this select 0; | |
| _i = _this select 2; |
This file contains hidden or 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
| params ["_pos","_radius","_side]; | |
| {_pos distance2d _x < _radius && {side _x == _side}} count allunits |
This file contains hidden or 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
| _getCluster = { | |
| private ["_clusters","_checkedMen","_distanceMaX","_cluster","_unit"]; | |
| _clusters = []; | |
| _checkedMen = []; | |
| _distanceMaX = 35; | |
| { | |
| if(!(_x in _checkedMen)) then | |
| { | |
| _cluster = [_x]; | |
| _unit = _x; |
This file contains hidden or 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
| <?xml version="1.0"?> | |
| <AddonCollection xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |
| <Name>YourName</Name> | |
| <ServerAddress>MyGameServer.com</ServerAddress> | |
| <ServerPort>1337</ServerPort> | |
| <ServerPassword>MyPassword</ServerPassword> | |
| <ForceBattleEye>False</ForceBattleEye> | |
| </AddonCollection> |