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
| // @file Name: fn_createCrewUAV.sqf | |
| // @file Author: AgentRev | |
| params [["_uav",objNull,[objNull]], ["_side",sideUnknown,[sideUnknown]]]; | |
| if (!unitIsUAV _uav) exitWith { grpNull }; | |
| private _vehCfg = configFile >> "CfgVehicles" >> typeOf _uav; | |
| private _crewCount = {round getNumber (_x >> "dontCreateAI") < 1 && | |
| ((_x == _vehCfg && {round getNumber (_x >> "hasDriver") > 0}) || |
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
| [Default] | |
| Version = 1 | |
| ;; Used incase there is ever a breaking change, or to inform user in log about a new feature. | |
| Strip Chars = /\|;{}<> | |
| ;; List of characters to strip out | |
| Strip Chars Mode = 0 | |
| ;; 0 = Strip Bad Chars, 1 = Strip + Log Bad Chars, 2 = Return Error & Log Bad Chars | |
| ;; Note: Logging on works when sending data to database. |
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
| #!/bin/bash | |
| for j in `seq 1 250`; | |
| do | |
| roxterm --tab -e "/bin/bash -c 'ping6 -w 15 -f 2001:6a8:28c0:2017::FF:00:FF'" | |
| done |
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
| rem KILL WINDOWS UPDATE REBOOT WITH FIRE!!! | |
| SET mwuo=Microsoft\Windows\UpdateOrchestrator | |
| schtasks /End /TN "\%mwuo%\Reboot" | |
| schtasks /End /TN "\%mwuo%\USO_UxBroker_Display" | |
| schtasks /End /TN "\%mwuo%\USO_UxBroker_ReadyToReboot" | |
| schtasks /Change /TN "\%mwuo%\Reboot" /DISABLE | |
| schtasks /Change /TN "\%mwuo%\USO_UxBroker_Display" /DISABLE | |
| schtasks /Change /TN "\%mwuo%\USO_UxBroker_ReadyToReboot" /DISABLE | |
| icacls "%WINDIR%\System32\Tasks\%mwuo%\Reboot" /deny "*S-1-1-0:F" | |
| icacls "%WINDIR%\System32\Tasks\%mwuo%\USO_UxBroker_Display" /deny "*S-1-1-0:F" |
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
| -- MySQL Script generated by MySQL Workbench | |
| -- 06/26/16 19:07:56 | |
| -- Model: A3Wasteland DB Version: 2.05 | |
| -- MySQL Workbench Forward Engineering | |
| SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; | |
| SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; | |
| SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES'; | |
| -- ----------------------------------------------------- |
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
| // ****************************************************************************************** | |
| // * This project is licensed under the GNU Affero GPL v3. Copyright © 2014 A3Wasteland.com * | |
| // ****************************************************************************************** | |
| /*********************************************************# | |
| # @@ScriptName: storeConfig.sqf | |
| # @@Author: His_Shadow, AgentRev | |
| # @@Create Date: 2013-09-16 20:40:58 | |
| #*********************************************************/ | |
| // █████ FOR USE WITH APEX SNEAK PREVIEW BRANCH ONLY! █████ |
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
| // @file Version: 2.0 | |
| // @file Name: HvT.sqf | |
| // @file Author: Cael817, CRE4MPIE, LouD, AgentRev | |
| #define HVT_AMOUNT 50000 // how much a player needs to be carrying to become a HvT | |
| #define HINT_DELAY 60 // number of seconds between each HvT reminder hint | |
| #define MARKER_REFRESH 30 // number of seconds between each HvT marker refresh | |
| if (isServer) then | |
| { |
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
| # reorderItemsEdenSQM v1.02 | |
| # Made by AgentRev | |
| # Recalculates "Item" and "id" numbers from top to bottom in unbinarized SQM files produced by Arma 3's Eden editor | |
| # For use with "Python Script" plugin (http://npppythonscript.sourceforge.net/) and Notepad++ v6.5.1 & up only | |
| # In order for this script to work: | |
| # - the SQM file must be indented with tabs the same way as originally produced by Eden | |
| # - there must be no spaces on either side of equal signs (=) and semicolons (;) in the SQM file | |
| # - you must click once anywhere inside the targeted SQM right before running the script, for it to run on the correct file |
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" encoding="UTF-16"?> | |
| <Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task"> | |
| <RegistrationInfo> | |
| <URI>\DisableUpdateWake</URI> | |
| </RegistrationInfo> | |
| <Triggers> | |
| <CalendarTrigger> | |
| <Repetition> | |
| <Interval>PT1H</Interval> | |
| <Duration>P1D</Duration> |
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
| // ****************************************************************************************** | |
| // * This project is licensed under the GNU Affero GPL v3. Copyright © 2014 A3Wasteland.com * | |
| // ****************************************************************************************** | |
| // @file Name: territoryPayroll.sqf | |
| // @file Author: AgentRev | |
| if (!isServer) exitWith {}; | |
| _timeInterval = ["A3W_payrollInterval", 30*60] call getPublicVar; | |
| _moneyAmount = ["A3W_payrollAmount", 100] call getPublicVar; |