-
Notifications
You must be signed in to change notification settings - Fork 4
/
alkeffekt.sqf
74 lines (73 loc) · 2.34 KB
/
alkeffekt.sqf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// Alcohol Effects
_art = _this select 0;
if (_art == "init") then {
INV_alkoholusesperre = 0;
INV_alkohol_usesperre = FALSE;
INV_AlkoholCounter = 0;
};
if (_art == "use") then {
_item = _this select 1;
_anzahl = _this select 2;
if (INV_alkoholusesperre == 1) exitWith {hintSilent localize "STRS_inv_item_druguse_toomany";};
if (INV_alkohol_usesperre) then {INV_alkoholusesperre = 1;};
INV_AlkoholCounter = INV_AlkoholCounter + _anzahl;
[_item, -(_anzahl)] call INV_AddInventoryItem;
_endeZeit = time + 45 + (_anzahl * 10);
_fadeInTime = 0;
_fadeOutTime = 0;
_faded = false;
// Normal Beer, Weizenbier, White-Wine
if (_item == "beer" OR _item == "smirnoff" OR _item == "wine" OR _item == "wine2") then {
while {time < _endeZeit} do {
if (not(alive player)) exitWith {};
//player setdamage ((damage player) - 0.01);
if (vehicle player == player) then {
_v1 = velocity player select 0;
_v2 = velocity player select 1;
_v3 = velocity player select 2;
_v1add = (random 4 - random 4); _v2add = (random 3 - random 3);
player setVelocity [_v1+_v1add, _v2+_v2add, _v3];
};
if (time > _fadeInTime) then {
titleCut ["","WHITE OUT",0];
_fadeOutTime = time + 1;
_fadeInTime = time + 5;
_faded = false;
};
if ((time > _fadeOutTime) and (!_faded)) then {
titleCut ["","WHITE IN",0];
_faded = true;
};
sleep 1;
};
};
if (_item == "Vodka" OR _item == "beer2" OR _item == "wiskey") then {
while {time < _endeZeit} do {
if (not(alive player)) exitWith {};
//player setdamage ((damage player) - 0.01);
if (vehicle player == player) then {
_v1 = velocity player select 0;
_v2 = velocity player select 1;
_v3 = velocity player select 2;
_v1add = (random 5 - random 5); _v2add = (random 4 - random 4);
player setVelocity [_v1+_v1add, _v2+_v2add, _v3];
};
if (time > _fadeInTime) then {
titleCut ["","WHITE OUT",0];
_fadeOutTime = time + 1;
_fadeInTime = time + 10;
_faded = false;
};
if ((time > _fadeOutTime) and (!_faded)) then {
titleCut ["","WHITE IN",0];
_faded = true;
};
sleep 1;
};
};
titleCut ["","WHITE IN",0];
sleep 10;
hintSilent localize "STRS_inv_item_druguse_ende";
INV_alkoholusesperre = 0;
INV_AlkoholCounter = INV_AlkoholCounter - _anzahl;
};