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
import socket | |
import time | |
from datetime import datetime | |
import paho.mqtt.client as mqtt_client | |
# Door station configurations | |
DOOR_STATIONS = { | |
"10.10.2.28": { | |
"name": "Haupteingang", | |
"topic": "frigate/Haupteingang/klingeln/state" |
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
From fedae0a333f35db93db079e0e5d0d85c9a36dda8 Mon Sep 17 00:00:00 2001 | |
From: wiking-aj | |
Date: Sun, 14 May 2017 22:37:20 +0200 | |
Subject: [PATCH] Add DLC Jets to Store - Start Price $30k for everything- | |
price balancing later | |
--- | |
storeConfig.sqf | 9 ++++++++- | |
1 file changed, 8 insertions(+), 1 deletion(-) |
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
From d3383e110c5ef601024bd17f6f163731bce1918e Mon Sep 17 00:00:00 2001 | |
From: wiking-aj <[email protected]> | |
Date: Fri, 22 Apr 2016 14:38:52 +0200 | |
Subject: [PATCH] Keyword was renamed | |
--- | |
client/functions/groupMarkers.sqf | 4 ++-- | |
1 file changed, 2 insertions(+), 2 deletions(-) | |
diff --git a/client/functions/groupMarkers.sqf b/client/functions/groupMarkers.sqf |
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
// @file Name: A3Wasteland_settings\zeus.sqf | |
// Zeus (Z key) | |
/******************************************************* | |
Player UID examples : | |
"1234567887654321", // Meatwad | |
"8765432112345678", // Master Shake | |
"1234876543211234", // Frylock |
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
// @file Name: cameraChecks.sqf | |
// @file Author: AgentRev, Wiking | |
if (!hasInterface) exitWith {}; | |
private ["_fpOnFoot", "_forceFP", "_forceFPveh"]; | |
_fpOnFoot = (difficultyEnabled "3rdPersonView" && ["A3W_firstPersonCamOnFoot"] call isConfigOn); | |
_fpNotDriver = (difficultyEnabled "3rdPersonView" && ["A3W_firstPersonCamNotDriver"] call isConfigOn); | |
while {true} do |
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
if (!isDedicated) then { //preventing start on server | |
if (difficultyEnabled "3rdPersonView") then | |
{ | |
while {true} do { | |
waitUntil {cameraView == "EXTERNAL" || cameraView == "GROUP"}; | |
_timeStamp = ["combatTimestamp", -1] call _getPublicVar; | |
_abortDelay = ["A3W_combatAbortDelay", 0] call _getPublicVar; |
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
// @file Version: 1.1 | |
// @file Name: fn_resupplyTruck.sqf | |
// @file Author: Wiking, AgentRev | |
// @file Created: 13/07/2014 21:58 | |
#define RESUPPLY_TRUCK_DISTANCE 20 | |
#define REARM_TIME_SLICE 10 | |
#define REPAIR_TIME_SLICE 1 | |
#define REFUEL_TIME_SLICE 1 | |
#define PRICE_RELATIONSHIP 4 |
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
$VerbosePreference = "SilentlyContinue" | |
$ErrorActionPreference= 'silentlycontinue' | |
Function Get-IniContent | |
{ | |
<# | |
.Synopsis | |
Gets the content of an INI file | |
.Description |
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
Function Get-IniContent | |
{ | |
<# | |
.Synopsis | |
Gets the content of an INI file | |
.Description | |
Gets the content of an INI file and returns it as a hashtable | |
.Notes |
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
// @file Version: 1.0 | |
// @file Name: loadingscreen.hpp | |
// @file Author: wiking.at | |
// www.armajunkies.de | |
// Definition of custom loadingscreen display. | |
titles[] = {"loadingscreen"}; | |
class loadingscreen { | |
idd = -1; |
NewerOlder