Jump to content
🛡️FORUMS ARE IN READ-ONLY MODE Read more... ×

longrange

Member
  • Content Count

    3
  • Joined

  • Last visited

  • Medals

  • Medals

Community Reputation

10 Good

About longrange

  • Rank
    Rookie

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. longrange

    ARMA 3 Addon Request Thread

    I was looking for a mod that improves the autonomous UAV/drone controls for autonomous operation. For example, you could set custom altitudes, loiter distances, and speeds. Drones currently are not used very widely in the community, and I feel like all we need is a better control interface, and people would be more ready to adopt them. As far as I could tell, the mod does not currently exist, but it doesn't seem like it's impossible to make.
  2. longrange

    Random Integers

    Thank you this should really help!
  3. Hello, I am really new to scripting in Arma with SQF but I do have experience with other programming languages. My question is how do I go about generating a random integer. I am trying to create a super simple script that is run on initialization of some enemy soldiers, and basically i want it to randomly apply this effect to some of them, and apply a different effect to the rest of them. this is the code that I have right now and it will always go to the else scope, it never says "init mov" so I'm guessing that I am not implementing random correctly. thanks. num = (random 2); if(num == 1)then { p1 sidechat "init mov"; } else { p1 sidechat "init non"; };
×