

easyeb
Member-
Content Count
304 -
Joined
-
Last visited
-
Medals
Community Reputation
137 ExcellentAbout easyeb
-
Rank
Staff Sergeant
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
RHS Escalation (AFRF and USAF)
easyeb replied to soul_assassin's topic in ARMA 3 - ADDONS & MODS: COMPLETE
So when do we get a PC with Arma 3 runnibg RHS simulated in Arma 3?- 16546 replies
-
- 2
-
-
- Weapons
- Accessories
-
(and 1 more)
Tagged with:
-
United States Air Force( 2015)
easyeb replied to SGT Fuller's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Yeah but like, his group man... -
Make marker on player position
easyeb replied to easyeb's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I appreciate the input guys! But this: is only good for one marker. That marker is named "markername" and since that name is taken by the first marker created, no further markers will be created. I guess what I need is a counter and to insert that to "markername" so that the first one will be "markername1" and the second "markername2" for instance. -
Make marker on player position
easyeb replied to easyeb's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Well, no that's not what I want. That example is for making one marker once. I want to make a new marker every time. A little reading before replying wouldn't hurt 😉 -
Hi! Is there a way to create a marker on a players current position and leave it where it was created? I want to make the dot marker on my current location to mark out a house I've searched, and then make another marker on another house I've searched to keep track on which buildings in a city I've looked through. Note, I do not want to move one and the same marker to my current position, I want to create a new one each time.
-
RHS Escalation (AFRF and USAF)
easyeb replied to soul_assassin's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Can you open/close the doors of vehicles via script? In my case the M1238.- 16546 replies
-
- Weapons
- Accessories
-
(and 1 more)
Tagged with:
-
RHS Escalation (AFRF and USAF)
easyeb replied to soul_assassin's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Thanks! I look forward to it! Edit: Also noticed that the spare wheel hanging on the vehicles right side is not visible from inside (gunners position). The attachment hardware is there, but the wheel itself is not.- 16546 replies
-
- Weapons
- Accessories
-
(and 1 more)
Tagged with:
-
1stBN/160th SOAR Mod ArmA III WIP
easyeb replied to warlord554's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
Look, I’m sorry. I didn’t mean to step on any toes. I know you guys are real sensitive about this stuff and I should know better. -
RHS Escalation (AFRF and USAF)
easyeb replied to soul_assassin's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Love the new update, especially the new M1238 and M1239. The deployment versions look absolutely killer and I’d love to see that kind of stuff on more vehicles sith cargo and bits and bobs added! Is it possible to have the ammo cans on the roof show on the versions that don’t have it? The empty racks look like it’s low on ammo. anyway, great update. Can’t thank you guys enough.- 16546 replies
-
- Weapons
- Accessories
-
(and 1 more)
Tagged with:
-
1stBN/160th SOAR Mod ArmA III WIP
easyeb replied to warlord554's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
It was four weeks till Alpha like eight weeks ago 😂 -
AI won’t drive vehicle with items attached using attachtorelative
easyeb replied to easyeb's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I'm super-duper-sure. I tried disabling simulation and damage in the checkboxes for each item, no change. Here's a clip of the problem: -
AI won’t drive vehicle with items attached using attachtorelative
easyeb replied to easyeb's topic in ARMA 3 - MISSION EDITING & SCRIPTING
The AI units are part of the group from mission start. If I remove the attached objects everything works fine. -
AI won’t drive vehicle with items attached using attachtorelative
easyeb replied to easyeb's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thanks alot for the help guys. None of it works unfortunately. The AI driver is compliant for a couple of minutes in but after a while he refuses to move after a given order. If I get in the vehicle (that has a commander spot) and orders him to move forward he will, and when he's already started rolling I can give him map click orders which he will obey, but when he stops again he won't move any more. The vehicle is a UK3CB Maxxpro (MRAP1), and the items attached to it are four fuel cans (FUELCAN1 through 4) and a stretcher (STRETCHER1). MRAP1 init: [this, FUELCAN1] remoteExecCall ["disableCollisionWith", 0, FUELCAN1]; [this, FUELCAN2] remoteExecCall ["disableCollisionWith", 0, FUELCAN2]; [this, FUELCAN3] remoteExecCall ["disableCollisionWith", 0, FUELCAN3]; [this, FUELCAN4] remoteExecCall ["disableCollisionWith", 0, FUELCAN4]; [this, STRETCHER1] remoteExecCall ["disableCollisionWith", 0, STRETCHER1]; FUELCAN1 init (same for all other items except different names): this enablesimulation false; [FUELCAN1, MRAP1] call BIS_fnc_attachToRelative; -
AI won’t drive vehicle with items attached using attachtorelative
easyeb replied to easyeb's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thanks for the tip! Tried it out but it didn’t work sadly. -
AI won’t drive vehicle with items attached using attachtorelative
easyeb posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
So I’ve got a decked out vehicle with items attached to it using attachtorelative, but I’m having problems with my AI driver. When the vehicle is off road he’ll follow his orders and drive where I want him, but when he’s on a road, and when he’s stopped and turned off his engine he’ll not drive any more. looking at his status in the group status bar it goes to ”moving” when I give him an order to move, and after a couple of seconds his status will change to ”Ready” without him moving. has anyone of you encountered this? How did you solve it?