Epoch/Sources/epoch_code/compile/traders/EPOCH_takeCrypto.sqf
vbawol 4ea5404cd5 remove phone and add crypto to player body.
now uses dynamic action menu for take option on dead player bodies.
2016-08-08 12:12:20 -05:00

15 lines
412 B
Plaintext

private["_getCrypto"];
if !(isNil "EPOCH_takeCryptoLock") exitWith {};
EPOCH_takeCryptoLock = true;
if (!isNull _this) then {
_getCrypto = _this getVariable["Crypto", 0];
if (_getCrypto > 0) then {
[player, Epoch_personalToken, _this] remoteExec ["EPOCH_server_takeCrypto",2];
[format["You found %1 Krypto.", _getCrypto], 5] call Epoch_message;
};
};
[] spawn{
uiSleep 2;
EPOCH_takeCryptoLock = nil;
};