Jump to content
Website Updates and Upgrades are still underway! We don't expect any further downtime, but we thank you for your patience as we restore themes and other elements including the Chatbox.

=VG= ciro

VG Clan Member (Administrator)
  • Posts

    87
  • Joined

  • Last visited

Posts posted by =VG= ciro

  1. Note for admins:

    Restarting the server from TCAdmin will reset the mission, user saves and reset objectives.

    When an admin is logged in and runs:

    #restart  The whole mission will reset including taken objectives and ranks (maybe loadouts too).

    #reassign Will restart the mission from current objective, keeps loadouts and taken objectives and gained ranks.

    #restartServer Will restart the server the same as restart from TCAdmin.

    • Thanks 2
    • Upvote 1
  2. 2 hours ago, =VG= SemlerPDX said:

    I've been flanked, smoked out, naded, and stalked.  It all depends on the mission design and the care taken by its designer on how they operate, but even 'vanilla' Arma 3 bots are not pushovers.

    This is good APEX for near free!

    Tanoa Insurgency now in testing:

    VETERANS-GAMING | Insurgency S.O.A.R. | TS3.VETERANS-GAMING.COM
    IP:            5.9.23.136         Port:        2502
    Players:      0/32

    more info here: https://veterans-gaming.com/forums/topic/9801-insurgency-soar-arma-3/

    Ask an admin if its not running!

    • VG Spirit 1
  3. 3 hours ago, Zadra said:

    Can you set the "Service Vehicle 2" script to Service depot?

    Well no... you cannot apply actions and remove them correctly from simpleobjects:

    https://community.bistudio.com/wiki/addAction

    So i added it that way, simple fix is to remove the turret and gunner seat for now.

    I sort of thought that if you were moving the MHQ that it would be a valuable asset! keep it back and utilise the rearm repair for other vehicles  it should now be removed I could not replicate this and get it to show "service" while moving, was the MHQ undeployed when you joined?  or do you know if the MHQ was destroyed and respawned, not got time this week to check. so Friday soonest.

    IED's are from request but to settle nerves you can see them, some are duds! (will set param so Admin can see them!)

    Also added a drag and revive mechinism will update server with that file asap...

     

    • Upvote 1
  4. Changes log...

    No UAV except for UAV opperator (prevent UAV cheat of scanning AO for cache).

    Small fix to MHQ deployment, should deploy on elevated/sloped terrrain.

    Vehicle rearm only at MHQ, engineer no loger able to re-arm in field.

    To fix:

    S.O.A.R exfil's  towards AO...

    Random Vehicle patrols empty after an hour or so ...

    Fix sound not found for parra drop...

    Fix notifications for MHQ deployment time...

    If anyone would like to contribute the files are un-binarised.

     

    • Upvote 5
  5. (RAEL) Insurgency Arma 3

    Codename:  RAEL Insurgency
    Filename: VG_ins_SOAR3

    VETERANS-GAMING | Insurgency S.O.A.R. | TS3.VETERANS-GAMING.COM
    IP:5.9.23.136:2502
    Players:0/32

    About:

    Insurgency S.O.A.R. Arma 3 is a remake of the pioneering ARMA 2 Insurgency mission that itself was a - Co-op based multi staged operation where allied forces are sent into theatre to seek out and discover Intel pertaining to enemy weapon caches with the objective of destroying said caches.
    With the assistance of a designated pilot and the ability for Squad leaders and team leaders to call air transport this dynamic - environment determined mission has been known to consume hours of RL! Please take care whilst playing this mission many devoices have occurred due to ARMA wife. Real ARMA Insurgency is back! Enjoy...

    Features:

        COOP 32 Player slots, with selectable mission parameters
        IED's placed by enemy, Random EI patrols
        Moveable MHQ
        Self determined load out
        Para-Drop to AO or OA
        S.O.A.R. Transport for TL and SL
        S.O.A.R. CAS for Designated Pilot
        Vehicle Rearm at MHQ
        In theatre vehicle repair
        Self determined view/graphics distance settings
        Join in Progress
        Support for RHS and CUP mods and Islands
        Support ACE & ACRE & TFAR

    Mission Requirements:

    None - Vanilla....
    (RHS& CUP pre-allowed in script)
    RHS mod set: http://www.rhsmods.org/
    CUP mod set: https://www.cup-arma3.org/

    20210304013141_1.jpg20210304013231_1.jpg

    • VG Spirit 3
    • VG Seal of Approval 2
    • Upvote 3
  6. Hey Sem is there a chance we could add this code snippet to the main site template?

    Its basicly the code to add a floating back to top button to any html/CMS based web page (This code snippet is acknowledged as a -Public Domain- free to use code... example and explaination) :

    <!-- InLine Script that adds style eliments (this is a black (background-color: #000000) square with white (color: #FFFFFF:) text).... Change this valve:   border-radius: 50% to make a circle button, change  font-size: 14px;  to increase the text in the floating button, change width: 50px; height: 50px;  for button size. // -->

     

    <style>
      .back-to-top {
       
    background-color: #000000;
        color: #FFFFFF;
        opacity: 0;
        transition: opacity .6s ease-in-out;
        z-index: 999;
        position: fixed;
        right: 20px;
        bottom: 20px;
       
    width: 50px;
        height: 50px;

        box-sizing: border-box;
       
    border-radius: 0%;

      }

      a.back-to-top {
        font-weight: 1000;
        letter-spacing: 2px;
       
    font-size: 14px;
        text-transform: uppercase;
        text-align: center;
        line-height: 1.6;
        padding-left: 2px;
        padding-top: 14px;
      }

      .back-to-top:hover, .back-to-top:focus, .back-to-top:visited {
        color: #FFFFFF;
      }

      .back-to-top.show {
        opacity: 1;
      }
    </style>

    <!-- Adds the back to top link to your website -->
    <a href="#" id="back-to-top" class="back-to-top" style="display: inline;">Top</a>

    <!-- Fades in the button when you scroll down -->
    <script>
      var link = document.getElementById("back-to-top");
      var amountScrolled = 250;

      window.addEventListener('scroll', function(e) {
          if ( window.pageYOffset > amountScrolled ) {
              link.classList.add('show');
          } else {
              link.className = 'back-to-top';
          }
      });

    <!-- Scrolls to Top -->
      link.addEventListener('click', function(e) {
          e.preventDefault();

          var distance = 0 - window.pageYOffset;
          var increments = distance/(500/16);
          function animateScroll() {
              window.scrollBy(0, increments);
              if (window.pageYOffset <= document.body.offsetTop) {
                  clearInterval(runAnimation);
              }
          };
          // Loop the animation function
          var runAnimation = setInterval(animateScroll, 16);
      });
    </script>

     

     

    • VG Seal of Approval 1
    • Thanks 1
×
×
  • Create New...

Important Information

Terms of Use and Privacy Policy