Jump to content

Buchi

Community Members
  • Posts

    9
  • Joined

  • Last visited

Posts posted by Buchi

  1. 40 minutes ago, Vrayer said:

    If you'r that noob play against IA first then follow our advices

    Thank you Vrayer.

    But that is not an answer to my question :)

    It should be possible to implement if it is not yet done.

     

    Remember we should be open to feedback and always look for improvement :)

    • Like 1
  2. In 0ad in the lobby, I can see my current rank and the rank of the 100 best players.

    But how do I see how many players are ranked?

    I would like to know for instance that I am ranked 2000 out of XY. This XY number is missing to me.

     

    Any suggestions?

    Thanks.

  3. Is there a shortcut for that? Chatgpt said no.

    Can anyone help me create a mod for that? Chatgpt gave me this code:

    Can you give me some help how to test it or how to continue?

     

    function selectWoundedUnits() {
        var selectedUnits = Engine.GetGUIObjectByName("unitselection").selected;
        var woundedUnits = [];
    
        for (var i = 0; i < selectedUnits.length; i++) {
            var unit = selectedUnits[i];
            var health = unit.GetHealth() / unit.GetMaxHealth();
            
            if (health < 0.6) {
                woundedUnits.push(unit);
            }
        }
    
        Engine.GetGUIObjectByName("unitselection").selected = woundedUnits;
    }
    
    Engine.RegisterGuiCallback("onSelectionChanged", selectWoundedUnits);

     

  4. I installed the latest version of 0ad under Linux (Arch Linux). So far everything worked well, but I reinstalled it from scratch and I cannot install mods anymore.

    I get the error message

    ERROR: Failed to install '/home/xxx/.local/share/0ad/mods/autociv/autociv.zip.temp'

    and if I check the folder, it is empty. Before the reinstallation I could install mods. What can I do?

    Thank you.

     

×
×
  • Create New...