Jump to content

leonidmanylov

Member
  • Content Count

    23
  • Joined

  • Last visited

  • Medals

Community Reputation

12 Good

About leonidmanylov

  • Rank
    Private First Class

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. leonidmanylov

    AI Spawn Script Pack

    That's the kind of thing it gives out)) 22:35:37 Error in expression <select 1; _radius = _this select 2; if(_center in allMapMarkers)then{ _center0 > 22:35:37 Error position: <_center in allMapMarkers)then{ _center0 > 22:35:37 Error Undefined variable in expression: _center 22:35:37 Error in expression <> 1)then{ _buildings = ["all in radius",_center,_radius] call LV_nearestBuilding> 22:35:37 Error position: <_center,_radius] call LV_nearestBuilding> 22:35:37 Error Undefined variable in expression: _center 22:35:37 File mpmissions\__cur_mp.Belavezhsk\LV\fillHouse.sqf..., line 106 22:35:37 Error in expression < _houseObjects)<1)then{ _houseObjects = _center0 nearObjects ["Building", _radiu> 22:35:37 Error position: <_center0 nearObjects ["Building", _radiu> 22:35:37 Error Undefined variable in expression: _center0 22:35:37 Error in expression <dius":{ _houseObjects = nearestObjects [_center0, ["House","Building"], _radius]> 22:35:37 Error position: <_center0, ["House","Building"], _radius]> 22:35:37 Error Undefined variable in expression: _center0
  2. Hello comrades. I have my own server, the thermal imager is too bright, is there any information on how to fix the brightness?
  3. What is the idd's in the infistar? I will be very grateful)
  4. i server owner and I have this problem to, no server logs only freeze. I can open map, inventory, but ican't move.
  5. ZCP mission, any objects with parachute, has freeze loot ParaDrop, any idea?
  6. leonidmanylov

    CH View Distance Script

    This script need min distance. Because some objects are visible beyond the maximum range radius , for example put 10 m, put the box behind the wall, the wall disappears and the box is not
  7. leonidmanylov

    setOwner for ammobox

    before I published this post, I tried a lot of the information from the wiki and other resources on how to tie them never explain.
  8. leonidmanylov

    setOwner for ammobox

    At this code, i need set boxes for player /** * ExileClient_gui_traderDialog_updateInventoryDropdown * * Exile Mod * www.exilemod.com * © 2015 Exile Mod Team * * This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. * To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/. */ private["_dialog","_inventoryDropdown","_index","_nearVehicles"]; disableSerialization; _dialog = uiNameSpace getVariable ["RscExileTraderDialog", displayNull]; _inventoryDropdown = _dialog displayCtrl 4004; lbClear _inventoryDropdown; _index = _inventoryDropdown lbAdd "Equipment"; _inventoryDropdown lbSetValue [_index, 1]; _inventoryDropdown lbSetPicture [_index, "a3\ui_f\data\gui\Rsc\RscDisplayArsenal\face_ca.paa"]; _inventoryDropdown lbSetCurSel 0; if !((uniform player) isEqualTo "") then { _index = _inventoryDropdown lbAdd "Uniform"; _inventoryDropdown lbSetPicture [_index, "a3\ui_f\data\gui\Rsc\RscDisplayArsenal\uniform_ca.paa"]; _inventoryDropdown lbSetValue [_index, 2]; }; if !((vest player) isEqualTo "") then { _index = _inventoryDropdown lbAdd "Vest"; _inventoryDropdown lbSetPicture [_index, "a3\ui_f\data\gui\Rsc\RscDisplayArsenal\vest_ca.paa"]; _inventoryDropdown lbSetValue [_index, 3]; }; if !((backpack player) isEqualTo "") then { _index = _inventoryDropdown lbAdd "Backpack"; _inventoryDropdown lbSetPicture [_index, "a3\ui_f\data\gui\Rsc\RscDisplayArsenal\backpack_ca.paa"]; _inventoryDropdown lbSetValue [_index, 4]; }; _nearVehicles = nearestObjects [player, ["LandVehicle", "Air", "Ship", "Exile_Container_SupplyBox","Box_NATO_AmmoVeh_F", "Box_NATO_Wps_F", "Box_East_AmmoVeh_F", "Box_IND_AmmoVeh_F", "Land_CargoBox_V1_F", "ASC_B_box", "I_CargoNet_01_ammo_F", "O_CargoNet_01_ammo_F", "B_CargoNet_01_ammo_F", "B_supplyCrate_F", "IG_supplyCrate_F", "O_supplyCrate_F", "I_supplyCrate_F", "C_supplyCrate_F", "Box_NATO_Wps_F", "Box_East_Wps_F", "Box_IND_Wps_F", "Box_East_WpsLaunch_F", "Box_NATO_WpsLaunch_F", "Box_IND_WpsLaunch_F", "Box_IND_WpsSpecial_F", "Box_East_WpsSpecial_F", "Box_NATO_WpsSpecial_F", "Box_NATO_AmmoOrd_F", "Box_East_AmmoOrd_F", "Box_IND_AmmoOrd_F", "Box_NATO_Grenades_F", "Box_East_Grenades_F", "Box_IND_Grenades_F", "Box_NATO_Ammo_F", "Box_East_Ammo_F", "Box_IND_Ammo_F", "Box_IND_Support_F", "Box_East_Support_F", "Box_NATO_Support_F"], 80]; { if (local _x) then { if (alive _x) then { _index = _inventoryDropdown lbAdd getText(configFile >> "CfgVehicles" >> (typeOf _x) >> "displayName"); _inventoryDropdown lbSetData [_index, netId _x]; _inventoryDropdown lbSetValue [_index, 5]; }; }; } forEach _nearVehicles; true and this code /** * ExileClient_gui_wasteDumpDialog_show * * Exile Mod * www.exilemod.com * © 2015 Exile Mod Team * * This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. * To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/. */ private["_nearVehicles","_localVehicles","_display","_revenue","_sellButton","_dropdown","_vehicleObject","_vehicleName","_index"]; disableSerialization; _nearVehicles = nearestObjects [player, ["LandVehicle", "Air", "Ship", "Exile_Container_SupplyBox","Box_NATO_AmmoVeh_F", "Box_NATO_Wps_F", "Box_East_AmmoVeh_F", "Box_IND_AmmoVeh_F", "Land_CargoBox_V1_F", "ASC_B_box", "I_CargoNet_01_ammo_F", "O_CargoNet_01_ammo_F", "B_CargoNet_01_ammo_F", "B_supplyCrate_F", "IG_supplyCrate_F", "O_supplyCrate_F", "I_supplyCrate_F", "C_supplyCrate_F", "Box_NATO_Wps_F", "Box_East_Wps_F", "Box_IND_Wps_F", "Box_East_WpsLaunch_F", "Box_NATO_WpsLaunch_F", "Box_IND_WpsLaunch_F", "Box_IND_WpsSpecial_F", "Box_East_WpsSpecial_F", "Box_NATO_WpsSpecial_F", "Box_NATO_AmmoOrd_F", "Box_East_AmmoOrd_F", "Box_IND_AmmoOrd_F", "Box_NATO_Grenades_F", "Box_East_Grenades_F", "Box_IND_Grenades_F", "Box_NATO_Ammo_F", "Box_East_Ammo_F", "Box_IND_Ammo_F", "Box_IND_Support_F", "Box_East_Support_F", "Box_NATO_Support_F"], 150]; _localVehicles = []; { if (local _x) then { if if (alive _x) then { _localVehicles pushBack _x; }; }; } forEach _nearVehicles; if (_localVehicles isEqualTo []) exitWith { ["ErrorTitleAndText", ["Whoops!", "Park within 50m and get in as driver first."]] call ExileClient_gui_toaster_addTemplateToast; }; ExileClientCurrentTrader = _this; createDialog "RscExileWasteDumpDialog"; waitUntil { !isNull findDisplay 24011 }; _display = uiNameSpace getVariable ["RscExileWasteDumpDialog", displayNull]; _revenue = _display displayCtrl 4001; _revenue ctrlSetStructuredText (parseText "<t size='1.4'>0<img image='\exile_assets\texture\ui\poptab_notification_ca.paa' size='1' shadow='true' /></t>"); _sellButton = _display displayCtrl 4000; _sellButton ctrlEnable false; _dropdown = _display displayCtrl 4002; lbClear _dropdown; { _vehicleObject = _x; _vehicleName = getText(configFile >> "CfgVehicles" >> (typeOf _vehicleObject) >> "displayName"); _index = _dropdown lbAdd (format ["Cargo: %1", _vehicleName]); _dropdown lbSetData [_index, netId _vehicleObject]; _dropdown lbSetValue [_index, 1]; _index = _dropdown lbAdd (format ["Vehicle + Cargo: %1", _vehicleName]); _dropdown lbSetData [_index, netId _vehicleObject]; _dropdown lbSetValue [_index, 2]; } forEach _localVehicles; true call ExileClient_gui_postProcessing_toggleDialogBackgroundBlur; true
  9. leonidmanylov

    setOwner for ammobox

    I know this page, but _someObject setOwner 12; don't work
  10. Hello, do not speak English so I write through the translator. The essence of the question is: Have the box with the owner of the server. I need to create a condition for the transfer of the object (Box) to another owner, i.e. the player in the dialogue box. if bla-bla, then bla-bla, scriptophobia don't own, but really want to follow my dream. HELP ME PLEASE)))
  11. leonidmanylov

    Latest CBA_A3

    My server place on windows and has key at addon CBA_A3 folder and folder server part
  12. leonidmanylov

    Latest CBA_A3

    I have this problem, CBA_A3 is red red not specified by the client. On the server and on the client the same mod.
  13. The solution is found http://steamcommunity.com/sharedfiles/filedetails/?id=630702051&searchtext=E3DEN
  14. leonidmanylov

    3D->2D

    Just pile up without thinking about the consequences, the 3D editor is not able to export the objects in a clear manner for Arma3 server, the 3D structure does not translate in 2D, what's next?
×