Jump to content

kdk11

Member
  • Content Count

    493
  • Joined

  • Last visited

  • Medals

  • Medals

Community Reputation

1 Neutral

1 Follower

About kdk11

  • Rank
    Gunnery Sergeant

Profile Information

  • Gender
    Male

Contact Methods

  • Youtube
    UC_ryAOj9VhQXzyaBqNxnj3w
  • Steam url id
    kdk11

Recent Profile Visitors

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

  1. Yeah someone linked it in one of the other threads, I dont use twitter so thats why I did not know. Thanks anyways :)
  2. kdk11

    Apex Gear Feedback

    It shows the icon for me.
  3. kdk11

    Apex Gear Feedback

    That is a shame, we should maybe have some added into game then?.
  4. kdk11

    Apex Gear Feedback

    Unless I am blind, I dont see any backpacks or vests with the new CTRG camo?.
  5. kdk11

    Apex Weapon Feedback

    5. AKM , AKS-74U , AK-12 got bolt hold open on last round?! Many guns have this feature in real life??
  6. kdk11

    Apex Vehicles Feedback

    I just created a thread as this thread was made. My question is 'Is it not yet possible to put vehicles into the new aircraft? I have looked around in the editor and tried to drive a vehicle in but the ramp does not act like a ramp for vehicles or ground units'
  7. Is it not yet possible to put vehicles into the new aircraft? I have looked around in the editor and tried to drive a vehicle in but the ramp does not act like a ramp for vehicles or ground units.
  8. Knowing Valve and how long they take to do anything, the DLC will probably be ready for release before they fix the issue lol
  9. Thanks that worked :D I have removed the close action as I dont need it, it can just stay open. I have one last question, I know about the sleep command am just wondering where in the terminal.sqf I would put it so that there is a pause from opening the terminal to then being able to chose the next action?.
  10. Thanks for the reply and the example mission, I appreciate that and I can kinda see how it works. But my second option will be "power off grid" and then I want that action to execute the script "lights.sqf" that I have in my mission folder. So I tried this... this addAction ["Open Terminal","terminal.sqf",0,2,true,true,"","(_target getVariable ['KDK_TerminalStatus',0]) == 0"]; this addAction ["Power off grid","lights.sqf",1,2,true,true,"","(_target getVariable ['KDK_TerminalStatus',0]) == 1"]; this addAction ["Close Terminal","terminal.sqf",2,2,true,true,"","(_target getVariable ['KDK_TerminalStatus',0]) == 2"]; And it did not work, and I know why it did not work. But to get it to work I assume that I somehow have to put my "lights.sqf" in the code below?. I will try and research how to do this but I just know once I start playing around with your code I will break something lol. params ["_object","_state"]; _state = _this select 3; switch _state do { case 0: { // Open terminal _object setVariable ["KDK_TerminalStatus",1,true]; [_object,3] call BIS_fnc_dataTerminalAnimate; sleep 2; with uiNamespace do { disableSerialization; _object setObjectTexture [0,"\A3\Missions_F_EPA\video\A_in_intro.ogv"]; 1100 cutRsc ["RscMissionScreen","PLAIN"]; _scr = BIS_RscMissionScreen displayCtrl 1100; _scr ctrlSetPosition [-10,-10,0,0]; _scr ctrlSetText "\A3\Missions_F_EPA\video\A_in_intro.ogv"; _scr ctrlAddEventHandler ["VideoStopped", { (uiNamespace getVariable "BIS_RscMissionScreen") closeDisplay 1; }]; _scr ctrlCommit 0; }; }; case 1: { // Use terminal _object setVariable ["KDK_TerminalStatus",2,true]; }; case 2: { // Close terminal _object setVariable ["KDK_TerminalStatus",0,true]; [_object,0] call BIS_fnc_dataTerminalAnimate; }; }; Thanks again for your time dude :)
  11. And would these lines go into each script? or my init.sqf maybe? Sorry I am not very good with coding.
  12. Thanks for the reply :) Would I use the code above in the init of the Terminal?.
  13. Hello I currently have a Data Terminal placed in my mission with AddActions to allow scripts to open and close the Terminal. I was wondering how I would be able to add an action inbetween both the "open" and "close" AddActions so that you have to open the Terminal before being able to use my second AddAction and before being able to use the "close" AddAction?. Below is the script I am using that I found on the forum, thanks to simon1279.
  14. Oh ok my bad haha I shall try that now. Mods used: ACE 3 - http://www.armaholic.com/page.php?id=28557 Kunduz Afghanistan - http://www.armaholic.com/page.php?id=27882 British Army mod - http://www.armaholic.com/page.php?id=27917 CBA - http://www.armaholic.com/page.php?id=18767 CAF Aggressors - http://www.armaholic.com/page.php?id=24441 Ambient Battle sounds mod - http://www.armaholic.com/page.php?id=27976( I dont actually use this mod but for some reason I have to have it enabled otherwise it will not let me edit my mission) There is no server IP though, I usually just host it from my machine. However I can send you the mission if you want to look at it :) IT WORKS!!!!!!!!!! :D :D Thank you my friend!!
×