Catalyst317
Member-
Content Count
9 -
Joined
-
Last visited
-
Medals
Community Reputation
10 GoodAbout Catalyst317
-
Rank
Private
-
I'm sorry, I did not realize there was an Altis forum.
-
How to make bar gate indestructible in 3d editor
Catalyst317 replied to Catalyst317's topic in ARMA 3 - MISSION EDITING & SCRIPTING
That's it, I forgot to save the mission first. I can't believe I overlooked that. Thank you so much!! -
How to make bar gate indestructible in 3d editor
Catalyst317 replied to Catalyst317's topic in ARMA 3 - MISSION EDITING & SCRIPTING
No, I loaded an edit I made and never entered anything in. I even double checked it and the init is blank. When I place a hunter and test it in the preview, the gates still fall over and the hunter keeps going. This is what my sqf looks like that I loaded in. _vehicle_4 = objNull; if (true) then { _this = createVehicle ["Land_BarGate_F", [15732.831, 17464.098, 3.8146973e-005], [], 0, "CAN_COLLIDE"]; _vehicle_4 = _this; _this setDir -69.13829; _this setPos [15732.831, 17464.098, 3.8146973e-005]; }; -
I am trying to figure out how to add a global channel in Altis Life that everyone can use, but I can not figure it out. I am new to scripting and trying to add things to our community's Altis Server to give our sole dev a break and take some of the stress off of him. Any help would be appreciated.
-
How to make bar gate indestructible in 3d editor
Catalyst317 replied to Catalyst317's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I tried adding both of those to the init of the bar gate, but when I go to preview, they are still taking damage and falling over. -
How to make bar gate indestructible in 3d editor
Catalyst317 posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
I am making some addons for a server I admin on with the 3d editor and do not know how to make objects like a bar gate indestructible. Do I do this in the sqf file or can i put a code in the init section of the object? I tried: this addEventHandler ["HandleDamage", {false}]; in the init box, but when I go into the preview, it is not indestructible. -
How to make bar gate indestructible in 3d editor
Catalyst317 replied to Catalyst317's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thanks, I will give it a try. Also, thanks for letting me know the best section to address my question. I thought here would be the best, but I'll try there instead. Thanks again! EDIT: I tried putting that into the init box, but when I go into preview, it's still not indestructible. -
I have been trying, for a few days, on how to enable the global chat on Altis Life for our server, but since I am new to scripting, I can not seem to find it. Can anyone explain how to enable it so everyone on the server can use it?
-
How to make bar gate indestructible in 3d editor
Catalyst317 posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
I am making some addons for a server I admin on with the 3d editor and do not know how to make objects like a bar gate indestructible. Do I do this in the sqf file or can i put a code in the init section of the object?