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
| services: | |
| foundry: | |
| image: felddy/foundryvtt:13 | |
| restart: unless-stopped | |
| volumes: | |
| - ./data:/data | |
| ports: | |
| - 30000:30000 | |
| environment: | |
| - CONTAINER_CACHE=/data/container_cache |
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
| ["dedmen"] call { | |
| missionNamespace setVariable [_this select 0,player, true]; | |
| [0, { | |
| params ["_myName"]; | |
| private _curVarName = _myName+"Cur"; | |
| if (!isNil _curVarName) then { | |
| [-1, compile format["if (player == %1) then {%1 sideChat 'deleting Curator';}", _myName]] call CBA_fnc_globalExecute; | |
| deleteVehicle (missionNamespace getVariable [_curVarName, objNull]); | |
| missionNamespace setVariable [_curVarName, nil, true]; |
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
| #!/usr/bin/python3 | |
| # MIT License | |
| # | |
| # Copyright (c) 2017 Marcel de Vries | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal | |
| # in the Software without restriction, including without limitation the rights | |
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |