Uzii
Member-
Content Count
116 -
Joined
-
Last visited
-
Medals
Everything posted by Uzii
-
I apologise if this has been asked before: Soldiers sitting on top of APCs
Uzii replied to nikodemus's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I have to be honest, I have only touched the campaign because I was forced into it on MP by some clanmates. I hated A1's campaign, and I only played an hour or so, so in A2 I just skipped it totally ;) -
I apologise if this has been asked before: Soldiers sitting on top of APCs
Uzii replied to nikodemus's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Sit on top? I haven't seen this, is it in the campaign? Or do you mean turned out, with the top half of their body showing? -
Question regarding SecOps
Uzii replied to GunnDawg09's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
The closest to what you described is the FR (Force Razor?) Assault troops, the two in the top right of the page linked above. There are only two variants, the Rifleman and Grenadier. -
How do you end a mission?
Uzii replied to GunnDawg09's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
No, not if it was just this time, but its not. Its nearly every question. But, do what you like, eventually no one will reply to simple stuff you ask. I'm off to edit... -
Requesting a bit of help.
Uzii replied to GunnDawg09's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Well, there is a search bar ;) Just try to put in words specific to your problem, and select the forum section it will most likely be in. For your end trigger question: Searching in "ArmA 2 - MISSION EDITING & SCRIPTING" with the words "end", "mission" and "trigger" That search yields this: http://forums.bistudio.com/search.php?searchid=148639 9th Thread down: http://forums.bistudio.com/showthread.php?t=77843&highlight=end+mission+trigger Second post down Edit: Also, try searching the ArmA editing forums for some of the simpler questions. There isn't much difference when it comes to the low level stuff, the editor works in the same way. -
How do you end a mission?
Uzii replied to GunnDawg09's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
No, he is talking about you I'm afraid. Many, many of the questions you've posted and we've answered can be found by either searching/googling/or playing in the editor for a bit. How did you miss the Ammo boxes? They have an entire category to themselves. -
Activating a trigger on bridge destruction
Uzii replied to mechastalin's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
(getDammage (position objective1 nearestObject 376489) > 0.8) Objective1 is the trigger's name itself, and the object ID's can be seen when you zoom in and had the IDs button enabled. -
Vehicle drop from C130
Uzii replied to frattonstation's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Just to clarify, the classname is the vehicle that is dropped from the c-130. Here is an example line I am using: nul=[getpos drop1,"USOrdnanceBox",225] execVM "dropspawn.sqf"; drop1 is an invisible H object, and the USOrdnanceBox is the smaller one containing explosives. -
Requesting a bit of help.
Uzii replied to GunnDawg09's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Just post one thread with all your questions. That's what most people do. That way, you will probably get all the answers. If you speak to one person chances are they won't know everything. -
Question regarding SecOps
Uzii replied to GunnDawg09's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Check all the men in the BLUFOR category. There is 'Men' which has most of the units, then there is 'Men (FR)' and 'Men (Navy)', being the Spec Ops and Navy personnel respectively. -
Making a whole group sit down
Uzii replied to OmniMax's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
It probably is just that, the simplest thing. Check you've got the file name dead right, and in the right format, with the " " on either side. Here's the one I've got working: in sitdown.sqf _this setBehaviour "SAFE"; _this disableAI "ANIM"; _this action ["SITDOWN",_this]; sleep 5; waitUntil{ if(animationState _this != "amovpsitmstpsraswrfldnon")then{ sleep 8+random(3); _this action ["SITDOWN",_this]; waitUntil{animationState _this == "amovpsitmstpsraswrfldnon"} }; behaviour _this != "SAFE" }; _this enableAI "ANIM"; Now in the init line of the unit: nul=this execVM "sitdown.sqf"; Ah, now I see, I typed in the wrong init line. That one should work. Sorry for the wrong info ;) -
Making a whole group sit down
Uzii replied to OmniMax's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
'this execVM "scriptname"' isn't quite right. I think I used something like null = [] execVM "scriptname" Try that. -
Ah, right, that would explain it. Adding to a vehicles ammo if they are totally empty seems to be a real trouble, even setvehicleammo 1 doesn't work if its completely empty, but setting it to zero works fine. How strange. Thanks for the replies.
-
In a mission I've added some tanks with zero ammo, and an ammo truck near by, to rearm it, just like A1. But for the life of me I cannot work out how its done. I've tried; Same side tank and ammo vehicles, empty and occupied, T-90, T-72, and the Abrams... none of which work. And its not how close I am... I'm practically ramming them, and trying it from every possible angle. Did they take this out in A2, or have I missed something? Also, I did search, but it was fruitless.
-
Making a whole group sit down
Uzii replied to OmniMax's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Outstanding, thank you for this, its much appreciated. -
how can i create a zombie?
Uzii replied to Perrinmajor's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
There was a good script/addon/mod thing... called Yommies for ArmA. Very good, it allowed you to place zombie spawn areas and make your own missions around them. Just needed a bit of bug clearing, sadly though, I haven't seen it around ArmA 2 yet. -
Question Regarding Markers
Uzii replied to GunnDawg09's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I dunno about the strange behaviour, I haven't used it much yet. As for the init.sqf, read the readme, it didn't need to be in there ;) Don't worry though, everyone has made an easy mistake, even the pros. -
Question Regarding Markers
Uzii replied to GunnDawg09's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Then you've mistyped something. Delete it all and start again, new group and new marker, then retype it in, or even better, ctrl+c and ctrl+v it in from here, you won't mistype it then. -
Question Regarding Markers
Uzii replied to GunnDawg09's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Ok, make a group, or unit, then paste this into the group leader's init line: nul=[this,"ups_gorka"] execVM "ups.sqf" Then make a marker, as big as you like, icon, rectangle or ellipse, and name it ups_gorka This name because it is straight out of my mission. UPS for urban patrol script, and gorka because thats where the marker is. The maker is an 'Empty' marker, and the size is 200 by 100. But you can name it anything really. Now just make sure the ups.sqf is in your mission folder (the mission you have the marker and unit in). Now start it up. -
Question Regarding Markers
Uzii replied to GunnDawg09's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
It needs to be a rectangle or ellipse. Then it will show an area, as opposed to a symbol. Though saying that you can use the markers, I'm using the empty marker because I don't want a huge coloured square on the map to tell players there's an enemy patrol or two. But it does look strange in the editor having a huge 100x200 empty symbol :P -
Help making an infinite patrol.
Uzii replied to GunnDawg09's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
On the first waypoint, on the SPEED dropdown menu, select limited. -
Help making an infinite patrol.
Uzii replied to GunnDawg09's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
http://www.armaholic.com/page.php?id=6053 I guess thats the one. Haven't used it yet, but its supposed to be very good. Might get it now while I'm there... -
Help making an infinite patrol.
Uzii replied to GunnDawg09's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Make the last waypoint a 'CYCLE' one... and place it near the Leader's starting position, or another waypoint. The closest one is where he will pick up the patrol and continue. -
Making a whole group sit down
Uzii replied to OmniMax's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
OK, I can't figure this one out. I've put the long line of code in an .sqf and execVM it in the init.sqf. But how do I get it on a unit, the init field won't accept the "this spawn sitdown". Cheers for the continuing help. -
when objective complete, new marker on map?
Uzii replied to BEEJ24's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I can't remember exactly, try it with brackets: m2 setmarkerpos (getpos h1) Edit This is it "marker_name" setmarkerpos getpos object_1;