IAmMarshicus
Member-
Content Count
88 -
Joined
-
Last visited
-
Medals
Community Reputation
10 GoodAbout IAmMarshicus
-
Rank
Corporal
-
I'd like it if this was in Arma 3, I think it's more relaxing when using a controller over a keyboard. Would an xbox controller have enough buttons for all the different commands in Arma though? (Never actually used a controller in Arma 2 or any other PC game but GTAIV)
-
Damage ILS (EMP)
IAmMarshicus replied to IAmMarshicus's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I never knew about that. I'll try it, thanks. -
Damage ILS (EMP)
IAmMarshicus replied to IAmMarshicus's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I'll try that out as-well, thanks. EDIT - Thought I may as-well just post this in here rather than make a new thread... I'm having trouble making it all work from a script. It does work fine in a trigger, but I'd prefer it to be ran from a .SQF. I've changed what I think is needed in a .SQF and I've added what I think is meant to work like "forEach thislist". What is wrong with the code below? _list = EMPTrig nearObjects [2000]; call {if (count _list > 0) then {{if (alive _x) then {_x setHit ["elektronika", 1]}} forEach _list};false}; Any help is appreciated. :) -
Damage ILS (EMP)
IAmMarshicus replied to IAmMarshicus's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Well... yeah. Although it doesn't seem to do what I wanted on everything, I believe it's an easy fix. I'll post back in here after testing to see if it was an easy fix. -
Damage ILS (EMP)
IAmMarshicus replied to IAmMarshicus's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Thank you so much! :D That indeed does damage the INST, but for some reason it doesn't seem to turn off the screens in every aircraft. I think I can change that by also damaging other selections of the aircraft though. Thank you for the help but sadly this was one of the first things I did try... I think a patch had changed it ages ago because now turning the engine off yourself just stops the vehicle from moving. Whereas before, I'm quite certain it did turn off everything within the vehicle. I'm most-likely wrong though. What is your problem? I waited much longer this time before I bumped the thread - as you suggested... And why should I add what has already been said? If I were to jump into a thread like this I would read through it' date=' there were only a few pages at the time. Assuming I'm reading this right... I made this thread because I had ran completely out of ideas on how to solve my problem and asked this community for assistance. Each time I was given a supposed solution I would take it and try every way I knew to get them to work. -
Damage ILS (EMP)
IAmMarshicus replied to IAmMarshicus's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Bumpity bump. -
Damage ILS (EMP)
IAmMarshicus replied to IAmMarshicus's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Nope, that doesn't seem to be working either. Why did BIS have to put most of their code in Czech? :rolleyes: -
Damage ILS (EMP)
IAmMarshicus replied to IAmMarshicus's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Okay. Basically I want the screens in aircraft (I assume they are the ILS but I think I'm wrong) to be turned off by a script which is meant to resemble an EMP. I have been using this code below in a trigger for the time being to disable parts of aircraft and even some other vehicles. This code just destroys the engine. call {if (count thislist > 0) then {{if (alive _x) then {_x setHit ["motor", 1]}} forEach thislist};false}; I need to know the name for the ILS/INST which would replace "motor" which is in the code so I can turn off the screens. Also, I do know that some of the screens appear smashed when the INST is damaged - but I'd prefer that than the thing still working. I really hope that makes more sense. :D -
Damage ILS (EMP)
IAmMarshicus replied to IAmMarshicus's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
That is what I mean... I think. -
Damage ILS (EMP)
IAmMarshicus replied to IAmMarshicus's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I had already set that to one. I guess I'll have to hunt through the game files till I can find the "named selection". -
Damage ILS (EMP)
IAmMarshicus replied to IAmMarshicus's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
It is possible to damage certain parts of aircraft, I've been doing it with the "setHit" command. And how can I check out different values? :confused: -
Damage ILS (EMP)
IAmMarshicus replied to IAmMarshicus's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
-
Damage ILS (EMP)
IAmMarshicus replied to IAmMarshicus's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I'm not too sure what you're saying will damage the ILS. It just seems like it's too much just to disable it... But I'll still have a go at it anyway. Mind explaining where I can find these script names/scripts? Thank you. -
Damage ILS (EMP)
IAmMarshicus replied to IAmMarshicus's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Anyone got a solution? -
Hello, I've been working on an EMP script (just for fun) for a few days now. Basically I want to know what the name (I assume it's a classname) for the ILS in helicopters and planes. I've tried pretty much everything - even in Czech. If you know what the classname is or a way for me to find out for myself, please post. EDIT - The code I used in the end is below. (Thanks Max Power) call {if (count thislist > 0) then {{if (alive _x) then {_x setHit ["elektronika", 1]}} forEach thislist};false};