Jump to content

sarogahtyp

Member
  • Content Count

    2494
  • Joined

  • Last visited

  • Medals

Posts posted by sarogahtyp


  1. 3 hours ago, stburr91 said:

    I haven't tested this, but the first 6 minutes of this video explains how to set up Everon in the editor so you can edit the terrain. 

     

     

     

    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...

    • Like 1

  2. 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....


  3. @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.


  4. you did receive an answer already. I Think there is no more one can tell you about:

    Quote

    Khaosmatic added a subscriber: Khaosmatic.Sun, May 22, 8:49 PM

    There is no confirmation on whether or not they aren't going to be adding the editor so not sure why you are requesting it. It's a very complex part of the game that more than likely isn't ready yet, hence it being missing at the moment.

    The editor in the mod tools is a stand in I'm sure and not the actual intended editor such as A3s. Just wait, they know how important the editor is.

     

     

    8 minutes ago, Tyl3r99 said:

    I don't want to go through the daunting task of following a 132 page guide on how to start building a mission in the world editor. 

    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!

    • Like 1
    • Thanks 1

  5. 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.

    • Like 3

  6. 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.


  7. On 6/3/2022 at 4:41 AM, ForestFighters said:

    Images

    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:

    uUwkvXn.png

     

    @ForestFighters work:

    6jaSwO7.jpeg

     

    @ForestFighters work:

    IxAxCdZ.png

    • Like 2

  8. 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);

     


  9. 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:

     

    CDyPQxq.jpeg

     

    - 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?).


  10. I try to get the state of a vehicles engine.

    What I tried so far is using the EOnPhysicsActive event of the vehicle:

     

    class SaRo_BMHQ_Hillbilly01_Class: Vehicle 
    {
    	override void EOnPhysicsActive(IEntity owner, bool activeState)
    	{
    		if (activeState) Print ( "Active.");
    		else Print ( "Not active.");
    	}
    
    };

    This detects if the physics of the vehicle get simulated and therefore it fires on movement even if initiated by another entity like another car. It also fires on initialization.

     

    Question is: Is there a method to get the engines state and which method is it?


  11. 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.


  12. 10 hours ago, KAustinn said:

    circular loading bar pops up and looks really smooth

    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.

×