mirror of
https://github.com/Bjanski/ExAd.git
synced 2024-08-30 16:52:14 +00:00
commit
dd0ffa6194
10
CHANGELOG.md
10
CHANGELOG.md
@ -1,5 +1,15 @@
|
||||
#<img src="logo.png" alt="ExAd" width="200" />
|
||||
|
||||
## Changelog:
|
||||
### 160505 01:40 . v0.6.1
|
||||
#### Fixed
|
||||
* Display null when entering Virtual Garage from Flag (Virtual Garage)
|
||||
* Sound error for grinding, tmp fix, sound will work on Chernarus (Grinding)
|
||||
|
||||
#### Added
|
||||
|
||||
#### Deleted
|
||||
|
||||
## Changelog:
|
||||
### 160502 23:15 . v0.6.0
|
||||
#### Fixed
|
||||
|
@ -1,11 +1,12 @@
|
||||
#VirtualGarage
|
||||
## Changelog:
|
||||
|
||||
### 160505 01:40 . v0.6.1
|
||||
#### Fixed
|
||||
* Sound error for grinding, tmp fix, sound will work on Chernarus
|
||||
|
||||
### 160502 23:15 . v0.6.0
|
||||
#### Fixed
|
||||
|
||||
#### Added
|
||||
* Grinding introduced
|
||||
* Grinding battleye scripts
|
||||
|
||||
#### Deleted
|
||||
|
@ -22,7 +22,9 @@ if(vehicle player != player)exitWith{false};
|
||||
ExAd_GRINDING_OBJECT = _this select 0;
|
||||
ExAd_GRINDING = true;
|
||||
call ExileClient_gui_interactionMenu_unhook;
|
||||
_soundSrc = createSoundSource ["Sound_Factory10", position ExAd_GRINDING_OBJECT, [], 0];
|
||||
if(isClass(configFile >> "CfgVehicles" >> "Sound_Factory10")) then {
|
||||
_soundSrc = createSoundSource ["Sound_Factory10", position ExAd_GRINDING_OBJECT, [], 0];
|
||||
};
|
||||
player playActionNow "medicStart";
|
||||
|
||||
|
||||
@ -81,7 +83,10 @@ while{(ExAd_GRINDING_OBJECT == cursorTarget) && ExAd_GRINDING}do{
|
||||
_ticker = _ticker + 1;
|
||||
};
|
||||
|
||||
deleteVehicle _soundSrc;
|
||||
if(isClass(configFile >> "CfgVehicles" >> "Sound_Factory10")) then {
|
||||
deleteVehicle _soundSrc;
|
||||
};
|
||||
|
||||
player playActionNow "medicStop";
|
||||
removeMissionEventHandler ["Draw3D",ExAd_DRAW3D_HANDLER];
|
||||
|
||||
|
@ -1,5 +1,9 @@
|
||||
#VirtualGarage
|
||||
## Instructions:
|
||||
|
||||
### 160505 01:40 . v0.6.1
|
||||
#### Update
|
||||
* Replace "ExAdClient\Grinding\Functions"
|
||||
|
||||
### 160502 23:15 . v0.6.0
|
||||
#### Full installation
|
||||
|
@ -1,5 +1,9 @@
|
||||
#VirtualGarage
|
||||
## Changelog:
|
||||
|
||||
### 160505 01:40 . v0.6.1
|
||||
#### Fixed
|
||||
* Display null when entering Virtual Garage from Flag
|
||||
|
||||
### 160429 14:04 . v0.5.1
|
||||
#### Fixed
|
||||
|
@ -1,5 +1,18 @@
|
||||
#VirtualGarage
|
||||
## Instructions:
|
||||
|
||||
### 160505 01:40 . v0.6.1
|
||||
#### Update
|
||||
* Modify config.cpp ("CfgInteractionMenus" >> "Flag")
|
||||
```cpp
|
||||
class VG : ExileAbstractAction
|
||||
{
|
||||
title = "Virtual Garage";
|
||||
condition = "(([_object, getPlayerUID player] call ExileClient_util_territory_getAccessLevel) select 0) >= ExAd_VG_ACCESS_LEVEL";
|
||||
action = "[] spawn {[] call ExileClient_gui_xm8_show; UISleep 1; call XM8_VG_checkNearByFlags}";
|
||||
};
|
||||
```
|
||||
|
||||
|
||||
### 160429 14:04 . v0.5.1
|
||||
#### Update
|
||||
|
@ -15,7 +15,7 @@ class CfgInteractionMenus
|
||||
{
|
||||
title = "Virtual Garage";
|
||||
condition = "(([_object, getPlayerUID player] call ExileClient_util_territory_getAccessLevel) select 0) >= ExAd_VG_ACCESS_LEVEL";
|
||||
action = "call XM8_VG_checkNearByFlags";
|
||||
action = "[] spawn {[] call ExileClient_gui_xm8_show; UISleep 1; call XM8_VG_checkNearByFlags}";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user