mirror of
https://github.com/Bjanski/ExAd.git
synced 2024-08-30 16:52:14 +00:00
Changelog v0.5.1
This commit is contained in:
parent
51b1d09cd8
commit
c4fc2c57e2
@ -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
13
CHANGELOG.md
Normal 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
|
BIN
mpmissions/Exile.Altis/ExAdClient/Core/Img/logo.paa
Normal file
BIN
mpmissions/Exile.Altis/ExAdClient/Core/Img/logo.paa
Normal file
Binary file not shown.
@ -21,7 +21,7 @@ class VGStore
|
|||||||
displayName = "Vehicle stored";
|
displayName = "Vehicle stored";
|
||||||
/*displayNameShort = "Your vehicle has been stored and is available through the Virtual Garage interface";*/
|
/*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. ";
|
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;
|
noImage = false;
|
||||||
tip = "";
|
tip = "";
|
||||||
arguments[] = {};
|
arguments[] = {};
|
||||||
@ -30,7 +30,7 @@ class VGLoad
|
|||||||
{
|
{
|
||||||
displayName = "Vehicle loaded to world";
|
displayName = "Vehicle loaded to world";
|
||||||
description = "%1Your vehicle has been loaded to the world, the pin code is %11";
|
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;
|
noImage = false;
|
||||||
tip = "";
|
tip = "";
|
||||||
arguments[] = {"VGLoad select 0"};
|
arguments[] = {"VGLoad select 0"};
|
||||||
|
@ -20,6 +20,8 @@ private ["_list","_idc","_vehClass","_data","_name","_index","_pic"];
|
|||||||
_list = _this select 0;
|
_list = _this select 0;
|
||||||
_idc = _this select 1;
|
_idc = _this select 1;
|
||||||
|
|
||||||
|
lbClear _idc;
|
||||||
|
|
||||||
{
|
{
|
||||||
_vehClass = if(typeName _x isEqualTo "ARRAY")then{_x select 1}else{typeOf _x};
|
_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};
|
_data = if(typeName _x isEqualTo "ARRAY")then{format["%1",_x select 0]}else{netId _x};
|
||||||
|
Binary file not shown.
@ -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;};
|
if (isNull _slides) exitWith {_error = "Error loading XM8 VG app, slides control is null"; systemChat _error; diag_log _error;};
|
||||||
|
|
||||||
_unloadScript = '
|
_unloadScript = '
|
||||||
|
if (ExileClientXM8CurrentSlide == "mainVGSlide") then {
|
||||||
|
ExileClientXM8CurrentSlide = "sideApps";
|
||||||
|
};
|
||||||
ExAd_Cur_Flag_NetId = nil;
|
ExAd_Cur_Flag_NetId = nil;
|
||||||
';
|
';
|
||||||
_display displayAddEventHandler ["unload",_unloadScript];
|
_display displayAddEventHandler ["unload",_unloadScript];
|
||||||
|
Loading…
Reference in New Issue
Block a user