Epoch/Sources/epoch_code/compile/traders/EPOCH_takeCrypto.sqf

15 lines
519 B
Plaintext
Raw Normal View History

2015-09-14 20:55:36 +00:00
private["_getCrypto","_display"];
if !(isNil "EPOCH_takeCryptoLock") exitWith {};
EPOCH_takeCryptoLock = true;
if (!isNull _this) then {
if ((typeof _this) == "Land_MPS_EPOCH") then {
_getCrypto = _this getVariable["Crypto", 0];
2015-12-23 17:38:11 +00:00
[player, Epoch_personalToken, _this] remoteExec ["EPOCH_server_takeCrypto",2];
2015-09-14 20:55:36 +00:00
_dt = [format["<t size='0.8' shadow='0' color='#99ffffff'>You found %1 Krypto.</t>", _getCrypto], 0, 1, 5, 2, 0, 1] spawn bis_fnc_dynamictext;
};
};
[] spawn{
uiSleep 2;
EPOCH_takeCryptoLock = nil;
2015-12-23 17:38:11 +00:00
};