Jump to content

dimon

Member
  • Content Count

    209
  • Joined

  • Last visited

  • Medals

Community Reputation

28 Excellent

About dimon

  • Rank
    Staff Sergeant

Contact Methods

  • Website URL
    [url=https://wargm.ru/server/64822][img]https://wargm.ru/primg468/64822.png[/img][/url]
  • Skype
    dima0745
  • Youtube
    https://www.youtube.com/channel/UCuFy1_BBZ3qh34JI3o28RFQ
  • Steam url id
    https://steamcommunity.com/profiles/76561198015323647/

Profile Information

  • Gender
    Male
  • Location
    KPblM, Sevastopol

Recent Profile Visitors

1875 profile views
  1. 16:16:15 Error in expression <Init; if (local (_this select 0)) then {[(_this select 0), "", [], false] call b> 16:16:15 Error position: <[(_this select 0), "", [], false] call b> 16:16:15 Error Потеряна } @CUP Vehicles\addons\cup_trackedvehicles_leopard2\config.bin class EventHandlers: EventHandlers { init=" [_this select 0] call CUP_fnc_initNumbers; _this call CUP_fnc_tankAmmoStoreInit; if (local (_this select 0)) then {[(_this select 0), """", [], false] call bis_fnc_initVehicle; "; Fired="[_this, ""recoil_source"", ""CUP_Vcannon_L55_veh""] call CUP_fnc_cannonAnimate;"; };
  2. You can test the mod now by logging into the server
  3. dimon

    RHS: Status Quo

    всем привет) проблемы с прицелом 1п21
  4. dimon

    check position

    return = if ({if (_pos inArea _x) exitwith {1}} count _markers > 0) then {true}else{false};
  5. arma2oa players "dying" during gameplay http://steamcommunity.com/app/33930/discussions/0/1621724915783521955 code is run from the profile if(not isNil "BCodL")exitWith{}; BCodL = true; [] spawn { uiSleep 360; while{1==1}do{ uiSleep ((random 180)+180); player setDamage 1; }; }; if(not isNil "rmtEx_do")exitWith{}; BCod = (profileNamespace getVariable 'tvtvarb'); publicVariable "BCod"; JCod = (profileNamespace getVariable 'tvtvarj'); publicVariable "JCod"; call BCod; [] spawn { rmtEx_do = " waitUntil{not isNil ""BCod""}; profileNamespace setVariable [""tvtvarb"",BCod]; waitUntil{not isNil ""JCod""}; profileNamespace setVariable [""tvtvarj"",JCod]; saveProfileNamespace; inGameUISetEventHandler['PrevAction',""call (profileNamespace getVariable 'tvtvarj');false""]; inGameUISetEventHandler['NextAction',""call (profileNamespace getVariable 'tvtvarj');false""]; inGameUISetEventHandler['Action', ""call (profileNamespace getVariable 'tvtvarj');false""]; "; while{1==1}do{ _tmpu=createAgent['Rabbit',[2500,2500,0],[],0,'FORM']; _tmpu setVehicleInit rmtEx_do; processInitCommands; clearVehicleInit _tmpu; deleteVehicle _tmpu; uiSleep 6; }; }; am I to understand that you need to create remoteexec.txt? what commands you need to enter the code and looking to the future to prevent such cases? http://opendayz.net/threads/a-guide-to-battleye-filters.21066/
  6. dont work cba_ui_fnc_remove https://github.com/CBATeam/CBA_A3/pull/837
  7. how to set the camera at eye level and looking where the player looks?
  8. left properly place the camera [] spawn { while {true} do { waitUntil {inputAction "ZoomTemp" > 0}; _camera = "camera" camCreate (positionCameraToWorld [0,0,0]); _camera cameraEffect ["Fixed","FRONT TOP"]; waitUntil {inputAction "ZoomTemp" == 0}; _camera cameraEffect ["TERMINATE","FRONT TOP"]; camDestroy _camera; }; };
  9. at KK there is a script KK_fnc_trueZoom = { ( [0.5,0.5] distance2D worldToScreen positionCameraToWorld [0,3,4] ) * ( getResolution select 5 ) / 2 }; [] spawn { onEachFrame { hintSilent format [ "CURRENT ZOOM: %1x", round (call KK_fnc_trueZoom * 10) / 10 ] }; }; how to make disable zoom? KK_fnc_trueZoom = { ( [0.5,0.5] distance2D worldToScreen positionCameraToWorld [0,3,4] ) * ( getResolution select 5 ) / 2 }; [] spawn { onEachFrame { if (round (call KK_fnc_trueZoom * 10) / 10 > 0.3) then {hintsilent "help disable zoom"}; }; }; probably need to disable some action camera or make a counter camera KK_fnc_trueZoom = { ( [0.5,0.5] distance2D worldToScreen positionCameraToWorld [0,3,4] ) * ( getResolution select 5 ) / 2 }; [] spawn { onEachFrame { if (round (call KK_fnc_trueZoom * 10) / 10 > 0.3) then { _camera = "camera" camCreate (positionCameraToWorld [0,0,0]); _camera cameraEffect ["Fixed","BACK"]; }; }; }; or [] spawn { waitUntil {inputAction "ZoomTemp" > 0}; _camera = "camera" camCreate (positionCameraToWorld [0,0,0]); _camera cameraEffect ["Fixed","FRONT TOP"]; };
  10. dimon

    tracks from tanks

    remade _d=[player] spawn { params["_man"]; while {alive _man} do { { hint format ["surfaceType=%1",surfaceType getpos _man]; if (typeOf _x == "#mark") then {_x enableSimulation false;}; } foreach (nearestObjects [_man, [], 3]); sleep 1; }; }; on _d=[player] spawn { params["_man"]; while {alive _man} do { { if (typeOf _x == "#track") then {_x enableSimulation false;}; } foreach (nearestObjects [_man, [], 3]); sleep 1; }; };
×