1. Welcome to the official Starbound Mod repository, Guest! Not sure how to install your mods? Check out the installation guide or check out the modding help thread for more guides.
    Outdated Mods have been moved to their own category! If you update your mod please let a moderator know so we can move it back to the active section.
    Dismiss Notice

Shuttle Script 1.1.2

MODDERS RESOURCE: For modders who want to have a flying vehicle

  1. Lefl
    This is a modified hoverbike.lua which is a modders resource, which allows modders to easily have a flying VTOL vehicle just like my UT-47 Shuttle Mod

    The script has support for Guns. Headlights are disabled-

    To enable the Shooting, uncomment the code blocks in controls() and animate()
    and add your animation parts to the vehicle (take a look at the humanmech as an example)

    Inside of the vehicle config (vehiclename.vehicle) you will need to set
    Code:
      "occupiedMovementSettings" : {
        "collisionPoly" : [[-6.7, 0.7], [-6.7, -2.7], [6.7, -2.7], [6.7, 0.7]],
        "mass" : 4,
        "gravityEnabled" : true,
        "collisionEnabled" : true
      }
    to

    Code:
      "occupiedMovementSettings" : {
        "collisionPoly" : [[-6.7, 0.7], [-6.7, -2.7], [6.7, -2.7], [6.7, 0.7]],
        "mass" : 4,
        "gravityEnabled" : false,
        "collisionEnabled" : true
      }
    also you will need to put this in somewhere in the same file:
    Code:
      "AimLimit" : 40,
      "shuttleFireCycle" : 1.5,
      "shuttleProjectile" : "standardbullet",
      "shuttleProjectileConfig" : {
        "power" : 50
      },
    (if you put it at the end you will need to remove the last comma)

    and
    Code:
      "targetVerticalVelocity" : 80,
    under
      "targetHorizontalVelocity" : 80,
    
    I hope to make a video on how to do it this week, but i cant promise anything

    If you use this in your mod, please mention me and if you have any questions feel free to ask in the discussion
    Mod Pack Permissions:
    Anyone can use this mod in their mod compilation without the author's consent.
    Mod Assets Permissions:
    Anyone can alter/redistribute the mod's assets without the author's consent.
    Pohany and overtube like this.

Recent Updates

  1. 1.1.2
  2. I keep messing up
  3. Reupload

Recent Reviews

  1. The_Daily_Herp
    The_Daily_Herp
    5/5,
    Version: 1.1.2
    Great! It's really helping me with a project I'm working on, but it's kind of confusing as I just want to add a gun to the hoverbike. If you could help that would greatly be appreciated. My steam name is The_Daily_Herp
  2. Atromixx
    Atromixx
    5/5,
    Version: 1.1.1.1
    Nothing bad I can say about this at all, Works great!
  3. Homyk
    Homyk
    5/5,
    Version: 1.0
    Super,but I in Lua don't understand.
  4. Pixelguru26
    Pixelguru26
    5/5,
    Version: 1.0
    This is awesome! I've always wanted to make a vehicle, but all the built-in systems are insanely clunky and I'm not quite good enough with Lua to build my own. Thanks a ton for this opportunity!

    . . .

    I cannot resist...
    First!
    1. Lefl
      Author's Response
      Thanks, if you have any questions, feel free to ask in the file discussions