Changelog v0.5.1

This commit is contained in:
Bjanski 2016-04-29 14:10:28 +02:00
parent 51b1d09cd8
commit c4fc2c57e2
7 changed files with 27 additions and 3 deletions

View File

@ -1 +1,7 @@
7 eventHandler !="ExAd_ACTION_PARACHUTE_DETACH = (findDisplay 46) displayAddEventHandler ["KeyDown",{"
eventHandler !="ExAd_ACTION_PARACHUTE_DETACH = (findDisplay 46) displayAddEventHandler ["KeyDown",{"
compile !="call compile format[\"_messageParameters call ExAd_fnc_%1;\",_messageName]"
createVehicle !="_parachuteObject = createVehicle [\"Steerable_Parachute_F\", getPosATL player, [], 0, \"CAN_COLLIDE\"]"
addAction !="ExAd_ACTION_PARACHUTE = player addaction [format"
Entities !="waitUntil {sleep 0.1; {player distance _x < 10 max (sizeOf typeOf _x)} count (player nearEntities [\"Helicopter_Base_F\", 20]) == 0}"
disableCollisionWith !="_parachuteObject disableCollisionWith player"
remoteexec !="_this remoteExec [\"ExAdServer_fnc_clientRequest\",2]"

13
CHANGELOG.md Normal file
View File

@ -0,0 +1,13 @@
#<img src="logo.png" alt="ExAd" width="200" />
## Changelog:
### 160426 14:04 . v0.5.14
#### Fixed
* BattlEye filters been updated
* VG App return to sideApp on unLoad
* VG App clear lists before onLoad and content being loaded.
* AdvHint trying to show EXO Logo
#### Added
* ExAd Logo.png
#### Deleted
* EXO Logo.png

Binary file not shown.

View File

@ -21,7 +21,7 @@ class VGStore
displayName = "Vehicle stored";
/*displayNameShort = "Your vehicle has been stored and is available through the Virtual Garage interface";*/
description = "Your vehicle has been stored and is only available through the territory it has been stored at. ";
image = "ExAdClient\Icons\logo.paa";
image = "ExAdClient\Core\Img\logo.paa";
noImage = false;
tip = "";
arguments[] = {};
@ -30,7 +30,7 @@ class VGLoad
{
displayName = "Vehicle loaded to world";
description = "%1Your vehicle has been loaded to the world, the pin code is %11";
image = "EXOClient\Icons\logo.paa";
image = "ExAdClient\Core\Img\logo.paa";
noImage = false;
tip = "";
arguments[] = {"VGLoad select 0"};

View File

@ -20,6 +20,8 @@ private ["_list","_idc","_vehClass","_data","_name","_index","_pic"];
_list = _this select 0;
_idc = _this select 1;
lbClear _idc;
{
_vehClass = if(typeName _x isEqualTo "ARRAY")then{_x select 1}else{typeOf _x};
_data = if(typeName _x isEqualTo "ARRAY")then{format["%1",_x select 0]}else{netId _x};

View File

@ -110,6 +110,9 @@ _slides = _display displayCtrl 4007;
if (isNull _slides) exitWith {_error = "Error loading XM8 VG app, slides control is null"; systemChat _error; diag_log _error;};
_unloadScript = '
if (ExileClientXM8CurrentSlide == "mainVGSlide") then {
ExileClientXM8CurrentSlide = "sideApps";
};
ExAd_Cur_Flag_NetId = nil;
';
_display displayAddEventHandler ["unload",_unloadScript];