Results 1 to 3 of 3

Thread: Trigger / Waypoint / Landing Issue.

  1. #1

    Trigger / Waypoint / Landing Issue.

    I currently have this set up as a trigger for making a waypoint..

    Code:
    _waypoint1 = helo3 addWaypoint [getMarkerPos "wp2", 0]; [helo3, 2] setWaypointType "MOVE"; helo3 setCurrentWaypoint [helo1, 2]; [helo3, 2] setWaypointStatements ["true", "bird2 land LAND"]
    However, I run into an issue, the helicopter does not land. and I know its because it shoud looke like this on the last part.

    Code:
    [helo3, 2] setWaypointStatements ["true", "bird2 land "LAND""]
    [/CODE]

    However, when I put the quotes over LAND like this

    Code:
    bird2 land "LAN"
    I get an error saying I need to add a [ and ] into the equation some where. Anyone able to help me figure this out? The land command is suppose to be in the activation area of the waypoint.

  2. #2
    Code:
    [helo3, 2] setWaypointStatements ["true", "bird2 land ""LAND"""]
    maybe ?
    "The simplest is always the best"
    -Thomas Jefferson

  3. #3
    Quote Originally Posted by Wiper View Post
    Code:
    [helo3, 2] setWaypointStatements ["true", "bird2 land ""LAND"""]
    maybe ?
    Worked perfectly, thanks.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •