Jump to content

Marcos Paes

Members
  • Posts

    61
  • Joined

  • Last visited

About Marcos Paes

  • Birthday 03/15/1983

Personal Information

  • Flight Simulators
    iRacing
    Flight Simulator 2020
    DCS
  • Location
    Brasil
  • Interests
    Snowboard

Recent Profile Visitors

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

  1. Hello everyone, We’re excited to announce the launch of https://dcshub.org, a community-driven platform created to offer an improved interface for finding everything DCS-related, including scripts, missions, and more. While we know the official DCS site has its own content system, we aim to provide better search functionality and a more interactive experience. DCSHub is made by the community, for the community. Right now, we’re actively looking for contributors to upload content, so if you have missions, scripts, or other resources, feel free to share them on the site. We’re also on the lookout for developers who can help improve the site and anyone interested in contributing content, especially in the scripts category, which can be challenging to organize and access across the web. Please note that DCSHub does not host files directly; instead, we provide links to the official source of each mod, mission, or script. We hope this project will grow with the support of the community. Currently, the site is at the limit of my programming knowledge, and while it runs on WordPress, we’re open to assistance from anyone who can help make it a more robust system as we grow. We welcome all feedback and suggestions! If you'd like to help in any way, feel free to reach out to us on Discord: https://discord.gg/zCQEdkKPVz You’ll find me there as "Pipo." Thank you, and we hope to see you on DCSHub!
      • 2
      • Like
      • Thanks
  2. Hello everyone, We’re excited to announce the launch of https://dcshub.org, a community-driven platform created to offer an improved interface for finding everything DCS-related, including scripts, missions, and more. While we know the official DCS site has its own content system, we aim to provide better search functionality and a more interactive experience. DCSHub is made by the community, for the community. Right now, we’re actively looking for contributors to upload content, so if you have missions, scripts, or other resources, feel free to share them on the site. We’re also on the lookout for developers who can help improve the site and anyone interested in contributing content, especially in the scripts category, which can be challenging to organize and access across the web. Please note that DCSHub does not host files directly; instead, we provide links to the official source of each mod, mission, or script. We hope this project will grow with the support of the community. Currently, the site is at the limit of my programming knowledge, and while it runs on WordPress, we’re open to assistance from anyone who can help make it a more robust system as we grow. We welcome all feedback and suggestions! If you'd like to help in any way, feel free to reach out to us on Discord: https://discord.gg/zCQEdkKPVz You’ll find me there as "Pipo." Thank you, and we hope to see you on DCSHub!
      • 1
      • Like
  3. Hello, where i can find the stats the script saves on my PC ? Thank You!
  4. Hello, ED, is it that hard to put some menu to we choose where this screens appear? This is exactly what happens to me!
  5. yeah, its hard to do like they did in F4? so easy!
  6. It's probably the same issue we're having with the Huey. The menus are appearing 'off' the screen. How do I reposition where these windows appear?
  7. Is there anyway to run this on a dedicated server? so i can stream the map on OBS?
  8. Thank you i got this trigger.action.outText( 'Total Aircrafts: ' .. trigger.misc.getUserFlag ( '10' ), 5 ) local bluePlayers = coalition.getPlayers(2) trigger.action.setUserFlag("10", #bluePlayers)
  9. UPDATE: This is working: local bluePlayers = coalition.getPlayers(2) for i = 1, #bluePlayers do local playerName = Unit.getName(bluePlayers[i]) env.info("Aumentando FLAG 10 para jogador: " .. playerName) local currentFlagValue = trigger.misc.getUserFlag("10") trigger.action.setUserFlag("10", currentFlagValue + 1) end But everytime the script run, it count again everyone. i want this to ignore already counted active players!
  10. I'm really new. i will try to use ur tips. thank you. Do i need Mist to use this commands? I am trying this. but nor working at all local function setFlagForConnectedPlayers() local bluePlayers = coalition.getPlayers(coalition.side.BLUE) for i = 1, #bluePlayers do local playerUnit = bluePlayers[i]:getUnit() if playerUnit and playerUnit:isActive() then local currentFlagValue = trigger.misc.getUserFlag("10") trigger.action.setUserFlag("10", currentFlagValue + 1) env.info("Pilotos Ativos: " .. trigger.misc.getUserFlag("10")) end end end setFlagForConnectedPlayers()
  11. Thank you for your response, I'm quite new to scripts, I'll try to figure out how to do what you said
  12. Hello, everyone, and sorry for the question that might seem very silly, but I'm looking to do this in a simple way: how can I count how many people are flying, and have this number of people added to a FLAG? This way, I could more accurately determine the number of enemy aircraft that will take off. We usually fly in groups of 5 to 15 people, and if I plan the mission for 15 people and only 5 show up, it becomes impossible. On the other hand, if I plan for 5 and 15 show up, it becomes too easy. So, I just wanted a script that could count how many aircraft are flying, allowing me to adjust the groups according to this number from the flag! Thank you in advance
  13. Thank you for sharing bro! I tried to use: WT.playerNear.setup("CONTADOR", 2,"flag10", 2000) But did not work at all. I am trying to make a script to count how many aircrafts are airbourne and set a flag to this number, so i can determine how many enemey aircrafts i will spawn. can u help me with this?
×
×
  • Create New...