-
Content Count
2494 -
Joined
-
Last visited
-
Medals
Everything posted by sarogahtyp
-
I do not agree with this opinion. A little gimmick gladly, but no discount. I find that I get a lot of content for 30 euros. But that is probably also because I deal with the Workbench.
-
Please don't forget helicopters advance physics
sarogahtyp replied to Japo32's topic in Arma Reforger - General
On the contrary, I hope that BI will make great progress on this point! Because if you take a closer look at the physics scripting in Arma 3, you will sooner or later realize that the physics simulation in Arma 3 is a very optimized and thus unrealistic thing. There are reasons for exploding helicopters that have been rammed a bit by small quads. And there are reasons why these 60 ton tanks fly hundreds of meters through the air... I assume very much that physics should get simulated better in AR and Arma 4 as well. -
Mission Building Q&A - Hiding Buildings in Everon Base Map
sarogahtyp replied to CEDE Nullis's topic in Arma Reforger - Terrain Creation
This is for sure a very good solution for the problem of being not able to edit the original world. But does anybody know what this means for the mission size? Saving the whole world into the addon when you are just creating a little mission should have an impact on size I guess... -
Reference to an existing entity / even if an BI map object / hide map objects
sarogahtyp posted a topic in Arma Reforger - Configs & Scripting
I try to find a method to 1. reference to any object out of a script tied to another entity. - f.e. i have a truck named SaRo_BMHQ_Hillbilly01 and I want to hide a camo net which is not named but which is ordered below the truck in the Hierarchy: - I need to know how to reference the camo net out of a trucks event script. 2. - How to hide that camo net generally 3. - How to first reference and then hide an AR map object using the EOnInit event handler of the game mode entity (or maybe there is another better init method?). -
Reference to an existing entity / even if an BI map object / hide map objects
sarogahtyp replied to sarogahtyp's topic in Arma Reforger - Configs & Scripting
@joemac90 very helpful, very much appreciated. Thanks a lot 🙂 -
We need a Mission Selection Screen
sarogahtyp replied to W-Cephei's topic in Arma Reforger - Servers & Administration
Patience young padawan. This feature will come for sure but we are at alpha state. Its just not feature complete. -
How to edit reforger models?
sarogahtyp replied to firefall70's topic in Arma Reforger - Model Editing
https://community.bistudio.com/wiki/Category:Arma_Reforger/Modding/Tutorials/Official_Tools/Enfusion_Blender_Tools Maybe this helps -
eden How can I edit the Eden map?
sarogahtyp replied to firefall70's topic in Arma Reforger - Terrain Creation
Since the day of the release it was not possible to delete anything from the map directly and permanently. So idk what you did but this was never possible for sure. I guess there is a solution for hiding such objects with scripting at least but i did not get an answer in forum and discord to that qeustion upto now. I think that will happen sooner or later.... -
Tutorial: Creating a (ingame) map for your custom Terrain
sarogahtyp replied to captncaps's topic in Arma Reforger - Terrain Creation
@captncaps I guess your tutorial misses some important steps to get the whole thing work. On my end I gave up because as @MRsemple said ther is nothing happening after clicking on the Export Map Data button. Best would be to begin the tutorial with the Projects window instantly after starting Arma Reforger Tools out of Steam and describing each little step precisly. This is what your tutorial does'nt do currently. -
Will the beloved 3d editor (EDEN) ever return?
sarogahtyp replied to Tyl3r99's topic in Arma Reforger - General
you did receive an answer already. I Think there is no more one can tell you about: No need for that. There are several youtube vids out which show you how to do the basics like AI, waypoints and triggers... The other way is to just wait as mentioned above! -
Gamepad control and inventory
sarogahtyp replied to Spoock's topic in Arma Reforger - Xbox Discussion
this is the reason for what AR is released as an Alpha and as The Road to Arma 4. BI has not much experience on xbox and they try to get such feedback to get an overview of better solutions to implement such thing in Arma 4 ( or maybe in Arma Reforger as well). Its just a playground for the devs to get data and feedback of how the things are running. Therefore, I assume BI appreciates your feedback (and that of others) and will take it into consideration even if they may not answer here. -
How to setvelocity.
sarogahtyp replied to Stormmy1950's topic in ARMA 3 - MISSION EDITING & SCRIPTING
-
Script Editor - copy error messages - feature missing
sarogahtyp posted a topic in Arma Reforger - Workbench
I'am not able to copy error messages in the script editor's error subwindow: This is an essential feature to be easily able to get help anywhere (google or forums). Please add this BI, thanks. -
Player in a specific vehicle
sarogahtyp replied to Doggifast's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I did not check the whole script but the condition for the while loop to reun has to be: while { not isNull objectParent player and { typeOf objectParent player isEqualTo "B_T_Plane_CAS_01_dynamicLoadout_F" } } do you should use the wiki to get a clue of the things you are doin. = is not a comparision operator but an assignment operator == or isEqualTo are for comparision a classname is a string and needs always quotes and maybe there is some more which the wiki could answer for you. -
Player in a specific vehicle
sarogahtyp replied to Doggifast's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Tell us the whole story. What do you want to do and what did you try to achieve it? -
Afaik BI mentioned to implement helicopters but never planes in AR. If I remember correctly then also tanks will not get implemented. Those stuff will come with arma4
-
What maps are you working on?
sarogahtyp replied to Jorgo32's topic in Arma Reforger - Terrain Creation
you can embed images to your post with the drop down menu "insert other media" in the bottom right corner. To get the correct link of your imgur posts: 1. open your link on imgur like this https://imgur.com/a/fOwnb6L 2. right click the image on imgur page 3. choose "copy image adress" (or similar) 4. you ll get this link which you can use with the Insert other media menu: https://i.imgur.com/IxAxCdZ.png I did this for your images so a forum reader needs not to head over to imgur to view it. @ForestFighters work: @ForestFighters work: @ForestFighters work: -
Find nearest road position?
sarogahtyp replied to ARMAzac's topic in Arma Reforger - Configs & Scripting
how and where exactly are you running QueryEntitiesBySphere? It's not the case that I could help you much with your problem but I wan't to try out that method and learn it's usage... Edit: after following the link in the below post it is done this way: GetGame().GetWorld().QueryEntitiesBySphere(marker.GetOrigin(), m_iCityRange, CheckHouseAddToArray, FilterHouseEntities, EQueryEntitiesFlags.STATIC); So it's a GetGame.GetWorld method. Declaration of that method in BaseWorld.c: proto external bool QueryEntitiesBySphere(vector center, float radius, QueryEntitiesCallback addEntity, QueryEntitiesCallback filterEntity = null, EQueryEntitiesFlags queryFlags = EQueryEntitiesFlags.ALL); -
How To Modify Building Prefabs?
sarogahtyp replied to weirdjet's topic in Arma Reforger - Terrain Creation
Today I played around with the prefab of a truck. First I inherited the original into my addon and then I added another material to it just to see if it works ( I m learning ...). I had the same problem several times. The save button and menu entry lit not up and the force save entry did not do anything. It just got not saved. But I repeated that procedure several times and at some times the save button lit up, I pressed it and the prefab was saved including the changed materials... I guess there is some issue with the save functionality. -
Please give arma reforger and enfusion forums
sarogahtyp replied to computer's topic in BOHEMIA INTERACTIVE - GENERAL
Nearly everything in AR is new. But also everything feels like a wireframe or template. It has to get filled firstly and this also aplies to the AI... -
Please give arma reforger and enfusion forums
sarogahtyp replied to computer's topic in BOHEMIA INTERACTIVE - GENERAL
Today during the downtime of all bohemia pages I thought they would setup the new AR forum... damn! -
How to make UI key prompt
sarogahtyp replied to KAustinn's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I saw same thing on bad company domination server using the revive system there. I guess it's part of domination and therefore you could find how it is working in dominations revive system. Xenos Domination is available on GitHub: Xeno69/Domination Edit: You could also ask Xeno on his Discord Server. AFAIK he is answering such questions there and is very helpful. -
[RELEASE] ReconocimientoDroneV3.sqf
sarogahtyp replied to AtomicBoy's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Helpfull would be to tell OP how you tested it and which errors occured. -
How to make UI key prompt
sarogahtyp replied to KAustinn's topic in ARMA 3 - MISSION EDITING & SCRIPTING
That link is broken... Edit: for future reference https://youtu.be/KU9G3wPiGUY?t=321 -
How to copy rotation information of compositons in 3den editor?
sarogahtyp replied to Tory Xiao's topic in ARMA 3 - MISSION EDITING & SCRIPTING
i could swear it was the whole array when i tested it. Will take a look at it tomorrow