Profile image

Funky Trees Bandit Callout

1,764 CallsignGizmo  7 months ago

Idea:

A label that will display the location of the bandit 12 being forward and 6 being back.

Execution:

NOWHERE NEAR THAT!
Please help!

  • Log in to leave a comment
  • Profile image

    I misread and thought you wanted to find bandit airport 💀
    4 and maybe 3 still apply

    7 months ago
  • Profile image

    @hpgbproductions
    I was thinking along the lines of (TargetHeading - Heading) / 180

    +1 7 months ago
  • Profile image
    1. Represent the target location as longitude (x) and latitude (z), and hence find the displacement from the player to the target in each axis.
    2. Find the absolute/magnetic bearing from the player to the target. Try atan2().
    3. Find the relative bearing from the player (nose) to the target. Try deltaangle().
    4. Design a code to convert this to 1,2,3..12. You might want to use repeat() and round().
    7 months ago