Skip to content

Instantly share code, notes, and snippets.

View zuedev's full-sized avatar
👀
Looking for more projects!

Alex zuedev

👀
Looking for more projects!
View GitHub Profile
@zuedev
zuedev / docker-compose.yml
Last active December 19, 2025 08:46 — forked from remusjones/docker-compose.yml
Plutonium patch script for the felddy/foundryvtt container.
services:
foundry:
image: felddy/foundryvtt:13
restart: unless-stopped
volumes:
- ./data:/data
ports:
- 30000:30000
environment:
- CONTAINER_CACHE=/data/container_cache
["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];
@zuedev
zuedev / a3update.py
Created June 1, 2018 10:43 — forked from marceldev89/a3update.py
Arma 3 Linux server and mod updater (workshop)
#!/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