Profile image

Not suspicious at all, just trying to make an AI thing

5,728 MsMuseumJanitor  29 days ago

How can I make a hinge move when something is getting targeted?

  • Log in to leave a comment
  • Profile image
    7,334 overlord5453

    @MsMuseumJanitor learned them along the way by dismantling others builds, researching and experimenting.

    +1 29 days ago
  • Profile image

    @overlord5453 thanks, also how did you know all this stuff?

    +1 29 days ago
  • Profile image
    7,334 overlord5453

    @MsMuseumJanitor unfortunately, there is no output for targeting mode (atleast as far as I know). You can use SelectedWeapon = "Weapon name" when a specific weapon is selected.

    +1 29 days ago
  • Profile image

    @overlord5453 hmm, how about when turning on Air-to-air or Air-to-ground?

    29 days ago
  • Profile image
    7,334 overlord5453

    @MsMuseumJanitor
    TargetLocking | TargetLocked or
    TargetLocking | TargetLocked ? 1 : 0

    29 days ago
  • Profile image

    @overlord5453 also how can I make it when locking to a target make it activate and continue to activate it even when it's locked? And only deactivate when not locked nor locking?

    29 days ago
  • Profile image

    @overlord5453 thanks

    +1 29 days ago
  • Profile image
    7,334 overlord5453
    When selecting a target

    TargetSelected Or TargetSelected ? 1 : 0


    When locking a target

    TargetLocking Or TargetLocking ? 1 : 0


    When target is locked

    TargetLocked or TargetLocked ? 1 : 0

    +1 29 days ago